From 4979a301a09e82b7cbd776f799a67cc34bba507c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 11 Feb 2022 12:06:08 +0100 Subject: [PATCH 01/33] migrated clientArguments, removed circular deps --- .../communication-common/package.json | 5 +- .../src/azureCommunicationTokenCredential.ts | 61 +++++++++++++++++++ .../src/communicationTokenCredential.ts | 58 +----------------- .../src/credential/clientArguments.ts | 14 ++--- .../src/credential/cryptoUtils.browser.ts | 20 ++---- .../src/credential/url.browser.ts | 9 +++ .../src/credential/url.ts | 4 ++ .../communication-common/src/index.ts | 2 +- .../communication-common/src/shims.d.ts | 34 ----------- .../test/communicationTokenCredential.spec.ts | 2 +- 10 files changed, 92 insertions(+), 117 deletions(-) create mode 100644 sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts create mode 100644 sdk/communication/communication-common/src/credential/url.browser.ts create mode 100644 sdk/communication/communication-common/src/credential/url.ts delete mode 100644 sdk/communication/communication-common/src/shims.d.ts diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 0d601a1428c2..3006acb531b5 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -7,7 +7,8 @@ "module": "dist-esm/src/index.js", "types": "types/communication-common.d.ts", "browser": { - "./dist-esm/src/credential/cryptoUtils.js": "./dist-esm/src/credential/cryptoUtils.browser.js" + "./dist-esm/src/credential/cryptoUtils.js": "./dist-esm/src/credential/cryptoUtils.browser.js", + "./dist-esm/src/credential/url.js": "./dist-esm/src/credential/url.browser.js" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -103,4 +104,4 @@ "typescript": "~4.2.0", "util": "^0.12.1" } -} +} \ No newline at end of file diff --git a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts new file mode 100644 index 000000000000..e8bd5e3400ca --- /dev/null +++ b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts @@ -0,0 +1,61 @@ +import { AccessToken } from "@azure/core-http"; +import { parseToken } from "./tokenParser"; +import { StaticTokenCredential } from "./staticTokenCredential"; +import { + AutoRefreshTokenCredential, + CommunicationTokenRefreshOptions +} from "./autoRefreshTokenCredential"; +import { CommunicationTokenCredential, TokenCredential, CommunicationGetTokenOptions } from "./communicationTokenCredential"; + +/** + * The CommunicationTokenCredential implementation with support for proactive token refresh. + */ + +export class AzureCommunicationTokenCredential implements CommunicationTokenCredential { + private readonly tokenCredential: TokenCredential; + private disposed = false; + + /** + * Creates an instance of CommunicationTokenCredential with a static token and no proactive refreshing. + * @param token - A user access token issued by Communication Services. + */ + constructor(token: string); + /** + * Creates an instance of CommunicationTokenCredential with a lambda to get a token and options + * to configure proactive refreshing. + * @param refreshOptions - Options to configure refresh and opt-in to proactive refreshing. + */ + constructor(refreshOptions: CommunicationTokenRefreshOptions); + constructor(tokenOrRefreshOptions: string | CommunicationTokenRefreshOptions) { + if (typeof tokenOrRefreshOptions === "string") { + this.tokenCredential = new StaticTokenCredential(parseToken(tokenOrRefreshOptions)); + } else { + this.tokenCredential = new AutoRefreshTokenCredential(tokenOrRefreshOptions); + } + } + + /** + * Gets an `AccessToken` for the user. Throws if already disposed. + * @param abortSignal - An implementation of `AbortSignalLike` to cancel the operation. + */ + public async getToken(options?: CommunicationGetTokenOptions): Promise { + this.throwIfDisposed(); + const token = await this.tokenCredential.getToken(options); + this.throwIfDisposed(); + return token; + } + + /** + * Disposes the CommunicationTokenCredential and cancels any internal auto-refresh operation. + */ + public dispose(): void { + this.disposed = true; + this.tokenCredential.dispose(); + } + + private throwIfDisposed(): void { + if (this.disposed) { + throw new Error("User credential is disposed"); + } + } +} diff --git a/sdk/communication/communication-common/src/communicationTokenCredential.ts b/sdk/communication/communication-common/src/communicationTokenCredential.ts index fb17b403e103..34669a6183c6 100644 --- a/sdk/communication/communication-common/src/communicationTokenCredential.ts +++ b/sdk/communication/communication-common/src/communicationTokenCredential.ts @@ -2,14 +2,8 @@ // Licensed under the MIT license. import { AbortSignalLike, AccessToken } from "@azure/core-http"; -import { parseToken } from "./tokenParser"; -import { StaticTokenCredential } from "./staticTokenCredential"; -import { - AutoRefreshTokenCredential, - CommunicationTokenRefreshOptions, -} from "./autoRefreshTokenCredential"; -export type TokenCredential = Pick; +export type TokenCredential = Pick; /** * Options for `CommunicationTokenCredential`'s `getToken` function. @@ -36,54 +30,4 @@ export interface CommunicationTokenCredential { dispose(): void; } -/** - * The CommunicationTokenCredential implementation with support for proactive token refresh. - */ -export class AzureCommunicationTokenCredential implements CommunicationTokenCredential { - private readonly tokenCredential: TokenCredential; - private disposed = false; - - /** - * Creates an instance of CommunicationTokenCredential with a static token and no proactive refreshing. - * @param token - A user access token issued by Communication Services. - */ - constructor(token: string); - /** - * Creates an instance of CommunicationTokenCredential with a lambda to get a token and options - * to configure proactive refreshing. - * @param refreshOptions - Options to configure refresh and opt-in to proactive refreshing. - */ - constructor(refreshOptions: CommunicationTokenRefreshOptions); - constructor(tokenOrRefreshOptions: string | CommunicationTokenRefreshOptions) { - if (typeof tokenOrRefreshOptions === "string") { - this.tokenCredential = new StaticTokenCredential(parseToken(tokenOrRefreshOptions)); - } else { - this.tokenCredential = new AutoRefreshTokenCredential(tokenOrRefreshOptions); - } - } - - /** - * Gets an `AccessToken` for the user. Throws if already disposed. - * @param abortSignal - An implementation of `AbortSignalLike` to cancel the operation. - */ - public async getToken(options?: CommunicationGetTokenOptions): Promise { - this.throwIfDisposed(); - const token = await this.tokenCredential.getToken(options); - this.throwIfDisposed(); - return token; - } - - /** - * Disposes the CommunicationTokenCredential and cancels any internal auto-refresh operation. - */ - public dispose(): void { - this.disposed = true; - this.tokenCredential.dispose(); - } - private throwIfDisposed(): void { - if (this.disposed) { - throw new Error("User credential is disposed"); - } - } -} diff --git a/sdk/communication/communication-common/src/credential/clientArguments.ts b/sdk/communication/communication-common/src/credential/clientArguments.ts index b140521cd4d9..e0fb5681fca2 100644 --- a/sdk/communication/communication-common/src/credential/clientArguments.ts +++ b/sdk/communication/communication-common/src/credential/clientArguments.ts @@ -2,17 +2,17 @@ // Licensed under the MIT license. import { isTokenCredential, KeyCredential, TokenCredential } from "@azure/core-auth"; -import { URLBuilder } from "@azure/core-http"; import { parseConnectionString } from "./connectionString"; +import { URL } from "./url"; const isValidEndpoint = (host: string): boolean => { - const url = URLBuilder.parse(host); - + const url = new URL(host); + return ( - !!url.getScheme()?.match(/^http[s]?/) && - url.getHost() !== undefined && - url.getHost() !== "" && - (url.getPath() === undefined || url.getPath() === "" || url.getPath() === "/") + !!url.protocol?.match(/^http[s]?/) && + url.host !== undefined && + url.host !== "" && + (url.pathname === undefined || url.pathname === "" || url.pathname === "/") ); }; diff --git a/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts b/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts index c0a2f5b74986..6d238428b9fd 100644 --- a/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts +++ b/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts @@ -1,25 +1,15 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { encodeUTF8, encodeBase64, encodeUTF8fromBase64 } from "./encodeUtils.browser"; - -const globalRef: any = globalThis; - -const getCrypto = (): SubtleCrypto => { - if (!globalRef) { - throw new Error("Could not find global"); - } +/// - if (!globalRef.crypto || !globalRef.crypto.subtle) { - throw new Error("Browser does not support cryptography functions"); - } +import { encodeUTF8, encodeBase64, encodeUTF8fromBase64 } from "./encodeUtils.browser"; - return globalRef.crypto.subtle; -}; +const subtle = (globalThis as any)?.crypto?.subtle as SubtleCrypto; export const shaHash = async (content: string): Promise => { const data = encodeUTF8(content); - const hash = await getCrypto().digest("SHA-256", data); + const hash = await subtle.digest("SHA-256", data); return encodeBase64(hash); }; @@ -27,7 +17,7 @@ export const shaHMAC = async (secret: string, content: string): Promise const importParams: HmacImportParams = { name: "HMAC", hash: { name: "SHA-256" } }; const encodedMessage = encodeUTF8(content); const encodedKey = encodeUTF8fromBase64(secret); - const crypto = getCrypto(); + const crypto = subtle; const cryptoKey = await crypto.importKey("raw", encodedKey, importParams, false, ["sign"]); const signature = await crypto.sign(importParams, cryptoKey, encodedMessage); return encodeBase64(signature); diff --git a/sdk/communication/communication-common/src/credential/url.browser.ts b/sdk/communication/communication-common/src/credential/url.browser.ts new file mode 100644 index 000000000000..a6b3956caf41 --- /dev/null +++ b/sdk/communication/communication-common/src/credential/url.browser.ts @@ -0,0 +1,9 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +/// + +const url = URL; +const urlSearchParams = URLSearchParams; + +export { url as URL, urlSearchParams as URLSearchParams }; diff --git a/sdk/communication/communication-common/src/credential/url.ts b/sdk/communication/communication-common/src/credential/url.ts new file mode 100644 index 000000000000..993e69798f9e --- /dev/null +++ b/sdk/communication/communication-common/src/credential/url.ts @@ -0,0 +1,4 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +export { URL, URLSearchParams } from "url"; diff --git a/sdk/communication/communication-common/src/index.ts b/sdk/communication/communication-common/src/index.ts index 645fa65f0c92..376f548476af 100644 --- a/sdk/communication/communication-common/src/index.ts +++ b/sdk/communication/communication-common/src/index.ts @@ -2,10 +2,10 @@ // Licensed under the MIT license. export { - AzureCommunicationTokenCredential, CommunicationTokenCredential, CommunicationGetTokenOptions, } from "./communicationTokenCredential"; +export { AzureCommunicationTokenCredential } from "./azureCommunicationTokenCredential"; export * from "./credential"; export { CommunicationTokenRefreshOptions } from "./autoRefreshTokenCredential"; export * from "./credential"; diff --git a/sdk/communication/communication-common/src/shims.d.ts b/sdk/communication/communication-common/src/shims.d.ts deleted file mode 100644 index be96c9b19b40..000000000000 --- a/sdk/communication/communication-common/src/shims.d.ts +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -// d.ts shims provide types for things we use internally but are not part -// of this package's surface area. - -declare function atob(data: string): string; -declare function btoa(data: string): string; - -interface SubtleCrypto { - importKey: ( - format: string, - keyData: ArrayBuffer, - algo: HmacImportParams, - extractable: boolean, - usages: string[] - ) => Promise; - - sign: ( - algo: HmacImportParams, - key: CryptoKey, - encodedMessage: ArrayBuffer - ) => Promise; - - digest: (algo: string, data: ArrayBuffer) => Promise; -} - -interface HmacImportParams {} - -interface CryptoKey {} - -declare class TextEncoder { - encode(str: string): Uint8Array; -} diff --git a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts index a1a802b2f4a2..e8d15a2ea12c 100644 --- a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts +++ b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts @@ -6,7 +6,7 @@ import chaiAsPromised from "chai-as-promised"; import { assert, use } from "chai"; import { isNode } from "@azure/core-http"; import { AbortSignal } from "@azure/abort-controller"; -import { AzureCommunicationTokenCredential } from "../src/communicationTokenCredential"; +import { AzureCommunicationTokenCredential } from "../src/azureCommunicationTokenCredential"; use(chaiAsPromised); From 7a3193148f51a13fdc79aa0940e733575d0ad6b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 11 Feb 2022 13:34:37 +0100 Subject: [PATCH 02/33] remove the dependency on @azure/core-http --- .../communication-common/src/autoRefreshTokenCredential.ts | 3 ++- .../communication-common/src/communicationTokenCredential.ts | 5 ++--- .../communication-common/src/staticTokenCredential.ts | 2 +- sdk/communication/communication-common/src/tokenParser.ts | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts b/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts index c6896faf08a2..504b8c499ce6 100644 --- a/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts +++ b/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts @@ -1,7 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { AbortSignalLike, AccessToken } from "@azure/core-http"; +import { AccessToken } from "@azure/core-auth"; +import { AbortSignalLike } from "@azure/abort-controller"; import { parseToken } from "./tokenParser"; import { TokenCredential, CommunicationGetTokenOptions } from "./communicationTokenCredential"; diff --git a/sdk/communication/communication-common/src/communicationTokenCredential.ts b/sdk/communication/communication-common/src/communicationTokenCredential.ts index 34669a6183c6..c506962688dc 100644 --- a/sdk/communication/communication-common/src/communicationTokenCredential.ts +++ b/sdk/communication/communication-common/src/communicationTokenCredential.ts @@ -1,7 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { AbortSignalLike, AccessToken } from "@azure/core-http"; +import { AccessToken } from "@azure/core-auth"; +import { AbortSignalLike } from "@azure/abort-controller"; export type TokenCredential = Pick; @@ -29,5 +30,3 @@ export interface CommunicationTokenCredential { */ dispose(): void; } - - diff --git a/sdk/communication/communication-common/src/staticTokenCredential.ts b/sdk/communication/communication-common/src/staticTokenCredential.ts index 7d8b1ee2f9d2..159dd87de5d4 100644 --- a/sdk/communication/communication-common/src/staticTokenCredential.ts +++ b/sdk/communication/communication-common/src/staticTokenCredential.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { AccessToken } from "@azure/core-http"; +import { AccessToken } from "@azure/core-auth"; import { TokenCredential } from "./communicationTokenCredential"; /** diff --git a/sdk/communication/communication-common/src/tokenParser.ts b/sdk/communication/communication-common/src/tokenParser.ts index 3cb49094aad9..9d8591af8f04 100644 --- a/sdk/communication/communication-common/src/tokenParser.ts +++ b/sdk/communication/communication-common/src/tokenParser.ts @@ -2,7 +2,7 @@ // Licensed under the MIT license. import jwtDecode from "jwt-decode"; -import { AccessToken } from "@azure/core-http"; +import { AccessToken } from "@azure/core-auth"; interface JwtToken { exp: number; From 65cb82a316e386f712846a4f0643da880d4d9531 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 11 Feb 2022 13:43:44 +0100 Subject: [PATCH 03/33] removing dependencies on core-http --- sdk/communication/communication-common/package.json | 2 ++ .../src/azureCommunicationTokenCredential.ts | 2 +- .../test/communicationTokenCredential.spec.ts | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 3006acb531b5..9bc9ae733095 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -65,12 +65,14 @@ "@azure/abort-controller": "^1.0.0", "@azure/core-auth": "^1.3.0", "@azure/core-http": "^2.0.0", + "@azure/core-rest-pipeline": "^1.3.2", "@azure/core-tracing": "1.0.0-preview.13", "events": "^3.0.0", "jwt-decode": "^3.1.2", "tslib": "^2.2.0" }, "devDependencies": { + "@azure/core-util": "^1.0.0-beta.1", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/dev-tool": "^1.0.0", "@microsoft/api-extractor": "^7.18.11", diff --git a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts index e8bd5e3400ca..dd67eed990c7 100644 --- a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts +++ b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts @@ -1,4 +1,4 @@ -import { AccessToken } from "@azure/core-http"; +import { AccessToken } from "@azure/core-auth"; import { parseToken } from "./tokenParser"; import { StaticTokenCredential } from "./staticTokenCredential"; import { diff --git a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts index e8d15a2ea12c..58a923e55d7f 100644 --- a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts +++ b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts @@ -4,7 +4,7 @@ import sinon from "sinon"; import chaiAsPromised from "chai-as-promised"; import { assert, use } from "chai"; -import { isNode } from "@azure/core-http"; +import { isNode } from "@azure/core-util"; import { AbortSignal } from "@azure/abort-controller"; import { AzureCommunicationTokenCredential } from "../src/azureCommunicationTokenCredential"; From 3d37b4f10f7f42d0b71e36662036d4c6746e9de5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 11 Feb 2022 14:36:43 +0100 Subject: [PATCH 04/33] policy converted to core rest pipeline --- .../communication-common/package.json | 5 +- .../communicationAccessKeyCredentialPolicy.ts | 122 ++++++------------ .../src/credential/communicationAuthPolicy.ts | 14 +- .../src/credential/isNode.browser.ts | 7 + .../src/credential/isNode.ts | 8 ++ .../test/communicationTokenCredential.spec.ts | 2 +- 6 files changed, 72 insertions(+), 86 deletions(-) create mode 100644 sdk/communication/communication-common/src/credential/isNode.browser.ts create mode 100644 sdk/communication/communication-common/src/credential/isNode.ts diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 9bc9ae733095..8e7415c33e5a 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -8,7 +8,8 @@ "types": "types/communication-common.d.ts", "browser": { "./dist-esm/src/credential/cryptoUtils.js": "./dist-esm/src/credential/cryptoUtils.browser.js", - "./dist-esm/src/credential/url.js": "./dist-esm/src/credential/url.browser.js" + "./dist-esm/src/credential/url.js": "./dist-esm/src/credential/url.browser.js", + "./dist-esm/src/credential/isNode.js": "./dist-esm/src/credential/isNode.browser.js" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -64,7 +65,6 @@ "dependencies": { "@azure/abort-controller": "^1.0.0", "@azure/core-auth": "^1.3.0", - "@azure/core-http": "^2.0.0", "@azure/core-rest-pipeline": "^1.3.2", "@azure/core-tracing": "1.0.0-preview.13", "events": "^3.0.0", @@ -72,7 +72,6 @@ "tslib": "^2.2.0" }, "devDependencies": { - "@azure/core-util": "^1.0.0-beta.1", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/dev-tool": "^1.0.0", "@microsoft/api-extractor": "^7.18.11", diff --git a/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts index 73eebc0ab085..cc128f6b48c9 100644 --- a/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts +++ b/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts @@ -3,17 +3,20 @@ import { KeyCredential } from "@azure/core-auth"; import { - URLBuilder, - WebResource, - isNode, - RequestPolicy, - RequestPolicyOptionsLike, - RequestPolicyFactory, - WebResourceLike, - HttpOperationResponse, - BaseRequestPolicy, -} from "@azure/core-http"; + PipelinePolicy, + PipelineRequest, + SendRequest, + PipelineResponse, +} from "@azure/core-rest-pipeline"; import { shaHash, shaHMAC } from "./cryptoUtils"; +import { URL } from "./url"; +import { isNode } from "./isNode"; + +/** + * CommunicationAccessKeyCredentialPolicy provides a means of signing requests made through + * the SmsClient. + */ +const communicationAccessKeyCredentialPolicy = "CommunicationAccessKeyCredentialPolicy"; /** * Creates an HTTP pipeline policy to authenticate a request using a `KeyCredential`. @@ -21,77 +24,38 @@ import { shaHash, shaHMAC } from "./cryptoUtils"; * * @param credential - The key credential. */ -export const createCommunicationAccessKeyCredentialPolicy = ( +export function createCommunicationAccessKeyCredentialPolicy( credential: KeyCredential -): RequestPolicyFactory => { +): PipelinePolicy { return { - create: (nextpolicy: RequestPolicy, options: RequestPolicyOptionsLike) => { - return new CommunicationAccessKeyCredentialPolicy(credential, nextpolicy, options); + name: communicationAccessKeyCredentialPolicy, + async sendRequest(request: PipelineRequest, next: SendRequest): Promise { + const verb = request.method.toUpperCase(); + const utcNow = new Date().toUTCString(); + const contentHash = await shaHash(request.body?.toString() || ""); + const dateHeader = "x-ms-date"; + const signedHeaders = `${dateHeader};host;x-ms-content-sha256`; + + const url = new URL(request.url); + const query = url.searchParams; + const urlPathAndQuery = query ? `${url.pathname}?${query}` : url.pathname; + const port = url.port; + const hostAndPort = port ? `${url.host}:${port}` : url.host; + + const stringToSign = `${verb}\n${urlPathAndQuery}\n${utcNow};${hostAndPort};${contentHash}`; + const signature = await shaHMAC(credential.key, stringToSign); + + if (isNode) { + request.headers.set("Host", hostAndPort || ""); + } + + request.headers.set(dateHeader, utcNow); + request.headers.set("x-ms-content-sha256", contentHash); + request.headers.set( + "Authorization", + `HMAC-SHA256 SignedHeaders=${signedHeaders}&Signature=${signature}` + ); + return next(request); }, }; -}; - -/** - * CommunicationAccessKeyCredentialPolicy provides a means of signing requests made through - * the SmsClient. - */ -class CommunicationAccessKeyCredentialPolicy extends BaseRequestPolicy { - /** - * Initializes a new instance of the CommunicationAccessKeyCredential class - * using a base64 encoded key. - * @param accessKey - The base64 encoded key to be used for signing. - */ - constructor( - private readonly accessKey: KeyCredential, - nextPolicy: RequestPolicy, - options: RequestPolicyOptionsLike - ) { - super(nextPolicy, options); - } - - /** - * Signs a request with the provided access key. - * - * @param webResource - The WebResource to be signed. - */ - private async signRequest(webResource: WebResource): Promise { - const verb = webResource.method.toUpperCase(); - const utcNow = new Date().toUTCString(); - const contentHash = await shaHash(webResource.body || ""); - const dateHeader = "x-ms-date"; - const signedHeaders = `${dateHeader};host;x-ms-content-sha256`; - - const url = URLBuilder.parse(webResource.url); - const query = url.getQuery(); - const urlPathAndQuery = query ? `${url.getPath()}?${query}` : url.getPath(); - const port = url.getPort(); - const hostAndPort = port ? `${url.getHost()}:${port}` : url.getHost(); - - const stringToSign = `${verb}\n${urlPathAndQuery}\n${utcNow};${hostAndPort};${contentHash}`; - const signature = await shaHMAC(this.accessKey.key, stringToSign); - - if (isNode) { - webResource.headers.set("Host", hostAndPort || ""); - } - - webResource.headers.set(dateHeader, utcNow); - webResource.headers.set("x-ms-content-sha256", contentHash); - webResource.headers.set( - "Authorization", - `HMAC-SHA256 SignedHeaders=${signedHeaders}&Signature=${signature}` - ); - - return webResource; - } - - /** - * Signs the request and calls the next policy in the factory. - */ - public async sendRequest(webResource: WebResourceLike): Promise { - if (!webResource) { - throw new Error("webResource cannot be null or undefined"); - } - - return this._nextPolicy.sendRequest(await this.signRequest(webResource)); - } } diff --git a/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts b/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts index f3caec567916..0044cfec6854 100644 --- a/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts +++ b/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts @@ -2,7 +2,11 @@ // Licensed under the MIT license. import { isTokenCredential, KeyCredential, TokenCredential } from "@azure/core-auth"; -import { bearerTokenAuthenticationPolicy, RequestPolicyFactory } from "@azure/core-http"; +import { + bearerTokenAuthenticationPolicy, + BearerTokenAuthenticationPolicyOptions, + PipelinePolicy, +} from "@azure/core-rest-pipeline"; import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAccessKeyCredentialPolicy"; /** * Creates a pipeline policy to authenticate request based @@ -13,9 +17,13 @@ import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAcc */ export const createCommunicationAuthPolicy = ( credential: KeyCredential | TokenCredential -): RequestPolicyFactory => { +): PipelinePolicy => { if (isTokenCredential(credential)) { - return bearerTokenAuthenticationPolicy(credential, "https://communication.azure.com//.default"); + const policyOptions: BearerTokenAuthenticationPolicyOptions = { + credential: credential, + scopes: ["https://communication.azure.com//.default"], + }; + return bearerTokenAuthenticationPolicy(policyOptions); } else { return createCommunicationAccessKeyCredentialPolicy(credential); } diff --git a/sdk/communication/communication-common/src/credential/isNode.browser.ts b/sdk/communication/communication-common/src/credential/isNode.browser.ts new file mode 100644 index 000000000000..f3d25a1bfbde --- /dev/null +++ b/sdk/communication/communication-common/src/credential/isNode.browser.ts @@ -0,0 +1,7 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +/** + * A constant that indicates whether the environment the code is running is Node.JS. + */ + export const isNode = false; \ No newline at end of file diff --git a/sdk/communication/communication-common/src/credential/isNode.ts b/sdk/communication/communication-common/src/credential/isNode.ts new file mode 100644 index 000000000000..9ac5cebb2c20 --- /dev/null +++ b/sdk/communication/communication-common/src/credential/isNode.ts @@ -0,0 +1,8 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +/** + * A constant that indicates whether the environment the code is running is Node.JS. + */ + export const isNode = + typeof process !== "undefined" && Boolean(process.version) && Boolean(process.versions?.node); \ No newline at end of file diff --git a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts index 58a923e55d7f..f06055789f09 100644 --- a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts +++ b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts @@ -4,7 +4,7 @@ import sinon from "sinon"; import chaiAsPromised from "chai-as-promised"; import { assert, use } from "chai"; -import { isNode } from "@azure/core-util"; +import { isNode } from "../src/credential/isNode"; import { AbortSignal } from "@azure/abort-controller"; import { AzureCommunicationTokenCredential } from "../src/azureCommunicationTokenCredential"; From 14de0eb1d50d7e1b285d05cf2472faa23af32603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 11 Feb 2022 14:57:49 +0100 Subject: [PATCH 05/33] added a changelog entry --- sdk/communication/communication-common/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/communication/communication-common/CHANGELOG.md b/sdk/communication/communication-common/CHANGELOG.md index 379009cee429..f3aeb2c2c0c3 100644 --- a/sdk/communication/communication-common/CHANGELOG.md +++ b/sdk/communication/communication-common/CHANGELOG.md @@ -5,6 +5,7 @@ ### Features Added - Optimization added: When the proactive refreshing is enabled and the token refresher fails to provide a token that's not about to expire soon, the subsequent refresh attempts will be scheduled for when the token reaches half of its remaining lifetime until a token with long enough validity (>10 minutes) is obtained. +- Migrated from using `@azure/core-http` to `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the move. ### Breaking Changes From 3931bb6c5fcef95b5e533e5ed46138fac7cca7b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 11 Feb 2022 15:58:09 +0100 Subject: [PATCH 06/33] added test --- ...unicationAccessKeyCredentialPolicy.spec.ts | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts diff --git a/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts b/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts new file mode 100644 index 000000000000..0bab2ad7ef42 --- /dev/null +++ b/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { assert } from "chai"; +import { createCommunicationAccessKeyCredentialPolicy } from "../src/credential/communicationAccessKeyCredentialPolicy"; +import { + createPipelineRequest, + HttpClient, + createEmptyPipeline, + PipelineResponse, + createHttpHeaders, +} from "@azure/core-rest-pipeline"; +import { KeyCredential } from "@azure/core-auth"; +import { isNode } from "../src/credential/isNode"; + +describe("CommunicationAccessKeyCredentialPolicy", () => { + it("signs the request", async () => { + const credential = new MockKeyCredential("asdf"); //"YXNkZg=="); + const communicationAccessKeyCredentialPolicy = + createCommunicationAccessKeyCredentialPolicy(credential); + + const pipelineRequest = createPipelineRequest({ url: "https://example.com" }); + + const responses: PipelineResponse[] = [ + { + headers: createHttpHeaders(), + request: pipelineRequest, + status: 200, + }, + ]; + + const testHttpsClient: HttpClient = { + sendRequest: async (req) => { + if (responses.length) { + const response = responses.shift()!; + response.request = req; + return response; + } + throw new Error("No responses found"); + }, + }; + + const pipeline = createEmptyPipeline(); + pipeline.addPolicy(communicationAccessKeyCredentialPolicy); + const pipelineResponse = await pipeline.sendRequest(testHttpsClient, pipelineRequest); + + const authHeader = pipelineResponse.request.headers.get("Authorization"); + const dateHeader = pipelineResponse.request.headers.get("x-ms-date"); + const hashHeader = pipelineResponse.request.headers.get("x-ms-content-sha256"); + const hostHeader = pipelineResponse.request.headers.get("Host"); + + assert.isNotEmpty(authHeader); + assert.isNotEmpty(dateHeader); + assert.isNotEmpty(hashHeader); + if (isNode) { + assert.isNotEmpty(hostHeader); + } + }); +}); + +class MockKeyCredential implements KeyCredential { + key: string; + constructor(key: string) { + this.key = key; + } +} From c460344913223293f481ef4bc0fce6518b7724b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 11 Feb 2022 16:15:34 +0100 Subject: [PATCH 07/33] remove comments --- .../test/communicationAccessKeyCredentialPolicy.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts b/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts index 0bab2ad7ef42..1e2a6471163c 100644 --- a/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts +++ b/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts @@ -15,7 +15,7 @@ import { isNode } from "../src/credential/isNode"; describe("CommunicationAccessKeyCredentialPolicy", () => { it("signs the request", async () => { - const credential = new MockKeyCredential("asdf"); //"YXNkZg=="); + const credential = new MockKeyCredential("pw=="); const communicationAccessKeyCredentialPolicy = createCommunicationAccessKeyCredentialPolicy(credential); From 5eff89491a63416c429f8a3e9f8cd702326939d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Feb 2022 11:00:26 +0100 Subject: [PATCH 08/33] maintain backwards compatibility --- .../communication-common/package.json | 3 +- .../review/communication-common.api.md | 16 ++- .../communicationAccessKeyCredentialPolicy.ts | 98 +++++++++++++++++++ .../auth-policy-v1/communicationAuthPolicy.ts | 23 +++++ .../src/credential/auth-policy-v1/index.ts | 5 + .../communicationAuthenticationPolicy.ts} | 6 +- .../communicationKeyCredentialPolicy.ts} | 14 +-- .../src/credential/auth-policy-v2/index.ts | 5 + .../src/credential/index.ts | 4 +- ... communicationKeyCredentialPolicy.spec.ts} | 10 +- 10 files changed, 161 insertions(+), 23 deletions(-) create mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts create mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts create mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts rename sdk/communication/communication-common/src/credential/{communicationAuthPolicy.ts => auth-policy-v2/communicationAuthenticationPolicy.ts} (78%) rename sdk/communication/communication-common/src/credential/{communicationAccessKeyCredentialPolicy.ts => auth-policy-v2/communicationKeyCredentialPolicy.ts} (80%) create mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts rename sdk/communication/communication-common/test/{communicationAccessKeyCredentialPolicy.spec.ts => communicationKeyCredentialPolicy.spec.ts} (82%) diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 8e7415c33e5a..5574aafe74fd 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -9,7 +9,7 @@ "browser": { "./dist-esm/src/credential/cryptoUtils.js": "./dist-esm/src/credential/cryptoUtils.browser.js", "./dist-esm/src/credential/url.js": "./dist-esm/src/credential/url.browser.js", - "./dist-esm/src/credential/isNode.js": "./dist-esm/src/credential/isNode.browser.js" + "./dist-esm/src/credential/isNode.js": "./dist-esm/src/credential/isNode.browser.js" }, "scripts": { "audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", @@ -65,6 +65,7 @@ "dependencies": { "@azure/abort-controller": "^1.0.0", "@azure/core-auth": "^1.3.0", + "@azure/core-http": "^2.0.0", "@azure/core-rest-pipeline": "^1.3.2", "@azure/core-tracing": "1.0.0-preview.13", "events": "^3.0.0", diff --git a/sdk/communication/communication-common/review/communication-common.api.md b/sdk/communication/communication-common/review/communication-common.api.md index ae3575ec1935..2f3a6f55642e 100644 --- a/sdk/communication/communication-common/review/communication-common.api.md +++ b/sdk/communication/communication-common/review/communication-common.api.md @@ -4,9 +4,10 @@ ```ts -import { AbortSignalLike } from '@azure/core-http'; -import { AccessToken } from '@azure/core-http'; +import { AbortSignalLike } from '@azure/abort-controller'; +import { AccessToken } from '@azure/core-auth'; import { KeyCredential } from '@azure/core-auth'; +import { PipelinePolicy } from '@azure/core-rest-pipeline'; import { RequestPolicyFactory } from '@azure/core-http'; import { TokenCredential } from '@azure/core-auth'; @@ -16,7 +17,7 @@ export class AzureCommunicationTokenCredential implements CommunicationTokenCred constructor(refreshOptions: CommunicationTokenRefreshOptions); dispose(): void; getToken(options?: CommunicationGetTokenOptions): Promise; - } +} // @public export interface CommunicationGetTokenOptions { @@ -52,12 +53,18 @@ export interface CommunicationUserKind extends CommunicationUserIdentifier { kind: "communicationUser"; } -// @public +// @public @deprecated export const createCommunicationAccessKeyCredentialPolicy: (credential: KeyCredential) => RequestPolicyFactory; // @public +export const createCommunicationAuthenticationPolicy: (credential: KeyCredential | TokenCredential) => PipelinePolicy; + +// @public @deprecated export const createCommunicationAuthPolicy: (credential: KeyCredential | TokenCredential) => RequestPolicyFactory; +// @public +export function createCommunicationKeyCredentialPolicy(credential: KeyCredential): PipelinePolicy; + // @public export const deserializeCommunicationIdentifier: (serializedIdentifier: SerializedCommunicationIdentifier) => CommunicationIdentifierKind; @@ -162,7 +169,6 @@ export type UrlWithCredential = { credential: TokenCredential | KeyCredential; }; - // (No @packageDocumentation comment for this package) ``` diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts new file mode 100644 index 000000000000..0e68c8194b2c --- /dev/null +++ b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts @@ -0,0 +1,98 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { KeyCredential } from "@azure/core-auth"; +import { + URLBuilder, + WebResource, + isNode, + RequestPolicy, + RequestPolicyOptionsLike, + RequestPolicyFactory, + WebResourceLike, + HttpOperationResponse, + BaseRequestPolicy, +} from "@azure/core-http"; +import { shaHash, shaHMAC } from "../cryptoUtils"; + +/** + * Creates an HTTP pipeline policy to authenticate a request using a `KeyCredential`. + * @hidden + * @deprecated Use `createCommunicationKeyCredentialPolicy` instead. + * + * @param credential - The key credential. + */ +export const createCommunicationAccessKeyCredentialPolicy = ( + credential: KeyCredential +): RequestPolicyFactory => { + return { + create: (nextpolicy: RequestPolicy, options: RequestPolicyOptionsLike) => { + return new CommunicationAccessKeyCredentialPolicy(credential, nextpolicy, options); + }, + }; +}; + +/** + * CommunicationAccessKeyCredentialPolicy provides a means of signing requests made through + * the SmsClient. + */ +class CommunicationAccessKeyCredentialPolicy extends BaseRequestPolicy { + /** + * Initializes a new instance of the CommunicationAccessKeyCredential class + * using a base64 encoded key. + * @param accessKey - The base64 encoded key to be used for signing. + */ + constructor( + private readonly accessKey: KeyCredential, + nextPolicy: RequestPolicy, + options: RequestPolicyOptionsLike + ) { + super(nextPolicy, options); + } + + /** + * Signs a request with the provided access key. + * + * @param webResource - The WebResource to be signed. + */ + private async signRequest(webResource: WebResource): Promise { + const verb = webResource.method.toUpperCase(); + const utcNow = new Date().toUTCString(); + const contentHash = await shaHash(webResource.body || ""); + const dateHeader = "x-ms-date"; + const signedHeaders = `${dateHeader};host;x-ms-content-sha256`; + + const url = URLBuilder.parse(webResource.url); + const query = url.getQuery(); + const urlPathAndQuery = query ? `${url.getPath()}?${query}` : url.getPath(); + const port = url.getPort(); + const hostAndPort = port ? `${url.getHost()}:${port}` : url.getHost(); + + const stringToSign = `${verb}\n${urlPathAndQuery}\n${utcNow};${hostAndPort};${contentHash}`; + const signature = await shaHMAC(this.accessKey.key, stringToSign); + + if (isNode) { + webResource.headers.set("Host", hostAndPort || ""); + } + + webResource.headers.set(dateHeader, utcNow); + webResource.headers.set("x-ms-content-sha256", contentHash); + webResource.headers.set( + "Authorization", + `HMAC-SHA256 SignedHeaders=${signedHeaders}&Signature=${signature}` + ); + + return webResource; + } + + /** + * Signs the request and calls the next policy in the factory. + */ + public async sendRequest(webResource: WebResourceLike): Promise { + if (!webResource) { + throw new Error("webResource cannot be null or undefined"); + } + + return this._nextPolicy.sendRequest(await this.signRequest(webResource)); + } +} \ No newline at end of file diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts new file mode 100644 index 000000000000..02a904fe1d05 --- /dev/null +++ b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +import { isTokenCredential, KeyCredential, TokenCredential } from "@azure/core-auth"; +import { bearerTokenAuthenticationPolicy, RequestPolicyFactory } from "@azure/core-http"; +import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAccessKeyCredentialPolicy"; +/** + * Creates a pipeline policy to authenticate request based + * on the credential passed in. + * @hidden + * @deprecated Use `createCommunicationAuthenticationPolicy` instead. + * + * @param credential - The KeyCredential or TokenCredential. + */ +export const createCommunicationAuthPolicy = ( + credential: KeyCredential | TokenCredential +): RequestPolicyFactory => { + if (isTokenCredential(credential)) { + return bearerTokenAuthenticationPolicy(credential, "https://communication.azure.com//.default"); + } else { + return createCommunicationAccessKeyCredentialPolicy(credential); + } +}; diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts new file mode 100644 index 000000000000..43ebc5ea1296 --- /dev/null +++ b/sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts @@ -0,0 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +export * from "./communicationAccessKeyCredentialPolicy"; +export * from "./communicationAuthPolicy"; diff --git a/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts similarity index 78% rename from sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts rename to sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts index 0044cfec6854..49a43602bd70 100644 --- a/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts @@ -7,7 +7,7 @@ import { BearerTokenAuthenticationPolicyOptions, PipelinePolicy, } from "@azure/core-rest-pipeline"; -import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAccessKeyCredentialPolicy"; +import { createCommunicationKeyCredentialPolicy } from "./communicationKeyCredentialPolicy"; /** * Creates a pipeline policy to authenticate request based * on the credential passed in. @@ -15,7 +15,7 @@ import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAcc * * @param credential - The KeyCredential or TokenCredential. */ -export const createCommunicationAuthPolicy = ( +export const createCommunicationAuthenticationPolicy = ( credential: KeyCredential | TokenCredential ): PipelinePolicy => { if (isTokenCredential(credential)) { @@ -25,6 +25,6 @@ export const createCommunicationAuthPolicy = ( }; return bearerTokenAuthenticationPolicy(policyOptions); } else { - return createCommunicationAccessKeyCredentialPolicy(credential); + return createCommunicationKeyCredentialPolicy(credential); } }; diff --git a/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts similarity index 80% rename from sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts rename to sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts index cc128f6b48c9..96a9d0e49c81 100644 --- a/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts @@ -8,15 +8,15 @@ import { SendRequest, PipelineResponse, } from "@azure/core-rest-pipeline"; -import { shaHash, shaHMAC } from "./cryptoUtils"; -import { URL } from "./url"; -import { isNode } from "./isNode"; +import { shaHash, shaHMAC } from "../cryptoUtils"; +import { URL } from "../url"; +import { isNode } from "../isNode"; /** - * CommunicationAccessKeyCredentialPolicy provides a means of signing requests made through + * CommunicationKeyCredentialPolicy provides a means of signing requests made through * the SmsClient. */ -const communicationAccessKeyCredentialPolicy = "CommunicationAccessKeyCredentialPolicy"; +const communicationKeyCredentialPolicy = "CommunicationKeyCredentialPolicy"; /** * Creates an HTTP pipeline policy to authenticate a request using a `KeyCredential`. @@ -24,11 +24,11 @@ const communicationAccessKeyCredentialPolicy = "CommunicationAccessKeyCredential * * @param credential - The key credential. */ -export function createCommunicationAccessKeyCredentialPolicy( +export function createCommunicationKeyCredentialPolicy( credential: KeyCredential ): PipelinePolicy { return { - name: communicationAccessKeyCredentialPolicy, + name: communicationKeyCredentialPolicy, async sendRequest(request: PipelineRequest, next: SendRequest): Promise { const verb = request.method.toUpperCase(); const utcNow = new Date().toUTCString(); diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts new file mode 100644 index 000000000000..4a1fb6aa3151 --- /dev/null +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts @@ -0,0 +1,5 @@ +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + +export * from "./communicationKeyCredentialPolicy"; +export * from "./communicationAuthenticationPolicy"; diff --git a/sdk/communication/communication-common/src/credential/index.ts b/sdk/communication/communication-common/src/credential/index.ts index b7a7d95e2af3..5f4a56c7fd02 100644 --- a/sdk/communication/communication-common/src/credential/index.ts +++ b/sdk/communication/communication-common/src/credential/index.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export * from "./communicationAccessKeyCredentialPolicy"; -export * from "./communicationAuthPolicy"; +export * from "./auth-policy-v1"; +export * from "./auth-policy-v2"; export * from "./clientArguments"; export * from "./connectionString"; diff --git a/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts similarity index 82% rename from sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts rename to sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts index 1e2a6471163c..07c691b6d659 100644 --- a/sdk/communication/communication-common/test/communicationAccessKeyCredentialPolicy.spec.ts +++ b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts @@ -2,7 +2,7 @@ // Licensed under the MIT license. import { assert } from "chai"; -import { createCommunicationAccessKeyCredentialPolicy } from "../src/credential/communicationAccessKeyCredentialPolicy"; +import { createCommunicationKeyCredentialPolicy } from "../src/credential/auth-policy-v2/communicationKeyCredentialPolicy"; import { createPipelineRequest, HttpClient, @@ -13,11 +13,11 @@ import { import { KeyCredential } from "@azure/core-auth"; import { isNode } from "../src/credential/isNode"; -describe("CommunicationAccessKeyCredentialPolicy", () => { +describe("CommunicationKeyCredentialPolicy", () => { it("signs the request", async () => { const credential = new MockKeyCredential("pw=="); - const communicationAccessKeyCredentialPolicy = - createCommunicationAccessKeyCredentialPolicy(credential); + const communicationKeyCredentialPolicy = + createCommunicationKeyCredentialPolicy(credential); const pipelineRequest = createPipelineRequest({ url: "https://example.com" }); @@ -41,7 +41,7 @@ describe("CommunicationAccessKeyCredentialPolicy", () => { }; const pipeline = createEmptyPipeline(); - pipeline.addPolicy(communicationAccessKeyCredentialPolicy); + pipeline.addPolicy(communicationKeyCredentialPolicy); const pipelineResponse = await pipeline.sendRequest(testHttpsClient, pipelineRequest); const authHeader = pipelineResponse.request.headers.get("Authorization"); From 4856108ba03d48f85f1514dc2ecbe5d336c545aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Feb 2022 12:29:58 +0100 Subject: [PATCH 09/33] linting - removed errors & most of the warnings --- .../communication-common/package.json | 2 +- .../src/autoRefreshTokenCredential.ts | 4 ++-- .../src/azureCommunicationTokenCredential.ts | 11 +++++++---- .../src/communicationTokenCredential.ts | 2 +- .../communicationAccessKeyCredentialPolicy.ts | 18 +++++++++--------- .../auth-policy-v1/communicationAuthPolicy.ts | 4 ++-- .../communicationAuthenticationPolicy.ts | 2 +- .../communicationKeyCredentialPolicy.ts | 6 +++--- .../src/credential/clientArguments.ts | 2 +- .../src/credential/cryptoUtils.browser.ts | 2 +- .../src/credential/isNode.browser.ts | 2 +- .../src/credential/isNode.ts | 4 ++-- .../communication-common/src/tokenParser.ts | 2 +- .../test/clientArguments.spec.ts | 2 +- .../communicationKeyCredentialPolicy.spec.ts | 10 +++++----- .../test/communicationTokenCredential.spec.ts | 6 +++--- .../test/cryptoUtils.spec.ts | 2 +- .../test/identifierModelSerializer.spec.ts | 8 ++++---- .../test/identifierModels.spec.ts | 8 ++++---- 19 files changed, 50 insertions(+), 47 deletions(-) diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 5574aafe74fd..3e4384006fec 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -106,4 +106,4 @@ "typescript": "~4.2.0", "util": "^0.12.1" } -} \ No newline at end of file +} diff --git a/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts b/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts index 504b8c499ce6..3c9a6e024015 100644 --- a/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts +++ b/sdk/communication/communication-common/src/autoRefreshTokenCredential.ts @@ -1,10 +1,10 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { AccessToken } from "@azure/core-auth"; +import { CommunicationGetTokenOptions, TokenCredential } from "./communicationTokenCredential"; import { AbortSignalLike } from "@azure/abort-controller"; +import { AccessToken } from "@azure/core-auth"; import { parseToken } from "./tokenParser"; -import { TokenCredential, CommunicationGetTokenOptions } from "./communicationTokenCredential"; /** * Options for auto-refreshing a Communication Token credential. diff --git a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts index dd67eed990c7..7e99bb4f1973 100644 --- a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts +++ b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts @@ -1,11 +1,14 @@ -import { AccessToken } from "@azure/core-auth"; -import { parseToken } from "./tokenParser"; -import { StaticTokenCredential } from "./staticTokenCredential"; +// Copyright (c) Microsoft Corporation. +// Licensed under the MIT license. + import { AutoRefreshTokenCredential, CommunicationTokenRefreshOptions } from "./autoRefreshTokenCredential"; -import { CommunicationTokenCredential, TokenCredential, CommunicationGetTokenOptions } from "./communicationTokenCredential"; +import { CommunicationGetTokenOptions, CommunicationTokenCredential, TokenCredential } from "./communicationTokenCredential"; +import { AccessToken } from "@azure/core-auth"; +import { parseToken } from "./tokenParser"; +import { StaticTokenCredential } from "./staticTokenCredential"; /** * The CommunicationTokenCredential implementation with support for proactive token refresh. diff --git a/sdk/communication/communication-common/src/communicationTokenCredential.ts b/sdk/communication/communication-common/src/communicationTokenCredential.ts index c506962688dc..d58c6956fbc0 100644 --- a/sdk/communication/communication-common/src/communicationTokenCredential.ts +++ b/sdk/communication/communication-common/src/communicationTokenCredential.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { AccessToken } from "@azure/core-auth"; import { AbortSignalLike } from "@azure/abort-controller"; +import { AccessToken } from "@azure/core-auth"; export type TokenCredential = Pick; diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts index 0e68c8194b2c..bf8d31cc04a5 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts @@ -1,19 +1,19 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { KeyCredential } from "@azure/core-auth"; import { - URLBuilder, - WebResource, - isNode, + BaseRequestPolicy, + HttpOperationResponse, RequestPolicy, - RequestPolicyOptionsLike, RequestPolicyFactory, + RequestPolicyOptionsLike, + URLBuilder, + WebResource, WebResourceLike, - HttpOperationResponse, - BaseRequestPolicy, + isNode, } from "@azure/core-http"; -import { shaHash, shaHMAC } from "../cryptoUtils"; +import { shaHMAC, shaHash } from "../cryptoUtils"; +import { KeyCredential } from "@azure/core-auth"; /** * Creates an HTTP pipeline policy to authenticate a request using a `KeyCredential`. @@ -95,4 +95,4 @@ class CommunicationAccessKeyCredentialPolicy extends BaseRequestPolicy { return this._nextPolicy.sendRequest(await this.signRequest(webResource)); } -} \ No newline at end of file +} diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts index 02a904fe1d05..583b0e1f11e6 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { isTokenCredential, KeyCredential, TokenCredential } from "@azure/core-auth"; -import { bearerTokenAuthenticationPolicy, RequestPolicyFactory } from "@azure/core-http"; +import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; +import { RequestPolicyFactory, bearerTokenAuthenticationPolicy } from "@azure/core-http"; import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAccessKeyCredentialPolicy"; /** * Creates a pipeline policy to authenticate request based diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts index 49a43602bd70..577809380c7c 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { isTokenCredential, KeyCredential, TokenCredential } from "@azure/core-auth"; +import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; import { bearerTokenAuthenticationPolicy, BearerTokenAuthenticationPolicyOptions, diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts index 96a9d0e49c81..f02f88c4cbf2 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { KeyCredential } from "@azure/core-auth"; import { PipelinePolicy, PipelineRequest, - SendRequest, PipelineResponse, + SendRequest, } from "@azure/core-rest-pipeline"; -import { shaHash, shaHMAC } from "../cryptoUtils"; +import { shaHMAC, shaHash } from "../cryptoUtils"; +import { KeyCredential } from "@azure/core-auth"; import { URL } from "../url"; import { isNode } from "../isNode"; diff --git a/sdk/communication/communication-common/src/credential/clientArguments.ts b/sdk/communication/communication-common/src/credential/clientArguments.ts index e0fb5681fca2..9a4e90d8cd9f 100644 --- a/sdk/communication/communication-common/src/credential/clientArguments.ts +++ b/sdk/communication/communication-common/src/credential/clientArguments.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { isTokenCredential, KeyCredential, TokenCredential } from "@azure/core-auth"; +import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; import { parseConnectionString } from "./connectionString"; import { URL } from "./url"; diff --git a/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts b/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts index 6d238428b9fd..06ab819b6ff9 100644 --- a/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts +++ b/sdk/communication/communication-common/src/credential/cryptoUtils.browser.ts @@ -3,7 +3,7 @@ /// -import { encodeUTF8, encodeBase64, encodeUTF8fromBase64 } from "./encodeUtils.browser"; +import { encodeBase64, encodeUTF8, encodeUTF8fromBase64 } from "./encodeUtils.browser"; const subtle = (globalThis as any)?.crypto?.subtle as SubtleCrypto; diff --git a/sdk/communication/communication-common/src/credential/isNode.browser.ts b/sdk/communication/communication-common/src/credential/isNode.browser.ts index f3d25a1bfbde..603c1ba24548 100644 --- a/sdk/communication/communication-common/src/credential/isNode.browser.ts +++ b/sdk/communication/communication-common/src/credential/isNode.browser.ts @@ -4,4 +4,4 @@ /** * A constant that indicates whether the environment the code is running is Node.JS. */ - export const isNode = false; \ No newline at end of file +export const isNode = false; diff --git a/sdk/communication/communication-common/src/credential/isNode.ts b/sdk/communication/communication-common/src/credential/isNode.ts index 9ac5cebb2c20..8e6aed4ba67f 100644 --- a/sdk/communication/communication-common/src/credential/isNode.ts +++ b/sdk/communication/communication-common/src/credential/isNode.ts @@ -4,5 +4,5 @@ /** * A constant that indicates whether the environment the code is running is Node.JS. */ - export const isNode = - typeof process !== "undefined" && Boolean(process.version) && Boolean(process.versions?.node); \ No newline at end of file +export const isNode = + typeof process !== "undefined" && Boolean(process.version) && Boolean(process.versions?.node); diff --git a/sdk/communication/communication-common/src/tokenParser.ts b/sdk/communication/communication-common/src/tokenParser.ts index 9d8591af8f04..81d748591f34 100644 --- a/sdk/communication/communication-common/src/tokenParser.ts +++ b/sdk/communication/communication-common/src/tokenParser.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import jwtDecode from "jwt-decode"; import { AccessToken } from "@azure/core-auth"; +import jwtDecode from "jwt-decode"; interface JwtToken { exp: number; diff --git a/sdk/communication/communication-common/test/clientArguments.spec.ts b/sdk/communication/communication-common/test/clientArguments.spec.ts index d5f4ed1ccde3..3355cbd99663 100644 --- a/sdk/communication/communication-common/test/clientArguments.spec.ts +++ b/sdk/communication/communication-common/test/clientArguments.spec.ts @@ -3,8 +3,8 @@ import { AzureKeyCredential } from "@azure/core-auth"; import { assert } from "chai"; -import { parseConnectionString } from "../src/credential/connectionString"; import { parseClientArguments } from "../src/credential/clientArguments"; +import { parseConnectionString } from "../src/credential/connectionString"; const mockCredential = new AzureKeyCredential("secret"); const host = "https://contoso.communicationservices.azure.com"; diff --git a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts index 07c691b6d659..8b1324603488 100644 --- a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts +++ b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts @@ -1,17 +1,17 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { assert } from "chai"; -import { createCommunicationKeyCredentialPolicy } from "../src/credential/auth-policy-v2/communicationKeyCredentialPolicy"; import { - createPipelineRequest, HttpClient, - createEmptyPipeline, PipelineResponse, + createEmptyPipeline, createHttpHeaders, + createPipelineRequest, } from "@azure/core-rest-pipeline"; -import { KeyCredential } from "@azure/core-auth"; +import { assert } from "chai"; +import { createCommunicationKeyCredentialPolicy } from "../src/credential/auth-policy-v2/communicationKeyCredentialPolicy"; import { isNode } from "../src/credential/isNode"; +import { KeyCredential } from "@azure/core-auth"; describe("CommunicationKeyCredentialPolicy", () => { it("signs the request", async () => { diff --git a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts index f06055789f09..ab358409427c 100644 --- a/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts +++ b/sdk/communication/communication-common/test/communicationTokenCredential.spec.ts @@ -1,12 +1,12 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import sinon from "sinon"; -import chaiAsPromised from "chai-as-promised"; import { assert, use } from "chai"; -import { isNode } from "../src/credential/isNode"; import { AbortSignal } from "@azure/abort-controller"; import { AzureCommunicationTokenCredential } from "../src/azureCommunicationTokenCredential"; +import chaiAsPromised from "chai-as-promised"; +import { isNode } from "../src/credential/isNode"; +import sinon from "sinon"; use(chaiAsPromised); diff --git a/sdk/communication/communication-common/test/cryptoUtils.spec.ts b/sdk/communication/communication-common/test/cryptoUtils.spec.ts index a9b461fd3816..1d3e46317fd8 100644 --- a/sdk/communication/communication-common/test/cryptoUtils.spec.ts +++ b/sdk/communication/communication-common/test/cryptoUtils.spec.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. +import { shaHMAC, shaHash } from "../src/credential/cryptoUtils"; import { assert } from "chai"; -import { shaHash, shaHMAC } from "../src/credential/cryptoUtils"; describe("CryptoUtils", () => { it("calculates correct hash", async () => { diff --git a/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts b/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts index 5485fa6becb5..2003c3339fcb 100644 --- a/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts +++ b/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts @@ -1,14 +1,14 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { assert } from "chai"; import { - serializeCommunicationIdentifier, - deserializeCommunicationIdentifier, CommunicationIdentifier, - SerializedCommunicationIdentifier, CommunicationIdentifierKind, + deserializeCommunicationIdentifier, + serializeCommunicationIdentifier, + SerializedCommunicationIdentifier, } from "../src"; +import { assert } from "chai"; const assertSerialize = ( identifier: CommunicationIdentifier, diff --git a/sdk/communication/communication-common/test/identifierModels.spec.ts b/sdk/communication/communication-common/test/identifierModels.spec.ts index e29377bba3f9..5709f146e9a2 100644 --- a/sdk/communication/communication-common/test/identifierModels.spec.ts +++ b/sdk/communication/communication-common/test/identifierModels.spec.ts @@ -1,15 +1,15 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { assert } from "chai"; import { + PhoneNumberIdentifier, + getIdentifierKind, isCommunicationUserIdentifier, + isMicrosoftTeamsUserIdentifier, isPhoneNumberIdentifier, - getIdentifierKind, - PhoneNumberIdentifier, isUnknownIdentifier, - isMicrosoftTeamsUserIdentifier, } from "../src"; +import { assert } from "chai"; describe("Identifier models", () => { it("type guards", () => { From b665d3c24d2d56fdabf9e44197d4ba36139deef5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Feb 2022 12:38:06 +0100 Subject: [PATCH 10/33] linting - ordered imports --- .../src/azureCommunicationTokenCredential.ts | 2 +- .../auth-policy-v2/communicationAuthenticationPolicy.ts | 4 ++-- .../communication-common/src/credential/clientArguments.ts | 2 +- .../test/communicationKeyCredentialPolicy.spec.ts | 2 +- .../test/identifierModelSerializer.spec.ts | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts index 7e99bb4f1973..584bdc6dd24e 100644 --- a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts +++ b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts @@ -7,8 +7,8 @@ import { } from "./autoRefreshTokenCredential"; import { CommunicationGetTokenOptions, CommunicationTokenCredential, TokenCredential } from "./communicationTokenCredential"; import { AccessToken } from "@azure/core-auth"; -import { parseToken } from "./tokenParser"; import { StaticTokenCredential } from "./staticTokenCredential"; +import { parseToken } from "./tokenParser"; /** * The CommunicationTokenCredential implementation with support for proactive token refresh. diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts index 577809380c7c..d79648c8a90d 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts @@ -1,12 +1,12 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; import { - bearerTokenAuthenticationPolicy, BearerTokenAuthenticationPolicyOptions, PipelinePolicy, + bearerTokenAuthenticationPolicy, } from "@azure/core-rest-pipeline"; +import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; import { createCommunicationKeyCredentialPolicy } from "./communicationKeyCredentialPolicy"; /** * Creates a pipeline policy to authenticate request based diff --git a/sdk/communication/communication-common/src/credential/clientArguments.ts b/sdk/communication/communication-common/src/credential/clientArguments.ts index 9a4e90d8cd9f..fad089e5587f 100644 --- a/sdk/communication/communication-common/src/credential/clientArguments.ts +++ b/sdk/communication/communication-common/src/credential/clientArguments.ts @@ -2,8 +2,8 @@ // Licensed under the MIT license. import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; -import { parseConnectionString } from "./connectionString"; import { URL } from "./url"; +import { parseConnectionString } from "./connectionString"; const isValidEndpoint = (host: string): boolean => { const url = new URL(host); diff --git a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts index 8b1324603488..476adb543895 100644 --- a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts +++ b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts @@ -8,10 +8,10 @@ import { createHttpHeaders, createPipelineRequest, } from "@azure/core-rest-pipeline"; +import { KeyCredential } from "@azure/core-auth"; import { assert } from "chai"; import { createCommunicationKeyCredentialPolicy } from "../src/credential/auth-policy-v2/communicationKeyCredentialPolicy"; import { isNode } from "../src/credential/isNode"; -import { KeyCredential } from "@azure/core-auth"; describe("CommunicationKeyCredentialPolicy", () => { it("signs the request", async () => { diff --git a/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts b/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts index 2003c3339fcb..8fd2198cdfc3 100644 --- a/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts +++ b/sdk/communication/communication-common/test/identifierModelSerializer.spec.ts @@ -4,9 +4,9 @@ import { CommunicationIdentifier, CommunicationIdentifierKind, + SerializedCommunicationIdentifier, deserializeCommunicationIdentifier, serializeCommunicationIdentifier, - SerializedCommunicationIdentifier, } from "../src"; import { assert } from "chai"; From a245ab37e0b26512deb49de3cf817a33dab9047a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Feb 2022 13:06:23 +0100 Subject: [PATCH 11/33] changelog adjustment + formatting --- sdk/communication/communication-common/CHANGELOG.md | 2 +- .../src/azureCommunicationTokenCredential.ts | 8 ++++++-- .../auth-policy-v2/communicationKeyCredentialPolicy.ts | 4 +--- .../src/credential/clientArguments.ts | 4 ++-- .../test/communicationKeyCredentialPolicy.spec.ts | 3 +-- 5 files changed, 11 insertions(+), 10 deletions(-) diff --git a/sdk/communication/communication-common/CHANGELOG.md b/sdk/communication/communication-common/CHANGELOG.md index f3aeb2c2c0c3..e562c710f1c5 100644 --- a/sdk/communication/communication-common/CHANGELOG.md +++ b/sdk/communication/communication-common/CHANGELOG.md @@ -5,7 +5,7 @@ ### Features Added - Optimization added: When the proactive refreshing is enabled and the token refresher fails to provide a token that's not about to expire soon, the subsequent refresh attempts will be scheduled for when the token reaches half of its remaining lifetime until a token with long enough validity (>10 minutes) is obtained. -- Migrated from using `@azure/core-http` to `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the move. +- Added an authentication policy based on `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the migration from `@azure/core-http`. ### Breaking Changes diff --git a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts index 584bdc6dd24e..68cdf2211dd6 100644 --- a/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts +++ b/sdk/communication/communication-common/src/azureCommunicationTokenCredential.ts @@ -3,9 +3,13 @@ import { AutoRefreshTokenCredential, - CommunicationTokenRefreshOptions + CommunicationTokenRefreshOptions, } from "./autoRefreshTokenCredential"; -import { CommunicationGetTokenOptions, CommunicationTokenCredential, TokenCredential } from "./communicationTokenCredential"; +import { + CommunicationGetTokenOptions, + CommunicationTokenCredential, + TokenCredential, +} from "./communicationTokenCredential"; import { AccessToken } from "@azure/core-auth"; import { StaticTokenCredential } from "./staticTokenCredential"; import { parseToken } from "./tokenParser"; diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts index f02f88c4cbf2..9aa8bb01675e 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts @@ -24,9 +24,7 @@ const communicationKeyCredentialPolicy = "CommunicationKeyCredentialPolicy"; * * @param credential - The key credential. */ -export function createCommunicationKeyCredentialPolicy( - credential: KeyCredential -): PipelinePolicy { +export function createCommunicationKeyCredentialPolicy(credential: KeyCredential): PipelinePolicy { return { name: communicationKeyCredentialPolicy, async sendRequest(request: PipelineRequest, next: SendRequest): Promise { diff --git a/sdk/communication/communication-common/src/credential/clientArguments.ts b/sdk/communication/communication-common/src/credential/clientArguments.ts index fad089e5587f..534740f73812 100644 --- a/sdk/communication/communication-common/src/credential/clientArguments.ts +++ b/sdk/communication/communication-common/src/credential/clientArguments.ts @@ -6,8 +6,8 @@ import { URL } from "./url"; import { parseConnectionString } from "./connectionString"; const isValidEndpoint = (host: string): boolean => { - const url = new URL(host); - + const url = new URL(host); + return ( !!url.protocol?.match(/^http[s]?/) && url.host !== undefined && diff --git a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts index 476adb543895..bcfb46e83ca2 100644 --- a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts +++ b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts @@ -16,8 +16,7 @@ import { isNode } from "../src/credential/isNode"; describe("CommunicationKeyCredentialPolicy", () => { it("signs the request", async () => { const credential = new MockKeyCredential("pw=="); - const communicationKeyCredentialPolicy = - createCommunicationKeyCredentialPolicy(credential); + const communicationKeyCredentialPolicy = createCommunicationKeyCredentialPolicy(credential); const pipelineRequest = createPipelineRequest({ url: "https://example.com" }); From a283344581636ac20d45a5ea27ddd962f53f1f5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Feb 2022 13:21:41 +0100 Subject: [PATCH 12/33] export function --- .../auth-policy-v2/communicationAuthenticationPolicy.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts index d79648c8a90d..49800e5f64a7 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts @@ -15,9 +15,9 @@ import { createCommunicationKeyCredentialPolicy } from "./communicationKeyCreden * * @param credential - The KeyCredential or TokenCredential. */ -export const createCommunicationAuthenticationPolicy = ( +export function createCommunicationAuthenticationPolicy( credential: KeyCredential | TokenCredential -): PipelinePolicy => { +): PipelinePolicy { if (isTokenCredential(credential)) { const policyOptions: BearerTokenAuthenticationPolicyOptions = { credential: credential, @@ -27,4 +27,4 @@ export const createCommunicationAuthenticationPolicy = ( } else { return createCommunicationKeyCredentialPolicy(credential); } -}; +} From b682008b4b70c98ebe8f91a4a6fdd2f35e1189f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Feb 2022 13:32:54 +0100 Subject: [PATCH 13/33] extracted fresh api --- .../communication-common/review/communication-common.api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/communication/communication-common/review/communication-common.api.md b/sdk/communication/communication-common/review/communication-common.api.md index 2f3a6f55642e..7821da7a1d64 100644 --- a/sdk/communication/communication-common/review/communication-common.api.md +++ b/sdk/communication/communication-common/review/communication-common.api.md @@ -57,7 +57,7 @@ export interface CommunicationUserKind extends CommunicationUserIdentifier { export const createCommunicationAccessKeyCredentialPolicy: (credential: KeyCredential) => RequestPolicyFactory; // @public -export const createCommunicationAuthenticationPolicy: (credential: KeyCredential | TokenCredential) => PipelinePolicy; +export function createCommunicationAuthenticationPolicy(credential: KeyCredential | TokenCredential): PipelinePolicy; // @public @deprecated export const createCommunicationAuthPolicy: (credential: KeyCredential | TokenCredential) => RequestPolicyFactory; From eb0cf7fe5fbcb33c0a7b75539bc8493e395a0f66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Tue, 15 Feb 2022 09:16:24 +0100 Subject: [PATCH 14/33] migrated the client to core-v2 --- .../communication-identity/CHANGELOG.md | 2 + .../communication-identity/package.json | 4 +- .../review/communication-identity.api.md | 6 +- .../src/communicationIdentityClient.ts | 84 +++----- .../src/generated/src/identityRestClient.ts | 23 +-- .../src/identityRestClientContext.ts | 38 ++-- .../src/generated/src/index.ts | 12 ++ .../src/generated/src/models/index.ts | 189 ++++++------------ .../src/generated/src/models/mappers.ts | 35 ++-- .../src/generated/src/models/parameters.ts | 26 ++- ....ts => communicationIdentityOperations.ts} | 122 +++++------ .../src/generated/src/operations/index.ts | 2 +- .../communicationIdentityOperations.ts | 69 +++++++ .../src/operationsInterfaces/index.ts | 9 + .../communication-identity/src/models.ts | 4 +- .../communication-identity/swagger/README.md | 2 +- ...communicationIdentityClient.mocked.spec.ts | 10 +- .../communicationIdentityClient.spec.ts | 8 +- .../node/getTokenForTeamsUser.node.spec.ts | 8 +- .../test/public/utils/mockHttpClients.ts | 13 +- .../test/public/utils/recordedClient.ts | 65 ++---- .../utils/testCommunicationIdentityClient.ts | 10 +- 22 files changed, 371 insertions(+), 370 deletions(-) create mode 100644 sdk/communication/communication-identity/src/generated/src/index.ts rename sdk/communication/communication-identity/src/generated/src/operations/{communicationIdentity.ts => communicationIdentityOperations.ts} (60%) create mode 100644 sdk/communication/communication-identity/src/generated/src/operationsInterfaces/communicationIdentityOperations.ts create mode 100644 sdk/communication/communication-identity/src/generated/src/operationsInterfaces/index.ts diff --git a/sdk/communication/communication-identity/CHANGELOG.md b/sdk/communication/communication-identity/CHANGELOG.md index 452680c95854..9428d00b0651 100644 --- a/sdk/communication/communication-identity/CHANGELOG.md +++ b/sdk/communication/communication-identity/CHANGELOG.md @@ -4,6 +4,8 @@ ### Features Added +- Migrated from using `@azure/core-http` to `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the move. + ### Breaking Changes ### Bugs Fixed diff --git a/sdk/communication/communication-identity/package.json b/sdk/communication/communication-identity/package.json index 69890e943a7e..7c0cd3ba6c46 100644 --- a/sdk/communication/communication-identity/package.json +++ b/sdk/communication/communication-identity/package.json @@ -74,7 +74,8 @@ "@azure/abort-controller": "^1.0.0", "@azure/communication-common": "^1.1.0", "@azure/core-auth": "^1.3.0", - "@azure/core-http": "^2.0.0", + "@azure/core-client": "^1.3.0", + "@azure/core-rest-pipeline": "^1.3.0", "@azure/core-lro": "^2.2.0", "@azure/core-paging": "^1.1.1", "@azure/core-tracing": "1.0.0-preview.13", @@ -83,6 +84,7 @@ "tslib": "^2.2.0" }, "devDependencies": { + "@azure/core-util": "^1.0.0-beta.1", "@azure/dev-tool": "^1.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/test-utils": "^1.0.0", diff --git a/sdk/communication/communication-identity/review/communication-identity.api.md b/sdk/communication/communication-identity/review/communication-identity.api.md index 7f694e3907c2..562477e9169e 100644 --- a/sdk/communication/communication-identity/review/communication-identity.api.md +++ b/sdk/communication/communication-identity/review/communication-identity.api.md @@ -4,10 +4,10 @@ ```ts +import { CommonClientOptions } from '@azure/core-client'; import { CommunicationUserIdentifier } from '@azure/communication-common'; import { KeyCredential } from '@azure/core-auth'; -import { OperationOptions } from '@azure/core-http'; -import { PipelineOptions } from '@azure/core-http'; +import { OperationOptions } from '@azure/core-client'; import { TokenCredential } from '@azure/core-auth'; // @public @@ -30,7 +30,7 @@ export class CommunicationIdentityClient { } // @public -export interface CommunicationIdentityClientOptions extends PipelineOptions { +export interface CommunicationIdentityClientOptions extends CommonClientOptions { } // @public diff --git a/sdk/communication/communication-identity/src/communicationIdentityClient.ts b/sdk/communication/communication-identity/src/communicationIdentityClient.ts index 8f4478c82634..e5d3a5f40bba 100644 --- a/sdk/communication/communication-identity/src/communicationIdentityClient.ts +++ b/sdk/communication/communication-identity/src/communicationIdentityClient.ts @@ -2,29 +2,23 @@ // Licensed under the MIT license. import { - createCommunicationAuthPolicy, - parseClientArguments, - isKeyCredential, + CommunicationAccessToken, + CommunicationIdentityClientOptions, + CommunicationUserToken, + TokenScope, +} from "./models"; +import { CommunicationUserIdentifier, + createCommunicationAuthenticationPolicy, + isKeyCredential, + parseClientArguments, } from "@azure/communication-common"; -import { isTokenCredential, KeyCredential, TokenCredential } from "@azure/core-auth"; -import { - InternalPipelineOptions, - createPipelineFromOptions, - OperationOptions, - operationOptionsToRequestOptionsBase, -} from "@azure/core-http"; +import { InternalClientPipelineOptions, OperationOptions } from "@azure/core-client"; +import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; +import { IdentityRestClient } from "./generated/src/identityRestClient"; import { SpanStatusCode } from "@azure/core-tracing"; -import { CommunicationIdentity, IdentityRestClient } from "./generated/src/identityRestClient"; -import { SDK_VERSION } from "./constants"; -import { logger } from "./common/logger"; import { createSpan } from "./common/tracing"; -import { - CommunicationIdentityClientOptions, - TokenScope, - CommunicationUserToken, - CommunicationAccessToken, -} from "./models"; +import { logger } from "./common/logger"; const isCommunicationIdentityClientOptions = ( options: any @@ -38,7 +32,7 @@ export class CommunicationIdentityClient { /** * A reference to the auto-generated UserToken HTTP client. */ - private readonly client: CommunicationIdentity; + private readonly client: IdentityRestClient; /** * Initializes a new instance of the CommunicationIdentity class. @@ -83,19 +77,8 @@ export class CommunicationIdentityClient { const options = isCommunicationIdentityClientOptions(credentialOrOptions) ? credentialOrOptions : maybeOptions; - const libInfo = `azsdk-js-communication-identity/${SDK_VERSION}`; - - if (!options.userAgentOptions) { - options.userAgentOptions = {}; - } - if (options.userAgentOptions.userAgentPrefix) { - options.userAgentOptions.userAgentPrefix = `${options.userAgentOptions.userAgentPrefix} ${libInfo}`; - } else { - options.userAgentOptions.userAgentPrefix = libInfo; - } - - const internalPipelineOptions: InternalPipelineOptions = { + const internalPipelineOptions: InternalClientPipelineOptions = { ...options, ...{ loggingOptions: { @@ -104,9 +87,10 @@ export class CommunicationIdentityClient { }, }; - const authPolicy = createCommunicationAuthPolicy(credential); - const pipeline = createPipelineFromOptions(internalPipelineOptions, authPolicy); - this.client = new IdentityRestClient(url, pipeline).communicationIdentity; + this.client = new IdentityRestClient(url, { endpoint: url, ...internalPipelineOptions }); + + const authPolicy = createCommunicationAuthenticationPolicy(credential); + this.client.pipeline.addPolicy(authPolicy); } /** @@ -123,12 +107,11 @@ export class CommunicationIdentityClient { ): Promise { const { span, updatedOptions } = createSpan("CommunicationIdentity-issueToken", options); try { - const { _response, ...result } = await this.client.issueAccessToken( + return await this.client.communicationIdentityOperations.issueAccessToken( user.communicationUserId, - { scopes }, - operationOptionsToRequestOptionsBase(updatedOptions) + scopes, + updatedOptions ); - return result; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, @@ -152,9 +135,9 @@ export class CommunicationIdentityClient { ): Promise { const { span, updatedOptions } = createSpan("CommunicationIdentity-revokeTokens", options); try { - await this.client.revokeAccessTokens( + await this.client.communicationIdentityOperations.revokeAccessTokens( user.communicationUserId, - operationOptionsToRequestOptionsBase(updatedOptions) + updatedOptions ); } catch (e) { span.setStatus({ @@ -175,7 +158,7 @@ export class CommunicationIdentityClient { public async createUser(options: OperationOptions = {}): Promise { const { span, updatedOptions } = createSpan("CommunicationIdentity-createUser", options); try { - const result = await this.client.create(operationOptionsToRequestOptionsBase(updatedOptions)); + const result = await this.client.communicationIdentityOperations.create(updatedOptions); return { communicationUserId: result.identity.id, }; @@ -205,9 +188,9 @@ export class CommunicationIdentityClient { options ); try { - const { identity, accessToken } = await this.client.create({ - body: { createTokenWithScopes: scopes }, - ...operationOptionsToRequestOptionsBase(updatedOptions), + const { identity, accessToken } = await this.client.communicationIdentityOperations.create({ + createTokenWithScopes: scopes, + ...updatedOptions, }); return { ...accessToken!, @@ -236,9 +219,9 @@ export class CommunicationIdentityClient { ): Promise { const { span, updatedOptions } = createSpan("CommunicationIdentity-deleteUser", options); try { - await this.client.delete( + await this.client.communicationIdentityOperations.delete( user.communicationUserId, - operationOptionsToRequestOptionsBase(updatedOptions) + updatedOptions ); } catch (e) { span.setStatus({ @@ -266,11 +249,10 @@ export class CommunicationIdentityClient { options ); try { - const { _response, ...result } = await this.client.exchangeTeamsUserAccessToken( - { token: teamsUserAadToken }, - operationOptionsToRequestOptionsBase(updatedOptions) + return await this.client.communicationIdentityOperations.exchangeTeamsUserAccessToken( + teamsUserAadToken, + updatedOptions ); - return result; } catch (e) { span.setStatus({ code: SpanStatusCode.ERROR, diff --git a/sdk/communication/communication-identity/src/generated/src/identityRestClient.ts b/sdk/communication/communication-identity/src/generated/src/identityRestClient.ts index 36df50d47e08..a2fdf3314b68 100644 --- a/sdk/communication/communication-identity/src/generated/src/identityRestClient.ts +++ b/sdk/communication/communication-identity/src/generated/src/identityRestClient.ts @@ -6,13 +6,12 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as operations from "./operations"; -import * as Models from "./models"; -import * as Mappers from "./models/mappers"; +import { CommunicationIdentityOperationsImpl } from "./operations"; +import { CommunicationIdentityOperations } from "./operationsInterfaces"; import { IdentityRestClientContext } from "./identityRestClientContext"; import { IdentityRestClientOptionalParams } from "./models"; -class IdentityRestClient extends IdentityRestClientContext { +export class IdentityRestClient extends IdentityRestClientContext { /** * Initializes a new instance of the IdentityRestClient class. * @param endpoint The communication resource, for example https://my-resource.communication.azure.com @@ -20,18 +19,10 @@ class IdentityRestClient extends IdentityRestClientContext { */ constructor(endpoint: string, options?: IdentityRestClientOptionalParams) { super(endpoint, options); - this.communicationIdentity = new operations.CommunicationIdentity(this); + this.communicationIdentityOperations = new CommunicationIdentityOperationsImpl( + this + ); } - communicationIdentity: operations.CommunicationIdentity; + communicationIdentityOperations: CommunicationIdentityOperations; } - -// Operation Specifications - -export { - IdentityRestClient, - IdentityRestClientContext, - Models as IdentityRestModels, - Mappers as IdentityRestMappers -}; -export * from "./operations"; diff --git a/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts b/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts index 32a6564ab87a..a89912090303 100644 --- a/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts +++ b/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts @@ -6,13 +6,10 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as coreHttp from "@azure/core-http"; +import * as coreClient from "@azure/core-client"; import { IdentityRestClientOptionalParams } from "./models"; -const packageName = "azure-communication-identity"; -const packageVersion = "1.1.0-beta.1"; - -export class IdentityRestClientContext extends coreHttp.ServiceClient { +export class IdentityRestClientContext extends coreClient.ServiceClient { endpoint: string; apiVersion: string; @@ -30,18 +27,25 @@ export class IdentityRestClientContext extends coreHttp.ServiceClient { 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 || "{endpoint}"; - + const defaults: IdentityRestClientOptionalParams = { + requestContentType: "application/json; charset=utf-8" + }; + + const packageDetails = `azsdk-js-azure-communication-identity/1.1.0-beta.1`; + const userAgentPrefix = + options.userAgentOptions && options.userAgentOptions.userAgentPrefix + ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; + + const optionsWithDefaults = { + ...defaults, + ...options, + userAgentOptions: { + userAgentPrefix + }, + baseUri: options.endpoint || "{endpoint}" + }; + super(optionsWithDefaults); // Parameter assignments this.endpoint = endpoint; diff --git a/sdk/communication/communication-identity/src/generated/src/index.ts b/sdk/communication/communication-identity/src/generated/src/index.ts new file mode 100644 index 000000000000..316c9f819d4a --- /dev/null +++ b/sdk/communication/communication-identity/src/generated/src/index.ts @@ -0,0 +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 { IdentityRestClient } from "./identityRestClient"; +export { IdentityRestClientContext } from "./identityRestClientContext"; +export * from "./operationsInterfaces"; diff --git a/sdk/communication/communication-identity/src/generated/src/models/index.ts b/sdk/communication/communication-identity/src/generated/src/models/index.ts index f5ca9a461214..3c88e2bc3d01 100644 --- a/sdk/communication/communication-identity/src/generated/src/models/index.ts +++ b/sdk/communication/communication-identity/src/generated/src/models/index.ts @@ -6,190 +6,127 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as coreHttp from "@azure/core-http"; +import * as coreClient from "@azure/core-client"; export interface CommunicationIdentityCreateRequest { - /** - * Also create access token for the created identity. - */ + /** Also create access token for the created identity. */ createTokenWithScopes?: CommunicationIdentityTokenScope[]; } -/** - * A communication identity with access token. - */ +/** A communication identity with access token. */ export interface CommunicationIdentityAccessTokenResult { - /** - * A communication identity. - */ + /** A communication identity. */ identity: CommunicationIdentity; - /** - * An access token. - */ + /** An access token. */ accessToken?: CommunicationIdentityAccessToken; } -/** - * A communication identity. - */ +/** A communication identity. */ export interface CommunicationIdentity { - /** - * Identifier of the identity. - */ + /** Identifier of the identity. */ id: string; } -/** - * An access token. - */ +/** An access token. */ export interface CommunicationIdentityAccessToken { - /** - * The access token issued for the identity. - */ + /** The access token issued for the identity. */ token: string; - /** - * The expiry time of the token. - */ + /** The expiry time of the token. */ expiresOn: Date; } -/** - * The Communication Services error. - */ +/** The Communication Services error. */ export interface CommunicationErrorResponse { - /** - * The Communication Services error. - */ + /** The Communication Services error. */ error: CommunicationError; } -/** - * The Communication Services error. - */ +/** The Communication Services error. */ export interface CommunicationError { - /** - * The error code. - */ + /** The error code. */ code: string; - /** - * The error message. - */ + /** The error message. */ message: string; /** * The error target. + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly target?: string; /** * Further details about specific errors that led to this error. + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly details?: CommunicationError[]; /** * The inner error if any. + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly innerError?: CommunicationError; } export interface TeamsUserAccessTokenRequest { - /** - * AAD access token of a Teams User to acquire a new Communication Identity access token. - */ + /** AAD access token of a Teams User to acquire a new Communication Identity access token. */ token: string; } export interface CommunicationIdentityAccessTokenRequest { - /** - * List of scopes attached to the token. - */ + /** List of scopes attached to the token. */ scopes: CommunicationIdentityTokenScope[]; } -/** - * Defines values for CommunicationIdentityTokenScope. - */ -export type CommunicationIdentityTokenScope = "chat" | "voip"; +/** Known values of {@link CommunicationIdentityTokenScope} that the service accepts. */ +export enum KnownCommunicationIdentityTokenScope { + Chat = "chat", + Voip = "voip" +} /** - * Optional parameters. + * Defines values for CommunicationIdentityTokenScope. \ + * {@link KnownCommunicationIdentityTokenScope} can be used interchangeably with CommunicationIdentityTokenScope, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **chat** \ + * **voip** */ +export type CommunicationIdentityTokenScope = string; + +/** Optional parameters. */ export interface CommunicationIdentityCreateOptionalParams - extends coreHttp.OperationOptions { - /** - * If specified, creates also a Communication Identity access token associated with the identity and containing the requested scopes. - */ - body?: CommunicationIdentityCreateRequest; + extends coreClient.OperationOptions { + /** Also create access token for the created identity. */ + createTokenWithScopes?: CommunicationIdentityTokenScope[]; } -/** - * Contains response data for the create operation. - */ -export type CommunicationIdentityCreateResponse = CommunicationIdentityAccessTokenResult & { - /** - * 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: CommunicationIdentityAccessTokenResult; - }; -}; +/** Contains response data for the create operation. */ +export type CommunicationIdentityCreateResponse = CommunicationIdentityAccessTokenResult; -/** - * Contains response data for the exchangeTeamsUserAccessToken operation. - */ -export type CommunicationIdentityExchangeTeamsUserAccessTokenResponse = CommunicationIdentityAccessToken & { - /** - * 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: CommunicationIdentityAccessToken; - }; -}; +/** Optional parameters. */ +export interface CommunicationIdentityDeleteOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the issueAccessToken operation. - */ -export type CommunicationIdentityIssueAccessTokenResponse = CommunicationIdentityAccessToken & { - /** - * 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: CommunicationIdentityAccessToken; - }; -}; +/** Optional parameters. */ +export interface CommunicationIdentityRevokeAccessTokensOptionalParams + extends coreClient.OperationOptions {} -/** - * Optional parameters. - */ +/** Optional parameters. */ +export interface CommunicationIdentityExchangeTeamsUserAccessTokenOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the exchangeTeamsUserAccessToken operation. */ +export type CommunicationIdentityExchangeTeamsUserAccessTokenResponse = CommunicationIdentityAccessToken; + +/** Optional parameters. */ +export interface CommunicationIdentityIssueAccessTokenOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the issueAccessToken operation. */ +export type CommunicationIdentityIssueAccessTokenResponse = CommunicationIdentityAccessToken; + +/** Optional parameters. */ export interface IdentityRestClientOptionalParams - extends coreHttp.ServiceClientOptions { - /** - * Api Version - */ + extends coreClient.ServiceClientOptions { + /** Api Version */ apiVersion?: string; - /** - * Overrides client endpoint. - */ + /** Overrides client endpoint. */ endpoint?: string; } diff --git a/sdk/communication/communication-identity/src/generated/src/models/mappers.ts b/sdk/communication/communication-identity/src/generated/src/models/mappers.ts index 41424a5e0a12..f082f573a282 100644 --- a/sdk/communication/communication-identity/src/generated/src/models/mappers.ts +++ b/sdk/communication/communication-identity/src/generated/src/models/mappers.ts @@ -6,9 +6,9 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as coreHttp from "@azure/core-http"; +import * as coreClient from "@azure/core-client"; -export const CommunicationIdentityCreateRequest: coreHttp.CompositeMapper = { +export const CommunicationIdentityCreateRequest: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationIdentityCreateRequest", @@ -17,14 +17,18 @@ export const CommunicationIdentityCreateRequest: coreHttp.CompositeMapper = { serializedName: "createTokenWithScopes", type: { name: "Sequence", - element: { type: { name: "String" } } + element: { + type: { + name: "String" + } + } } } } } }; -export const CommunicationIdentityAccessTokenResult: coreHttp.CompositeMapper = { +export const CommunicationIdentityAccessTokenResult: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationIdentityAccessTokenResult", @@ -47,7 +51,7 @@ export const CommunicationIdentityAccessTokenResult: coreHttp.CompositeMapper = } }; -export const CommunicationIdentity: coreHttp.CompositeMapper = { +export const CommunicationIdentity: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationIdentity", @@ -63,7 +67,7 @@ export const CommunicationIdentity: coreHttp.CompositeMapper = { } }; -export const CommunicationIdentityAccessToken: coreHttp.CompositeMapper = { +export const CommunicationIdentityAccessToken: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationIdentityAccessToken", @@ -86,7 +90,7 @@ export const CommunicationIdentityAccessToken: coreHttp.CompositeMapper = { } }; -export const CommunicationErrorResponse: coreHttp.CompositeMapper = { +export const CommunicationErrorResponse: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationErrorResponse", @@ -102,7 +106,7 @@ export const CommunicationErrorResponse: coreHttp.CompositeMapper = { } }; -export const CommunicationError: coreHttp.CompositeMapper = { +export const CommunicationError: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationError", @@ -134,7 +138,10 @@ export const CommunicationError: coreHttp.CompositeMapper = { type: { name: "Sequence", element: { - type: { name: "Composite", className: "CommunicationError" } + type: { + name: "Composite", + className: "CommunicationError" + } } } }, @@ -149,7 +156,7 @@ export const CommunicationError: coreHttp.CompositeMapper = { } }; -export const TeamsUserAccessTokenRequest: coreHttp.CompositeMapper = { +export const TeamsUserAccessTokenRequest: coreClient.CompositeMapper = { type: { name: "Composite", className: "TeamsUserAccessTokenRequest", @@ -165,7 +172,7 @@ export const TeamsUserAccessTokenRequest: coreHttp.CompositeMapper = { } }; -export const CommunicationIdentityAccessTokenRequest: coreHttp.CompositeMapper = { +export const CommunicationIdentityAccessTokenRequest: coreClient.CompositeMapper = { type: { name: "Composite", className: "CommunicationIdentityAccessTokenRequest", @@ -175,7 +182,11 @@ export const CommunicationIdentityAccessTokenRequest: coreHttp.CompositeMapper = required: true, type: { name: "Sequence", - element: { type: { name: "String" } } + element: { + type: { + name: "String" + } + } } } } diff --git a/sdk/communication/communication-identity/src/generated/src/models/parameters.ts b/sdk/communication/communication-identity/src/generated/src/models/parameters.ts index 68a1672afbe7..2bbc50e82b02 100644 --- a/sdk/communication/communication-identity/src/generated/src/models/parameters.ts +++ b/sdk/communication/communication-identity/src/generated/src/models/parameters.ts @@ -10,7 +10,7 @@ import { OperationParameter, OperationURLParameter, OperationQueryParameter -} from "@azure/core-http"; +} from "@azure/core-client"; import { CommunicationIdentityCreateRequest as CommunicationIdentityCreateRequestMapper, TeamsUserAccessTokenRequest as TeamsUserAccessTokenRequestMapper, @@ -29,8 +29,20 @@ export const contentType: OperationParameter = { } }; -export const body: OperationParameter = { - parameterPath: ["options", "body"], +export const accept: OperationParameter = { + parameterPath: "accept", + mapper: { + defaultValue: "application/json", + isConstant: true, + serializedName: "Accept", + type: { + name: "String" + } + } +}; + +export const createTokenWithScopes: OperationParameter = { + parameterPath: ["options", "createTokenWithScopes"], mapper: CommunicationIdentityCreateRequestMapper }; @@ -69,12 +81,12 @@ export const id: OperationURLParameter = { } }; -export const body1: OperationParameter = { - parameterPath: "body", +export const token: OperationParameter = { + parameterPath: "token", mapper: TeamsUserAccessTokenRequestMapper }; -export const body2: OperationParameter = { - parameterPath: "body", +export const scopes: OperationParameter = { + parameterPath: "scopes", mapper: CommunicationIdentityAccessTokenRequestMapper }; diff --git a/sdk/communication/communication-identity/src/generated/src/operations/communicationIdentity.ts b/sdk/communication/communication-identity/src/generated/src/operations/communicationIdentityOperations.ts similarity index 60% rename from sdk/communication/communication-identity/src/generated/src/operations/communicationIdentity.ts rename to sdk/communication/communication-identity/src/generated/src/operations/communicationIdentityOperations.ts index 7432ea3fbc66..9a879a6fecbd 100644 --- a/sdk/communication/communication-identity/src/generated/src/operations/communicationIdentity.ts +++ b/sdk/communication/communication-identity/src/generated/src/operations/communicationIdentityOperations.ts @@ -6,30 +6,33 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as coreHttp from "@azure/core-http"; +import { CommunicationIdentityOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { IdentityRestClient } from "../identityRestClient"; +import { IdentityRestClientContext } from "../identityRestClientContext"; import { CommunicationIdentityCreateOptionalParams, CommunicationIdentityCreateResponse, - TeamsUserAccessTokenRequest, + CommunicationIdentityDeleteOptionalParams, + CommunicationIdentityRevokeAccessTokensOptionalParams, + CommunicationIdentityExchangeTeamsUserAccessTokenOptionalParams, CommunicationIdentityExchangeTeamsUserAccessTokenResponse, - CommunicationIdentityAccessTokenRequest, + CommunicationIdentityTokenScope, + CommunicationIdentityIssueAccessTokenOptionalParams, CommunicationIdentityIssueAccessTokenResponse } from "../models"; -/** - * Class representing a CommunicationIdentity. - */ -export class CommunicationIdentity { - private readonly client: IdentityRestClient; +/** Class containing CommunicationIdentityOperations operations. */ +export class CommunicationIdentityOperationsImpl + implements CommunicationIdentityOperations { + private readonly client: IdentityRestClientContext; /** - * Initialize a new instance of the class CommunicationIdentity class. + * Initialize a new instance of the class CommunicationIdentityOperations class. * @param client Reference to the service client */ - constructor(client: IdentityRestClient) { + constructor(client: IdentityRestClientContext) { this.client = client; } @@ -40,13 +43,7 @@ export class CommunicationIdentity { create( options?: CommunicationIdentityCreateOptionalParams ): Promise { - const operationOptions: coreHttp.RequestOptionsBase = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); - return this.client.sendOperationRequest( - { options: operationOptions }, - createOperationSpec - ) as Promise; + return this.client.sendOperationRequest({ options }, createOperationSpec); } /** @@ -56,15 +53,12 @@ export class CommunicationIdentity { */ delete( id: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationOptions: coreHttp.RequestOptionsBase = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); + options?: CommunicationIdentityDeleteOptionalParams + ): Promise { return this.client.sendOperationRequest( - { id, options: operationOptions }, + { id, options }, deleteOperationSpec - ) as Promise; + ); } /** @@ -74,61 +68,51 @@ export class CommunicationIdentity { */ revokeAccessTokens( id: string, - options?: coreHttp.OperationOptions - ): Promise { - const operationOptions: coreHttp.RequestOptionsBase = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); + options?: CommunicationIdentityRevokeAccessTokensOptionalParams + ): Promise { return this.client.sendOperationRequest( - { id, options: operationOptions }, + { id, options }, revokeAccessTokensOperationSpec - ) as Promise; + ); } /** * Exchange an AAD access token of a Teams user for a new Communication Identity access token with a * matching expiration time. - * @param body AAD access token of a Teams user + * @param token AAD access token of a Teams User to acquire a new Communication Identity access token. * @param options The options parameters. */ exchangeTeamsUserAccessToken( - body: TeamsUserAccessTokenRequest, - options?: coreHttp.OperationOptions + token: string, + options?: CommunicationIdentityExchangeTeamsUserAccessTokenOptionalParams ): Promise { - const operationOptions: coreHttp.RequestOptionsBase = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); return this.client.sendOperationRequest( - { body, options: operationOptions }, + { token, options }, exchangeTeamsUserAccessTokenOperationSpec - ) as Promise; + ); } /** * Issue a new token for an identity. * @param id Identifier of the identity to issue token for. - * @param body Requested scopes for the new token. + * @param scopes List of scopes attached to the token. * @param options The options parameters. */ issueAccessToken( id: string, - body: CommunicationIdentityAccessTokenRequest, - options?: coreHttp.OperationOptions + scopes: CommunicationIdentityTokenScope[], + options?: CommunicationIdentityIssueAccessTokenOptionalParams ): Promise { - const operationOptions: coreHttp.RequestOptionsBase = coreHttp.operationOptionsToRequestOptionsBase( - options || {} - ); return this.client.sendOperationRequest( - { id, body, options: operationOptions }, + { id, scopes, options }, issueAccessTokenOperationSpec - ) as Promise; + ); } } // Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); -const serializer = new coreHttp.Serializer(Mappers, /* isXml */ false); - -const createOperationSpec: coreHttp.OperationSpec = { +const createOperationSpec: coreClient.OperationSpec = { path: "/identities", httpMethod: "POST", responses: { @@ -139,14 +123,19 @@ const createOperationSpec: coreHttp.OperationSpec = { bodyMapper: Mappers.CommunicationErrorResponse } }, - requestBody: Parameters.body, + requestBody: { + parameterPath: { + createTokenWithScopes: ["options", "createTokenWithScopes"] + }, + mapper: Mappers.CommunicationIdentityCreateRequest + }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint], - headerParameters: [Parameters.contentType], + headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer }; -const deleteOperationSpec: coreHttp.OperationSpec = { +const deleteOperationSpec: coreClient.OperationSpec = { path: "/identities/{id}", httpMethod: "DELETE", responses: { @@ -157,9 +146,10 @@ const deleteOperationSpec: coreHttp.OperationSpec = { }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.id], + headerParameters: [Parameters.accept], serializer }; -const revokeAccessTokensOperationSpec: coreHttp.OperationSpec = { +const revokeAccessTokensOperationSpec: coreClient.OperationSpec = { path: "/identities/{id}/:revokeAccessTokens", httpMethod: "POST", responses: { @@ -170,9 +160,10 @@ const revokeAccessTokensOperationSpec: coreHttp.OperationSpec = { }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.id], + headerParameters: [Parameters.accept], serializer }; -const exchangeTeamsUserAccessTokenOperationSpec: coreHttp.OperationSpec = { +const exchangeTeamsUserAccessTokenOperationSpec: coreClient.OperationSpec = { path: "/teamsUser/:exchangeAccessToken", httpMethod: "POST", responses: { @@ -183,14 +174,17 @@ const exchangeTeamsUserAccessTokenOperationSpec: coreHttp.OperationSpec = { bodyMapper: Mappers.CommunicationErrorResponse } }, - requestBody: Parameters.body1, + requestBody: { + parameterPath: { token: ["token"] }, + mapper: { ...Mappers.TeamsUserAccessTokenRequest, required: true } + }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint], - headerParameters: [Parameters.contentType], + headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer }; -const issueAccessTokenOperationSpec: coreHttp.OperationSpec = { +const issueAccessTokenOperationSpec: coreClient.OperationSpec = { path: "/identities/{id}/:issueAccessToken", httpMethod: "POST", responses: { @@ -201,10 +195,16 @@ const issueAccessTokenOperationSpec: coreHttp.OperationSpec = { bodyMapper: Mappers.CommunicationErrorResponse } }, - requestBody: Parameters.body2, + requestBody: { + parameterPath: { scopes: ["scopes"] }, + mapper: { + ...Mappers.CommunicationIdentityAccessTokenRequest, + required: true + } + }, queryParameters: [Parameters.apiVersion], urlParameters: [Parameters.endpoint, Parameters.id], - headerParameters: [Parameters.contentType], + headerParameters: [Parameters.contentType, Parameters.accept], mediaType: "json", serializer }; diff --git a/sdk/communication/communication-identity/src/generated/src/operations/index.ts b/sdk/communication/communication-identity/src/generated/src/operations/index.ts index 9d61601db709..c0e3fc741e5a 100644 --- a/sdk/communication/communication-identity/src/generated/src/operations/index.ts +++ b/sdk/communication/communication-identity/src/generated/src/operations/index.ts @@ -6,4 +6,4 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -export * from "./communicationIdentity"; +export * from "./communicationIdentityOperations"; diff --git a/sdk/communication/communication-identity/src/generated/src/operationsInterfaces/communicationIdentityOperations.ts b/sdk/communication/communication-identity/src/generated/src/operationsInterfaces/communicationIdentityOperations.ts new file mode 100644 index 000000000000..6895b72a8c46 --- /dev/null +++ b/sdk/communication/communication-identity/src/generated/src/operationsInterfaces/communicationIdentityOperations.ts @@ -0,0 +1,69 @@ +/* + * 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 { + CommunicationIdentityCreateOptionalParams, + CommunicationIdentityCreateResponse, + CommunicationIdentityDeleteOptionalParams, + CommunicationIdentityRevokeAccessTokensOptionalParams, + CommunicationIdentityExchangeTeamsUserAccessTokenOptionalParams, + CommunicationIdentityExchangeTeamsUserAccessTokenResponse, + CommunicationIdentityTokenScope, + CommunicationIdentityIssueAccessTokenOptionalParams, + CommunicationIdentityIssueAccessTokenResponse +} from "../models"; + +/** Interface representing a CommunicationIdentityOperations. */ +export interface CommunicationIdentityOperations { + /** + * Create a new identity, and optionally, an access token. + * @param options The options parameters. + */ + create( + options?: CommunicationIdentityCreateOptionalParams + ): Promise; + /** + * Delete the identity, revoke all tokens for the identity and delete all associated data. + * @param id Identifier of the identity to be deleted. + * @param options The options parameters. + */ + delete( + id: string, + options?: CommunicationIdentityDeleteOptionalParams + ): Promise; + /** + * Revoke all access tokens for the specific identity. + * @param id Identifier of the identity. + * @param options The options parameters. + */ + revokeAccessTokens( + id: string, + options?: CommunicationIdentityRevokeAccessTokensOptionalParams + ): Promise; + /** + * Exchange an AAD access token of a Teams user for a new Communication Identity access token with a + * matching expiration time. + * @param token AAD access token of a Teams User to acquire a new Communication Identity access token. + * @param options The options parameters. + */ + exchangeTeamsUserAccessToken( + token: string, + options?: CommunicationIdentityExchangeTeamsUserAccessTokenOptionalParams + ): Promise; + /** + * Issue a new token for an identity. + * @param id Identifier of the identity to issue token for. + * @param scopes List of scopes attached to the token. + * @param options The options parameters. + */ + issueAccessToken( + id: string, + scopes: CommunicationIdentityTokenScope[], + options?: CommunicationIdentityIssueAccessTokenOptionalParams + ): Promise; +} diff --git a/sdk/communication/communication-identity/src/generated/src/operationsInterfaces/index.ts b/sdk/communication/communication-identity/src/generated/src/operationsInterfaces/index.ts new file mode 100644 index 000000000000..c0e3fc741e5a --- /dev/null +++ b/sdk/communication/communication-identity/src/generated/src/operationsInterfaces/index.ts @@ -0,0 +1,9 @@ +/* + * 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 "./communicationIdentityOperations"; diff --git a/sdk/communication/communication-identity/src/models.ts b/sdk/communication/communication-identity/src/models.ts index e7174215ef40..bb66002a870c 100644 --- a/sdk/communication/communication-identity/src/models.ts +++ b/sdk/communication/communication-identity/src/models.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { PipelineOptions } from "@azure/core-http"; +import { CommonClientOptions } from "@azure/core-client"; import { CommunicationUserIdentifier } from "@azure/communication-common"; /** @@ -12,7 +12,7 @@ export type TokenScope = "chat" | "voip"; /** * Client options used to configure the CommunicationIdentity API requests. */ -export interface CommunicationIdentityClientOptions extends PipelineOptions {} +export interface CommunicationIdentityClientOptions extends CommonClientOptions {} /** * The access token for a user. diff --git a/sdk/communication/communication-identity/swagger/README.md b/sdk/communication/communication-identity/swagger/README.md index 0a7000128f2f..5b97f16de197 100644 --- a/sdk/communication/communication-identity/swagger/README.md +++ b/sdk/communication/communication-identity/swagger/README.md @@ -18,7 +18,7 @@ model-date-time-as-string: false optional-response-headers: true payload-flattening-threshold: 10 use-extension: - "@autorest/typescript": "6.0.0-dev.20200623.2" + "@autorest/typescript": "6.0.0-beta.15" add-credentials: false azure-arm: false v3: true diff --git a/sdk/communication/communication-identity/test/public/communicationIdentityClient.mocked.spec.ts b/sdk/communication/communication-identity/test/public/communicationIdentityClient.mocked.spec.ts index 0e95acab1025..7d816afdc874 100644 --- a/sdk/communication/communication-identity/test/public/communicationIdentityClient.mocked.spec.ts +++ b/sdk/communication/communication-identity/test/public/communicationIdentityClient.mocked.spec.ts @@ -1,16 +1,16 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { isNode } from "@azure/core-http"; import { CommunicationUserIdentifier, isCommunicationUserIdentifier, } from "@azure/communication-common"; -import { assert } from "chai"; -import sinon from "sinon"; +import { getTokenForTeamsUserHttpClient, getTokenHttpClient } from "./utils/mockHttpClients"; import { CommunicationIdentityClient } from "../../src"; import { TestCommunicationIdentityClient } from "./utils/testCommunicationIdentityClient"; -import { getTokenForTeamsUserHttpClient, getTokenHttpClient } from "./utils/mockHttpClients"; +import { assert } from "chai"; +import { isNode } from "@azure/core-util"; +import sinon from "sinon"; describe("CommunicationIdentityClient [Mocked]", () => { const dateHeader = "x-ms-date"; @@ -58,7 +58,7 @@ describe("CommunicationIdentityClient [Mocked]", () => { sinon.assert.calledOnce(spy); const request = spy.getCall(0).args[0]; - assert.deepEqual(JSON.parse(request.body), { scopes: ["chat"] }); + assert.deepEqual(JSON.parse(request.body as string), { scopes: ["chat"] }); }); it("[getToken] excludes _response from results", async () => { diff --git a/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts b/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts index c805cac567e2..cfa3c42eda93 100644 --- a/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts +++ b/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts @@ -5,15 +5,15 @@ import { CommunicationUserIdentifier, isCommunicationUserIdentifier, } from "@azure/communication-common"; -import { assert } from "chai"; -import { matrix } from "@azure/test-utils"; -import { isPlaybackMode, Recorder } from "@azure-tools/test-recorder"; -import { CommunicationIdentityClient } from "../../src"; +import { Recorder, isPlaybackMode } from "@azure-tools/test-recorder"; import { createRecordedCommunicationIdentityClient, createRecordedCommunicationIdentityClientWithToken, } from "./utils/recordedClient"; +import { CommunicationIdentityClient } from "../../src"; import { Context } from "mocha"; +import { assert } from "chai"; +import { matrix } from "@azure/test-utils"; matrix([[true, false]], async function (useAad) { describe(`CommunicationIdentityClient [Playback/Live]${useAad ? " [AAD]" : ""}`, function () { diff --git a/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts b/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts index eeea6b9c9239..acdf9a851186 100644 --- a/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts +++ b/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts @@ -1,16 +1,16 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { assert } from "chai"; -import { matrix } from "@azure/test-utils"; -import { env, isPlaybackMode, Recorder } from "@azure-tools/test-recorder"; -import { UsernamePasswordCredential } from "@azure/identity"; import { CommunicationAccessToken, CommunicationIdentityClient } from "../../../src"; +import { Recorder, env, isPlaybackMode } from "@azure-tools/test-recorder"; import { createRecordedCommunicationIdentityClient, createRecordedCommunicationIdentityClientWithToken, } from "../utils/recordedClient"; import { Context } from "mocha"; +import { UsernamePasswordCredential } from "@azure/identity"; +import { assert } from "chai"; +import { matrix } from "@azure/test-utils"; matrix([[true, false]], async function (useAad) { describe(`Get Token For Teams User [Playback/Live]${useAad ? " [AAD]" : ""}`, function () { diff --git a/sdk/communication/communication-identity/test/public/utils/mockHttpClients.ts b/sdk/communication/communication-identity/test/public/utils/mockHttpClients.ts index 63b2682af0fd..54c8f799410b 100644 --- a/sdk/communication/communication-identity/test/public/utils/mockHttpClients.ts +++ b/sdk/communication/communication-identity/test/public/utils/mockHttpClients.ts @@ -1,7 +1,12 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { HttpClient, WebResourceLike, HttpOperationResponse, HttpHeaders } from "@azure/core-http"; +import { + HttpClient, + PipelineRequest, + PipelineResponse, + createHttpHeaders, +} from "@azure/core-rest-pipeline"; import { CommunicationAccessToken } from "../../../src"; import { CommunicationIdentityAccessTokenResult } from "../../../src/generated/src/models"; @@ -10,12 +15,12 @@ export const createMockHttpClient = >( parsedBody?: T ): HttpClient => { return { - async sendRequest(httpRequest: WebResourceLike): Promise { + async sendRequest(httpRequest: PipelineRequest): Promise { return { status, - headers: new HttpHeaders(), + headers: createHttpHeaders(), request: httpRequest, - parsedBody, + bodyAsText: JSON.stringify(parsedBody), }; }, }; diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index c099b0e30963..943b46159d8e 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -1,26 +1,19 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { Context } from "mocha"; import * as dotenv from "dotenv"; - +import { ClientSecretCredential, DefaultAzureCredential } from "@azure/identity"; import { - env, Recorder, - record, RecorderEnvironmentSetup, + env, isPlaybackMode, + record, } from "@azure-tools/test-recorder"; -import { - DefaultHttpClient, - HttpClient, - HttpOperationResponse, - isNode, - TokenCredential, - WebResourceLike, -} from "@azure/core-http"; -import { CommunicationIdentityClient, CommunicationIdentityClientOptions } from "../../../src"; -import { ClientSecretCredential, DefaultAzureCredential } from "@azure/identity"; +import { CommunicationIdentityClient } from "../../../src"; +import { Context } from "mocha"; +import { TokenCredential } from "@azure/core-auth"; +import { isNode } from "@azure/core-util"; import { parseConnectionString } from "@azure/communication-common"; if (isNode) { @@ -75,6 +68,11 @@ export const environmentSetup: RecorderEnvironmentSetup = { queryParametersToSkip: [], }; +export function createRecorder(context: Context): Recorder { + const recorder = record(context, environmentSetup); + return recorder; +} + export function createRecordedCommunicationIdentityClient( context: Context ): RecordedClient { @@ -82,9 +80,7 @@ export function createRecordedCommunicationIdentityClient( // casting is a workaround to enable min-max testing return { - client: new CommunicationIdentityClient(env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING, { - httpClient: createTestHttpClient(), - } as CommunicationIdentityClientOptions), + client: new CommunicationIdentityClient(env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING), recorder, }; } @@ -105,12 +101,7 @@ export function createRecordedCommunicationIdentityClientWithToken( }; // casting is a workaround to enable min-max testing - return { - client: new CommunicationIdentityClient(endpoint, credential, { - httpClient: createTestHttpClient(), - } as CommunicationIdentityClientOptions), - recorder, - }; + return { client: new CommunicationIdentityClient(endpoint, credential), recorder }; } if (isNode) { @@ -124,31 +115,5 @@ export function createRecordedCommunicationIdentityClientWithToken( } // casting is a workaround to enable min-max testing - return { - client: new CommunicationIdentityClient(endpoint, credential, { - httpClient: createTestHttpClient(), - } as CommunicationIdentityClientOptions), - recorder, - }; -} - -function createTestHttpClient(): HttpClient { - const customHttpClient = new DefaultHttpClient(); - - const originalSendRequest = customHttpClient.sendRequest; - customHttpClient.sendRequest = async function ( - httpRequest: WebResourceLike - ): Promise { - const requestResponse = await originalSendRequest.apply(this, [httpRequest]); - - console.log( - `MS-CV header for request: ${httpRequest.url} (${ - requestResponse.status - } - ${requestResponse.headers.get("ms-cv")})` - ); - - return requestResponse; - }; - - return customHttpClient; + return { client: new CommunicationIdentityClient(endpoint, credential), recorder }; } diff --git a/sdk/communication/communication-identity/test/public/utils/testCommunicationIdentityClient.ts b/sdk/communication/communication-identity/test/public/utils/testCommunicationIdentityClient.ts index a8447aa03481..789d23f7d9fc 100644 --- a/sdk/communication/communication-identity/test/public/utils/testCommunicationIdentityClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/testCommunicationIdentityClient.ts @@ -1,8 +1,6 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { OperationOptions } from "@azure/core-http"; -import { CommunicationUserIdentifier } from "@azure/communication-common"; import { CommunicationAccessToken, CommunicationIdentityClient, @@ -11,12 +9,14 @@ import { TokenScope, } from "../../../src"; import { - getTokenHttpClient, - createUserHttpClient, - revokeTokensHttpClient, createUserAndTokenHttpClient, + createUserHttpClient, getTokenForTeamsUserHttpClient, + getTokenHttpClient, + revokeTokensHttpClient, } from "./mockHttpClients"; +import { CommunicationUserIdentifier } from "@azure/communication-common"; +import { OperationOptions } from "@azure/core-client"; export class TestCommunicationIdentityClient { private connectionString: string = "endpoint=https://contoso.spool.azure.local;accesskey=banana"; From 5639ee2799238d19024faceda375d6eb601a59a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 16 Feb 2022 11:02:05 +0100 Subject: [PATCH 15/33] removed url shims --- sdk/communication/communication-common/package.json | 1 - .../auth-policy-v2/communicationKeyCredentialPolicy.ts | 1 - .../src/credential/clientArguments.ts | 1 - .../communication-common/src/credential/url.browser.ts | 9 --------- .../communication-common/src/credential/url.ts | 4 ---- 5 files changed, 16 deletions(-) delete mode 100644 sdk/communication/communication-common/src/credential/url.browser.ts delete mode 100644 sdk/communication/communication-common/src/credential/url.ts diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 3e4384006fec..2522571292f0 100644 --- a/sdk/communication/communication-common/package.json +++ b/sdk/communication/communication-common/package.json @@ -8,7 +8,6 @@ "types": "types/communication-common.d.ts", "browser": { "./dist-esm/src/credential/cryptoUtils.js": "./dist-esm/src/credential/cryptoUtils.browser.js", - "./dist-esm/src/credential/url.js": "./dist-esm/src/credential/url.browser.js", "./dist-esm/src/credential/isNode.js": "./dist-esm/src/credential/isNode.browser.js" }, "scripts": { diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts index 9aa8bb01675e..713b293f9127 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts +++ b/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts @@ -9,7 +9,6 @@ import { } from "@azure/core-rest-pipeline"; import { shaHMAC, shaHash } from "../cryptoUtils"; import { KeyCredential } from "@azure/core-auth"; -import { URL } from "../url"; import { isNode } from "../isNode"; /** diff --git a/sdk/communication/communication-common/src/credential/clientArguments.ts b/sdk/communication/communication-common/src/credential/clientArguments.ts index 534740f73812..9db9142d87eb 100644 --- a/sdk/communication/communication-common/src/credential/clientArguments.ts +++ b/sdk/communication/communication-common/src/credential/clientArguments.ts @@ -2,7 +2,6 @@ // Licensed under the MIT license. import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; -import { URL } from "./url"; import { parseConnectionString } from "./connectionString"; const isValidEndpoint = (host: string): boolean => { diff --git a/sdk/communication/communication-common/src/credential/url.browser.ts b/sdk/communication/communication-common/src/credential/url.browser.ts deleted file mode 100644 index a6b3956caf41..000000000000 --- a/sdk/communication/communication-common/src/credential/url.browser.ts +++ /dev/null @@ -1,9 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -/// - -const url = URL; -const urlSearchParams = URLSearchParams; - -export { url as URL, urlSearchParams as URLSearchParams }; diff --git a/sdk/communication/communication-common/src/credential/url.ts b/sdk/communication/communication-common/src/credential/url.ts deleted file mode 100644 index 993e69798f9e..000000000000 --- a/sdk/communication/communication-common/src/credential/url.ts +++ /dev/null @@ -1,4 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -export { URL, URLSearchParams } from "url"; From 569add07c2ba7a82fb76ac677a24ecd4e65ee6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 18 Feb 2022 08:48:46 +0100 Subject: [PATCH 16/33] removed the old policy, bumped major version --- .../communication-common/CHANGELOG.md | 4 +- .../communication-common/package.json | 3 +- .../review/communication-common.api.md | 11 +-- .../communicationAccessKeyCredentialPolicy.ts | 98 ------------------- .../auth-policy-v1/communicationAuthPolicy.ts | 23 ----- .../src/credential/auth-policy-v1/index.ts | 5 - .../src/credential/auth-policy-v2/index.ts | 5 - ...communicationAccessKeyCredentialPolicy.ts} | 12 ++- ...onPolicy.ts => communicationAuthPolicy.ts} | 6 +- .../src/credential/index.ts | 4 +- .../communicationKeyCredentialPolicy.spec.ts | 5 +- 11 files changed, 20 insertions(+), 156 deletions(-) delete mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts delete mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts delete mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts delete mode 100644 sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts rename sdk/communication/communication-common/src/credential/{auth-policy-v2/communicationKeyCredentialPolicy.ts => communicationAccessKeyCredentialPolicy.ts} (83%) rename sdk/communication/communication-common/src/credential/{auth-policy-v2/communicationAuthenticationPolicy.ts => communicationAuthPolicy.ts} (78%) diff --git a/sdk/communication/communication-common/CHANGELOG.md b/sdk/communication/communication-common/CHANGELOG.md index e562c710f1c5..8f22f7ccf99e 100644 --- a/sdk/communication/communication-common/CHANGELOG.md +++ b/sdk/communication/communication-common/CHANGELOG.md @@ -1,11 +1,11 @@ # Release History -## 1.2.0 (Unreleased) +## 2.0.0 (Unreleased) ### Features Added - Optimization added: When the proactive refreshing is enabled and the token refresher fails to provide a token that's not about to expire soon, the subsequent refresh attempts will be scheduled for when the token reaches half of its remaining lifetime until a token with long enough validity (>10 minutes) is obtained. -- Added an authentication policy based on `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the migration from `@azure/core-http`. +- Migrated from using `@azure/core-http` to `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the move. ### Breaking Changes diff --git a/sdk/communication/communication-common/package.json b/sdk/communication/communication-common/package.json index 2522571292f0..b90d0056a6a9 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.2.0", + "version": "2.0.0", "description": "Common package for Azure Communication services.", "sdk-type": "client", "main": "dist/index.js", @@ -64,7 +64,6 @@ "dependencies": { "@azure/abort-controller": "^1.0.0", "@azure/core-auth": "^1.3.0", - "@azure/core-http": "^2.0.0", "@azure/core-rest-pipeline": "^1.3.2", "@azure/core-tracing": "1.0.0-preview.13", "events": "^3.0.0", diff --git a/sdk/communication/communication-common/review/communication-common.api.md b/sdk/communication/communication-common/review/communication-common.api.md index 7821da7a1d64..eb06a0a8b23e 100644 --- a/sdk/communication/communication-common/review/communication-common.api.md +++ b/sdk/communication/communication-common/review/communication-common.api.md @@ -8,7 +8,6 @@ import { AbortSignalLike } from '@azure/abort-controller'; import { AccessToken } from '@azure/core-auth'; import { KeyCredential } from '@azure/core-auth'; import { PipelinePolicy } from '@azure/core-rest-pipeline'; -import { RequestPolicyFactory } from '@azure/core-http'; import { TokenCredential } from '@azure/core-auth'; // @public @@ -53,17 +52,11 @@ export interface CommunicationUserKind extends CommunicationUserIdentifier { kind: "communicationUser"; } -// @public @deprecated -export const createCommunicationAccessKeyCredentialPolicy: (credential: KeyCredential) => RequestPolicyFactory; - // @public -export function createCommunicationAuthenticationPolicy(credential: KeyCredential | TokenCredential): PipelinePolicy; - -// @public @deprecated -export const createCommunicationAuthPolicy: (credential: KeyCredential | TokenCredential) => RequestPolicyFactory; +export function createCommunicationAccessKeyCredentialPolicy(credential: KeyCredential): PipelinePolicy; // @public -export function createCommunicationKeyCredentialPolicy(credential: KeyCredential): PipelinePolicy; +export function createCommunicationAuthPolicy(credential: KeyCredential | TokenCredential): PipelinePolicy; // @public export const deserializeCommunicationIdentifier: (serializedIdentifier: SerializedCommunicationIdentifier) => CommunicationIdentifierKind; diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts deleted file mode 100644 index bf8d31cc04a5..000000000000 --- a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAccessKeyCredentialPolicy.ts +++ /dev/null @@ -1,98 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -import { - BaseRequestPolicy, - HttpOperationResponse, - RequestPolicy, - RequestPolicyFactory, - RequestPolicyOptionsLike, - URLBuilder, - WebResource, - WebResourceLike, - isNode, -} from "@azure/core-http"; -import { shaHMAC, shaHash } from "../cryptoUtils"; -import { KeyCredential } from "@azure/core-auth"; - -/** - * Creates an HTTP pipeline policy to authenticate a request using a `KeyCredential`. - * @hidden - * @deprecated Use `createCommunicationKeyCredentialPolicy` instead. - * - * @param credential - The key credential. - */ -export const createCommunicationAccessKeyCredentialPolicy = ( - credential: KeyCredential -): RequestPolicyFactory => { - return { - create: (nextpolicy: RequestPolicy, options: RequestPolicyOptionsLike) => { - return new CommunicationAccessKeyCredentialPolicy(credential, nextpolicy, options); - }, - }; -}; - -/** - * CommunicationAccessKeyCredentialPolicy provides a means of signing requests made through - * the SmsClient. - */ -class CommunicationAccessKeyCredentialPolicy extends BaseRequestPolicy { - /** - * Initializes a new instance of the CommunicationAccessKeyCredential class - * using a base64 encoded key. - * @param accessKey - The base64 encoded key to be used for signing. - */ - constructor( - private readonly accessKey: KeyCredential, - nextPolicy: RequestPolicy, - options: RequestPolicyOptionsLike - ) { - super(nextPolicy, options); - } - - /** - * Signs a request with the provided access key. - * - * @param webResource - The WebResource to be signed. - */ - private async signRequest(webResource: WebResource): Promise { - const verb = webResource.method.toUpperCase(); - const utcNow = new Date().toUTCString(); - const contentHash = await shaHash(webResource.body || ""); - const dateHeader = "x-ms-date"; - const signedHeaders = `${dateHeader};host;x-ms-content-sha256`; - - const url = URLBuilder.parse(webResource.url); - const query = url.getQuery(); - const urlPathAndQuery = query ? `${url.getPath()}?${query}` : url.getPath(); - const port = url.getPort(); - const hostAndPort = port ? `${url.getHost()}:${port}` : url.getHost(); - - const stringToSign = `${verb}\n${urlPathAndQuery}\n${utcNow};${hostAndPort};${contentHash}`; - const signature = await shaHMAC(this.accessKey.key, stringToSign); - - if (isNode) { - webResource.headers.set("Host", hostAndPort || ""); - } - - webResource.headers.set(dateHeader, utcNow); - webResource.headers.set("x-ms-content-sha256", contentHash); - webResource.headers.set( - "Authorization", - `HMAC-SHA256 SignedHeaders=${signedHeaders}&Signature=${signature}` - ); - - return webResource; - } - - /** - * Signs the request and calls the next policy in the factory. - */ - public async sendRequest(webResource: WebResourceLike): Promise { - if (!webResource) { - throw new Error("webResource cannot be null or undefined"); - } - - return this._nextPolicy.sendRequest(await this.signRequest(webResource)); - } -} diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts deleted file mode 100644 index 583b0e1f11e6..000000000000 --- a/sdk/communication/communication-common/src/credential/auth-policy-v1/communicationAuthPolicy.ts +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; -import { RequestPolicyFactory, bearerTokenAuthenticationPolicy } from "@azure/core-http"; -import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAccessKeyCredentialPolicy"; -/** - * Creates a pipeline policy to authenticate request based - * on the credential passed in. - * @hidden - * @deprecated Use `createCommunicationAuthenticationPolicy` instead. - * - * @param credential - The KeyCredential or TokenCredential. - */ -export const createCommunicationAuthPolicy = ( - credential: KeyCredential | TokenCredential -): RequestPolicyFactory => { - if (isTokenCredential(credential)) { - return bearerTokenAuthenticationPolicy(credential, "https://communication.azure.com//.default"); - } else { - return createCommunicationAccessKeyCredentialPolicy(credential); - } -}; diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts b/sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts deleted file mode 100644 index 43ebc5ea1296..000000000000 --- a/sdk/communication/communication-common/src/credential/auth-policy-v1/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -export * from "./communicationAccessKeyCredentialPolicy"; -export * from "./communicationAuthPolicy"; diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts b/sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts deleted file mode 100644 index 4a1fb6aa3151..000000000000 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT license. - -export * from "./communicationKeyCredentialPolicy"; -export * from "./communicationAuthenticationPolicy"; diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts b/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts similarity index 83% rename from sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts rename to sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts index 713b293f9127..9af67e82cd82 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationKeyCredentialPolicy.ts +++ b/sdk/communication/communication-common/src/credential/communicationAccessKeyCredentialPolicy.ts @@ -7,15 +7,15 @@ import { PipelineResponse, SendRequest, } from "@azure/core-rest-pipeline"; -import { shaHMAC, shaHash } from "../cryptoUtils"; +import { shaHMAC, shaHash } from "./cryptoUtils"; import { KeyCredential } from "@azure/core-auth"; -import { isNode } from "../isNode"; +import { isNode } from "./isNode"; /** * CommunicationKeyCredentialPolicy provides a means of signing requests made through * the SmsClient. */ -const communicationKeyCredentialPolicy = "CommunicationKeyCredentialPolicy"; +const communicationAccessKeyCredentialPolicy = "CommunicationAccessKeyCredentialPolicy"; /** * Creates an HTTP pipeline policy to authenticate a request using a `KeyCredential`. @@ -23,9 +23,11 @@ const communicationKeyCredentialPolicy = "CommunicationKeyCredentialPolicy"; * * @param credential - The key credential. */ -export function createCommunicationKeyCredentialPolicy(credential: KeyCredential): PipelinePolicy { +export function createCommunicationAccessKeyCredentialPolicy( + credential: KeyCredential +): PipelinePolicy { return { - name: communicationKeyCredentialPolicy, + name: communicationAccessKeyCredentialPolicy, async sendRequest(request: PipelineRequest, next: SendRequest): Promise { const verb = request.method.toUpperCase(); const utcNow = new Date().toUTCString(); diff --git a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts b/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts similarity index 78% rename from sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts rename to sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts index 49800e5f64a7..001b7c51afdb 100644 --- a/sdk/communication/communication-common/src/credential/auth-policy-v2/communicationAuthenticationPolicy.ts +++ b/sdk/communication/communication-common/src/credential/communicationAuthPolicy.ts @@ -7,7 +7,7 @@ import { bearerTokenAuthenticationPolicy, } from "@azure/core-rest-pipeline"; import { KeyCredential, TokenCredential, isTokenCredential } from "@azure/core-auth"; -import { createCommunicationKeyCredentialPolicy } from "./communicationKeyCredentialPolicy"; +import { createCommunicationAccessKeyCredentialPolicy } from "./communicationAccessKeyCredentialPolicy"; /** * Creates a pipeline policy to authenticate request based * on the credential passed in. @@ -15,7 +15,7 @@ import { createCommunicationKeyCredentialPolicy } from "./communicationKeyCreden * * @param credential - The KeyCredential or TokenCredential. */ -export function createCommunicationAuthenticationPolicy( +export function createCommunicationAuthPolicy( credential: KeyCredential | TokenCredential ): PipelinePolicy { if (isTokenCredential(credential)) { @@ -25,6 +25,6 @@ export function createCommunicationAuthenticationPolicy( }; return bearerTokenAuthenticationPolicy(policyOptions); } else { - return createCommunicationKeyCredentialPolicy(credential); + return createCommunicationAccessKeyCredentialPolicy(credential); } } diff --git a/sdk/communication/communication-common/src/credential/index.ts b/sdk/communication/communication-common/src/credential/index.ts index 5f4a56c7fd02..b7a7d95e2af3 100644 --- a/sdk/communication/communication-common/src/credential/index.ts +++ b/sdk/communication/communication-common/src/credential/index.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export * from "./auth-policy-v1"; -export * from "./auth-policy-v2"; +export * from "./communicationAccessKeyCredentialPolicy"; +export * from "./communicationAuthPolicy"; export * from "./clientArguments"; export * from "./connectionString"; diff --git a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts index bcfb46e83ca2..63adc38bb170 100644 --- a/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts +++ b/sdk/communication/communication-common/test/communicationKeyCredentialPolicy.spec.ts @@ -10,13 +10,14 @@ import { } from "@azure/core-rest-pipeline"; import { KeyCredential } from "@azure/core-auth"; import { assert } from "chai"; -import { createCommunicationKeyCredentialPolicy } from "../src/credential/auth-policy-v2/communicationKeyCredentialPolicy"; +import { createCommunicationAccessKeyCredentialPolicy } from "../src/credential/communicationAccessKeyCredentialPolicy"; import { isNode } from "../src/credential/isNode"; describe("CommunicationKeyCredentialPolicy", () => { it("signs the request", async () => { const credential = new MockKeyCredential("pw=="); - const communicationKeyCredentialPolicy = createCommunicationKeyCredentialPolicy(credential); + const communicationKeyCredentialPolicy = + createCommunicationAccessKeyCredentialPolicy(credential); const pipelineRequest = createPipelineRequest({ url: "https://example.com" }); From 761d5b8ad9a7f7e6755744582df8d427b5d2c897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Fri, 18 Feb 2022 09:34:23 +0100 Subject: [PATCH 17/33] update pnpm file --- common/config/rush/pnpm-lock.yaml | 433 +++++++++++++++--------------- 1 file changed, 219 insertions(+), 214 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index b72b191a22aa..2a288650e4d8 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -3026,8 +3026,8 @@ packages: peerDependencies: chai: '>= 4.0.0 < 5' dependencies: - chai: 4.3.6 fclone: 1.0.11 + chai: 4.3.6 dev: false /chai-string/1.5.0_chai@4.3.6: @@ -3043,9 +3043,9 @@ packages: engines: {node: '>=4'} dependencies: assertion-error: 1.1.0 - check-error: 1.0.2 deep-eql: 3.0.1 get-func-name: 2.0.0 + check-error: 1.0.2 loupe: 2.3.3 pathval: 1.1.1 type-detect: 4.0.8 @@ -3228,8 +3228,8 @@ packages: engines: {node: '>=10.0.0'} hasBin: true dependencies: - chalk: 4.1.2 date-fns: 2.28.0 + chalk: 4.1.2 lodash: 4.17.21 rxjs: 6.6.7 spawn-command: 0.0.2-1 @@ -3889,7 +3889,6 @@ packages: '@eslint/eslintrc': 0.4.3 '@humanwhocodes/config-array': 0.5.0 ajv: 6.12.6 - chalk: 4.1.2 cross-spawn: 7.0.3 debug: 4.3.3 doctrine: 3.0.0 @@ -3906,6 +3905,7 @@ packages: functional-red-black-tree: 1.0.1 glob-parent: 5.1.2 globals: 13.12.1 + chalk: 4.1.2 ignore: 4.0.6 import-fresh: 3.3.0 imurmurhash: 0.1.4 @@ -5493,7 +5493,6 @@ packages: dependencies: body-parser: 1.19.1 braces: 3.0.2 - chokidar: 3.5.3 colors: 1.4.0 connect: 3.7.0 di: 0.0.1 @@ -5501,6 +5500,7 @@ packages: glob: 7.2.0 graceful-fs: 4.2.9 http-proxy: 1.18.1 + chokidar: 3.5.3 isbinaryfile: 4.0.8 lodash: 4.17.21 log4js: 6.4.1 @@ -5529,7 +5529,6 @@ packages: dependencies: body-parser: 1.19.1 braces: 3.0.2 - chokidar: 3.5.3 colors: 1.4.0 connect: 3.7.0 di: 0.0.1 @@ -5537,6 +5536,7 @@ packages: glob: 7.2.0 graceful-fs: 4.2.9 http-proxy: 1.18.1_debug@4.3.3 + chokidar: 3.5.3 isbinaryfile: 4.0.8 lodash: 4.17.21 log4js: 6.4.1 @@ -5784,8 +5784,8 @@ packages: /md5/2.3.0: resolution: {integrity: sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==} dependencies: - charenc: 0.0.2 crypt: 0.0.2 + charenc: 0.0.2 is-buffer: 1.1.6 dev: false @@ -5942,7 +5942,6 @@ packages: dependencies: ansi-colors: 3.2.3 browser-stdout: 1.3.1 - chokidar: 3.3.0 debug: 3.2.6 diff: 3.5.0 escape-string-regexp: 1.0.5 @@ -5950,6 +5949,7 @@ packages: glob: 7.1.3 growl: 1.10.5 he: 1.2.0 + chokidar: 3.3.0 js-yaml: 3.13.1 log-symbols: 3.0.0 minimatch: 3.0.4 @@ -6154,8 +6154,8 @@ packages: hasBin: true dependencies: ansi-styles: 3.2.1 - chalk: 2.4.2 cross-spawn: 6.0.5 + chalk: 2.4.2 memorystream: 0.3.1 minimatch: 3.0.5 pidtree: 0.3.1 @@ -7350,10 +7350,10 @@ packages: resolution: {integrity: sha512-bdwNOAGuKwPU+qsn0ASxTv+QfkXU+3VmkcDOkt965tes+JQQc8d6SfoLiEiRVhCey4v+ip2IjNUSbZm5nnkI9g==} engines: {node: '>=6'} dependencies: - check-more-types: 2.24.0 debug: 4.1.1 disparity: 3.0.0 folktale: 2.3.2 + check-more-types: 2.24.0 lazy-ass: 1.6.0 strip-ansi: 5.2.0 variable-diff: 1.1.0 @@ -7365,11 +7365,11 @@ packages: hasBin: true dependencies: arg: 4.1.3 - check-more-types: 2.24.0 common-tags: 1.8.0 debug: 4.3.1 escape-quotes: 1.0.2 folktale: 2.3.2 + check-more-types: 2.24.0 is-ci: 2.0.0 jsesc: 2.5.2 lazy-ass: 1.6.0 @@ -7386,10 +7386,10 @@ packages: engines: {node: '>=6'} dependencies: '@bahmutov/data-driven': 1.0.0 - check-more-types: 2.24.0 common-tags: 1.8.0 debug: 4.3.1 has-only: 1.1.1 + check-more-types: 2.24.0 its-name: 1.0.0 lazy-ass: 1.6.0 pluralize: 8.0.0 @@ -8605,16 +8605,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -8648,16 +8648,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -8694,18 +8694,18 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 csv-parse: 5.0.4 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -8736,16 +8736,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -8781,17 +8781,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -8827,17 +8827,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -8878,17 +8878,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -8936,17 +8936,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -12057,8 +12057,8 @@ packages: '@rollup/plugin-multi-entry': 3.0.1_rollup@2.67.1 '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.1 '@types/chai': 4.3.0 - chai: 4.3.6 cross-env: 7.0.3 + chai: 4.3.6 mkdirp: 1.0.4 mocha: 7.2.0 rimraf: 3.0.2 @@ -12534,21 +12534,21 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 buffer: 6.0.3 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 jsrsasign: 10.5.1 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -12578,11 +12578,12 @@ packages: dev: false file:projects/communication-chat.tgz: - resolution: {integrity: sha512-hAsX/useFCAtpCEUcF5W9QJhMk4bKlvJxPZCcQun8gU0CfnNlEAWIIBIimCO0vaEqLBkWT533C/i39l7IvrdjA==, tarball: file:projects/communication-chat.tgz} + resolution: {integrity: sha512-XXaH68U/r5po3SjMZrlzPbno9MYrzSDQD1IhUEV4Bgj5wn44K75/+a+GmHvmsLGJeuARgvVa4RD0hA/DYhTvfQ==, tarball: file:projects/communication-chat.tgz} name: '@rush-temp/communication-chat' version: 0.0.0 dependencies: '@azure-tools/test-recorder': 1.0.2 + '@azure/communication-common': 1.1.0 '@azure/communication-identity': 1.0.0 '@azure/communication-signaling': 1.0.0-beta.12 '@azure/core-tracing': 1.0.0-preview.13 @@ -12592,18 +12593,18 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/uuid': 8.3.4 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -12630,7 +12631,7 @@ packages: dev: false file:projects/communication-common.tgz: - resolution: {integrity: sha512-wOnmTjckWBwZi7PF2QhrMsY051qfW2MDFsLmwlAmiJHEfS2RJ7H4REF8UF8qeLUf3bHVUoK5ts78Fxua1PFjqw==, tarball: file:projects/communication-common.tgz} + resolution: {integrity: sha512-nZ4F/g5+8wwIhLSJRP7ADHcLgPvFZOj4U9w7MdeESveuLhdpiO/RDggXAD5hRo0bFrA5mu8Mj7PeuvBKsHdXYg==, tarball: file:projects/communication-common.tgz} name: '@rush-temp/communication-common' version: 0.0.0 dependencies: @@ -12641,19 +12642,19 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 jwt-decode: 3.1.2 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -12676,29 +12677,30 @@ packages: dev: false file:projects/communication-identity.tgz: - resolution: {integrity: sha512-k9Njp8MUIGI8StYq41q1UgvBbKfNFg1jqJrJ77p48ZxVjdNPEgqbowd33Luq48UA/jOqC6WI5vMnJcRq1byU8A==, tarball: file:projects/communication-identity.tgz} + resolution: {integrity: sha512-3KMUggy9VAdPjj9HyZeyJGz+miv2Hax+7yZPOsr5XUliBy3YKT7FlQoL9kuSEVv0kyed5WaqcwUSrAABI9OJyg==, tarball: file:projects/communication-identity.tgz} name: '@rush-temp/communication-identity' version: 0.0.0 dependencies: '@azure-tools/test-recorder': 1.0.2 + '@azure/communication-common': 1.1.0 '@azure/core-tracing': 1.0.0-preview.13 '@microsoft/api-extractor': 7.19.4 '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -12723,11 +12725,12 @@ packages: dev: false file:projects/communication-network-traversal.tgz: - resolution: {integrity: sha512-bhbCuvM5C95CQmy593VELfk/WK2+DwwVxRDdPN+eU3058xMUglY/yNE1IW/6KBeab/Yi/Id8I/DrKTCUhqQNlg==, tarball: file:projects/communication-network-traversal.tgz} + resolution: {integrity: sha512-cSn4oDnLrG4NKfWEDeps1XaSS5a9qLxDmyHebAsjlFb8MVscBbtPEiysFE3+zDWDaPaD1M6HbHYQNMDWQ0+5/Q==, tarball: file:projects/communication-network-traversal.tgz} name: '@rush-temp/communication-network-traversal' version: 0.0.0 dependencies: '@azure-tools/test-recorder': 1.0.2 + '@azure/communication-common': 1.1.0 '@azure/communication-identity': 1.0.0 '@azure/core-tracing': 1.0.0-preview.13 '@microsoft/api-extractor': 7.19.4 @@ -12740,18 +12743,18 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -12781,29 +12784,30 @@ packages: dev: false file:projects/communication-phone-numbers.tgz: - resolution: {integrity: sha512-0Ss+LuPwQEr+gxKbabczU300w9i+cbNsfp40GlcP59a15TOT+VgNu0ahwGJCvHCvnfTH9WrLPqqdM9SsTuBnmA==, tarball: file:projects/communication-phone-numbers.tgz} + resolution: {integrity: sha512-rRhGCLmHScAXIfu0DlqgtedWANSs00dq58UKw/quDQoboq4bKDUzBq1VEk14P7IeDdryEu3mgWLSkRAtMPwf6A==, tarball: file:projects/communication-phone-numbers.tgz} name: '@rush-temp/communication-phone-numbers' version: 0.0.0 dependencies: '@azure-tools/test-recorder': 1.0.2 + '@azure/communication-common': 1.1.0 '@azure/core-tracing': 1.0.0-preview.13 '@microsoft/api-extractor': 7.19.4 '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -12828,29 +12832,30 @@ packages: dev: false file:projects/communication-short-codes.tgz: - resolution: {integrity: sha512-mgHwx65bgeFi5MCm8V0of6PPpV1JNoJuqMg3A7xwZsBU1lUbl2godPkFuIm4DrckC8lNVGp1PPv9ud0VrmYOfg==, tarball: file:projects/communication-short-codes.tgz} + resolution: {integrity: sha512-XupWjB3VgESRQh1NitFSRM6RtMqOSeQTInfUlcBRkZBQV/YjtCSBstqTWW21RT4yFclbuj90IOqMc1uYdTnwuA==, tarball: file:projects/communication-short-codes.tgz} name: '@rush-temp/communication-short-codes' version: 0.0.0 dependencies: '@azure-tools/test-recorder': 1.0.2 + '@azure/communication-common': 1.1.0 '@azure/core-tracing': 1.0.0-preview.13 '@microsoft/api-extractor': 7.19.4 '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -12875,29 +12880,30 @@ packages: dev: false file:projects/communication-sms.tgz: - resolution: {integrity: sha512-iiXgF0X3LGg2S21TeXLAnj1QGWXhWRgU7PfAvpMpM16rZPpG8WrOwKr1yanelUdz4Jj5+RqtVvGKvIdYHfpXaA==, tarball: file:projects/communication-sms.tgz} + resolution: {integrity: sha512-ZsH9N6H587yOEboYqWjx4YjkqSCjs2cDPbcchzjPZuK6aeBFP2iRs2Wqhcrhi5yVW/TNZksCYmvtEnL76MCwSw==, tarball: file:projects/communication-sms.tgz} name: '@rush-temp/communication-sms' version: 0.0.0 dependencies: '@azure-tools/test-recorder': 1.0.2 + '@azure/communication-common': 1.1.0 '@azure/core-tracing': 1.0.0-preview.13 '@microsoft/api-extractor': 7.19.4 '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -12931,16 +12937,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -12977,18 +12983,18 @@ packages: '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -13024,19 +13030,19 @@ packages: '@rollup/plugin-multi-entry': 3.0.1_rollup@2.67.1 '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.1 '@rollup/plugin-replace': 2.4.2_rollup@2.67.1 - '@types/chai': 4.3.0 '@types/debug': 4.1.7 + '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/ws': 7.4.7 buffer: 6.0.3 - chai: 4.3.6 cross-env: 7.0.3 debug: 4.3.3 downlevel-dts: 0.8.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 jssha: 3.2.0 karma: 6.3.15_debug@4.3.3 karma-chrome-launcher: 3.1.0 @@ -13092,10 +13098,10 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 mocha: 7.2.0 mocha-junit-reporter: 2.0.2_mocha@7.2.0 @@ -13119,17 +13125,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13163,16 +13169,16 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13205,16 +13211,16 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13245,9 +13251,9 @@ packages: '@azure/logger-js': 1.3.2 '@microsoft/api-extractor': 7.19.4 '@opentelemetry/api': 1.0.4 - '@types/chai': 4.3.0 '@types/express': 4.17.13 '@types/glob': 7.2.0 + '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/node-fetch': 2.5.12 @@ -13257,7 +13263,6 @@ packages: '@types/uuid': 8.3.4 '@types/xml2js': 0.4.9 babel-runtime: 6.26.0 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 @@ -13265,11 +13270,12 @@ packages: fetch-mock: 9.11.0_node-fetch@2.6.7 form-data: 4.0.0 glob: 7.2.0 + chai: 4.3.6 karma: 6.3.15 - karma-chai: 0.1.0_chai@4.3.6+karma@6.3.15 - karma-chrome-launcher: 3.1.0 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-firefox-launcher: 1.3.0 + karma-chai: 0.1.0_chai@4.3.6+karma@6.3.15 + karma-chrome-launcher: 3.1.0 karma-mocha: 2.0.1 karma-sourcemap-loader: 0.3.8 mocha: 7.2.0 @@ -13313,15 +13319,15 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13355,15 +13361,15 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 downlevel-dts: 0.8.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13395,20 +13401,20 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/uuid': 8.3.4 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 form-data: 4.0.0 http-proxy-agent: 4.0.1 https-proxy-agent: 5.0.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13441,16 +13447,16 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13481,17 +13487,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13523,18 +13529,18 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/xml2js': 0.4.9 - chai: 4.3.6 cross-env: 7.0.3 downlevel-dts: 0.8.0 eslint: 7.32.0 fast-xml-parser: 4.0.2 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13613,18 +13619,18 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/uuid': 8.3.4 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13660,22 +13666,22 @@ packages: '@rollup/plugin-json': 4.1.0_rollup@2.67.1 '@rollup/plugin-multi-entry': 4.1.0_rollup@2.67.1 '@rollup/plugin-node-resolve': 13.1.3_rollup@2.67.1 - '@types/chai': 4.3.0 - '@types/chai-as-promised': 7.1.4 '@types/concurrently': 6.4.0 '@types/fs-extra': 9.0.13 + '@types/chai': 4.3.0 + '@types/chai-as-promised': 7.1.4 '@types/minimist': 1.2.2 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/prettier': 2.4.3 builtin-modules: 3.2.0 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 - chalk: 4.1.2 concurrently: 6.5.1 dotenv: 8.6.0 eslint: 7.32.0 fs-extra: 10.0.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 + chalk: 4.1.2 minimist: 1.2.5 mocha: 7.2.0 prettier: 2.5.1 @@ -13707,17 +13713,17 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/uuid': 8.3.4 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -13759,17 +13765,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -13804,10 +13810,10 @@ packages: name: '@rush-temp/eslint-plugin-azure-sdk' version: 0.0.0 dependencies: - '@types/chai': 4.3.0 '@types/eslint': 7.2.14 '@types/estree': 0.0.51 '@types/glob': 7.2.0 + '@types/chai': 4.3.0 '@types/json-schema': 7.0.9 '@types/mocha': 7.0.2 '@types/node': 12.20.43 @@ -13815,7 +13821,6 @@ packages: '@typescript-eslint/experimental-utils': 4.19.0_eslint@7.32.0+typescript@4.2.4 '@typescript-eslint/parser': 4.19.0_eslint@7.32.0+typescript@4.2.4 '@typescript-eslint/typescript-estree': 4.19.0_typescript@4.2.4 - chai: 4.3.6 eslint: 7.32.0 eslint-config-prettier: 7.2.0_eslint@7.32.0 eslint-plugin-import: 2.25.4_eslint@7.32.0 @@ -13823,6 +13828,7 @@ packages: eslint-plugin-promise: 4.3.1 eslint-plugin-tsdoc: 0.2.14 glob: 7.2.0 + chai: 4.3.6 json-schema: 0.4.0 mocha: 7.2.0 mocha-junit-reporter: 2.0.2_mocha@7.2.0 @@ -13849,10 +13855,10 @@ packages: '@rollup/plugin-node-resolve': 8.4.0_rollup@2.67.1 '@rollup/plugin-replace': 2.4.2_rollup@2.67.1 '@types/async-lock': 1.1.3 + '@types/debug': 4.1.7 '@types/chai': 4.3.0 '@types/chai-as-promised': 7.1.4 '@types/chai-string': 1.4.2 - '@types/debug': 4.1.7 '@types/long': 4.0.1 '@types/mocha': 7.0.2 '@types/node': 12.20.43 @@ -13860,10 +13866,6 @@ packages: '@types/uuid': 8.3.4 '@types/ws': 7.4.7 buffer: 6.0.3 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 - chai-exclude: 2.1.0_chai@4.3.6 - chai-string: 1.5.0_chai@4.3.6 cross-env: 7.0.3 debug: 4.3.3 dotenv: 8.6.0 @@ -13871,14 +13873,18 @@ packages: eslint: 7.32.0 esm: 3.2.25 https-proxy-agent: 5.0.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 + chai-exclude: 2.1.0_chai@4.3.6 + chai-string: 1.5.0_chai@4.3.6 is-buffer: 2.0.5 jssha: 3.2.0 karma: 6.3.15_debug@4.3.3 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -13912,7 +13918,7 @@ packages: dev: false file:projects/eventgrid.tgz: - resolution: {integrity: sha512-cRipNDlfS0co7HptArkxqp6lbNAffyBqpvSVSDhMe/ZR5cBJs6ywzCsV/QxHhxBpp6Z7p5To9h98IYOOIhMp+A==, tarball: file:projects/eventgrid.tgz} + resolution: {integrity: sha512-5cMNL6d3puoJz7tLWxl1yyAwtd3EI7uAMvn+q3AAyZHJFG7WdS3l7IfCL8i8LD2qvRdpRJxm88jqVsLU3oA+Eg==, tarball: file:projects/eventgrid.tgz} name: '@rush-temp/eventgrid' version: 0.0.0 dependencies: @@ -13926,17 +13932,17 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/uuid': 8.3.4 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -13960,7 +13966,6 @@ packages: - '@swc/wasm' - bufferutil - debug - - encoding - supports-color - utf-8-validate dev: false @@ -13972,15 +13977,12 @@ packages: dependencies: '@azure/storage-blob': 12.8.0 '@microsoft/api-extractor': 7.19.4 + '@types/debug': 4.1.7 '@types/chai': 4.3.0 '@types/chai-as-promised': 7.1.4 '@types/chai-string': 1.4.2 - '@types/debug': 4.1.7 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 - chai-string: 1.5.0_chai@4.3.6 cross-env: 7.0.3 debug: 4.3.3 dotenv: 8.6.0 @@ -13988,13 +13990,16 @@ packages: esm: 3.2.25 events: 3.3.0 guid-typescript: 1.0.9 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 + chai-string: 1.5.0_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15_debug@4.3.3 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -14026,28 +14031,28 @@ packages: '@azure/data-tables': 12.1.2 '@azure/event-hubs': 5.6.0 '@microsoft/api-extractor': 7.19.4 + '@types/debug': 4.1.7 '@types/chai': 4.3.0 '@types/chai-as-promised': 7.1.4 '@types/chai-string': 1.4.2 - '@types/debug': 4.1.7 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 - chai-string: 1.5.0_chai@4.3.6 cross-env: 7.0.3 debug: 4.3.3 dotenv: 8.6.0 eslint: 7.32.0 esm: 3.2.25 guid-typescript: 1.0.9 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 + chai-string: 1.5.0_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15_debug@4.3.3 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -14159,17 +14164,17 @@ packages: '@types/sinon': 9.0.11 '@types/stoppable': 1.1.1 '@types/uuid': 8.3.4 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 jws: 4.0.0 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-env-preprocessor: 0.1.1 + karma-chrome-launcher: 3.1.0 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 karma-mocha-reporter: 2.2.5_karma@6.3.15 @@ -14229,16 +14234,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14275,17 +14280,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14360,11 +14365,11 @@ packages: eslint: 7.32.0 esm: 3.2.25 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14423,11 +14428,11 @@ packages: eslint: 7.32.0 esm: 3.2.25 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14470,11 +14475,11 @@ packages: eslint: 7.32.0 esm: 3.2.25 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14511,17 +14516,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 delay: 4.4.1 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -14558,18 +14563,18 @@ packages: '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14605,18 +14610,18 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/uuid': 8.3.4 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14707,20 +14712,20 @@ packages: '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -14758,19 +14763,19 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 10.0.10 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.4.0 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15225,16 +15230,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15271,16 +15276,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15317,16 +15322,16 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15365,18 +15370,18 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15419,17 +15424,17 @@ packages: '@types/uuid': 8.3.4 avsc: 5.7.3 buffer: 6.0.3 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15469,17 +15474,17 @@ packages: '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15513,18 +15518,18 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15558,10 +15563,10 @@ packages: dependencies: '@azure/core-tracing': 1.0.0-preview.13 '@microsoft/api-extractor': 7.19.4 - '@types/chai': 4.3.0 - '@types/chai-as-promised': 7.1.4 '@types/debug': 4.1.7 '@types/glob': 7.2.0 + '@types/chai': 4.3.0 + '@types/chai-as-promised': 7.1.4 '@types/is-buffer': 2.0.0 '@types/long': 4.0.1 '@types/mocha': 7.0.2 @@ -15569,9 +15574,6 @@ packages: '@types/sinon': 9.0.11 '@types/ws': 7.4.7 buffer: 6.0.3 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 - chai-exclude: 2.1.0_chai@4.3.6 cross-env: 7.0.3 debug: 4.3.3 dotenv: 8.6.0 @@ -15581,14 +15583,17 @@ packages: events: 3.3.0 glob: 7.2.0 https-proxy-agent: 5.0.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 + chai-exclude: 2.1.0_chai@4.3.6 is-buffer: 2.0.5 jssha: 3.2.0 karma: 6.3.15_debug@4.3.3 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -15632,7 +15637,6 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 @@ -15640,13 +15644,14 @@ packages: eslint: 7.32.0 esm: 3.2.25 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15688,7 +15693,6 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/node-fetch': 2.5.12 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 @@ -15696,13 +15700,14 @@ packages: eslint: 7.32.0 esm: 3.2.25 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15742,7 +15747,6 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 @@ -15751,13 +15755,14 @@ packages: esm: 3.2.25 events: 3.3.0 execa: 6.0.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15797,7 +15802,6 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 @@ -15805,13 +15809,14 @@ packages: eslint: 7.32.0 esm: 3.2.25 events: 3.3.0 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15850,19 +15855,19 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 dotenv: 8.6.0 downlevel-dts: 0.8.0 es6-promise: 4.2.8 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15902,20 +15907,20 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 es6-promise: 4.2.8 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -15957,17 +15962,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16011,17 +16016,17 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/uuid': 8.3.4 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16063,17 +16068,17 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16113,17 +16118,17 @@ packages: '@types/chai': 4.3.0 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16179,17 +16184,17 @@ packages: '@types/chai': 4.3.0 '@types/chai-as-promised': 7.1.4 '@types/mocha': 7.0.2 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16224,19 +16229,19 @@ packages: '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 downlevel-dts: 0.8.0 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16280,24 +16285,24 @@ packages: name: '@rush-temp/test-recorder' version: 0.0.0 dependencies: - '@types/chai': 4.3.0 '@types/express': 4.17.13 '@types/fs-extra': 8.1.2 + '@types/chai': 4.3.0 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/uuid': 8.3.4 - chai: 4.3.6 concurrently: 6.5.1 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 express: 4.17.2 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -16329,9 +16334,9 @@ packages: '@types/node-fetch': 2.5.12 eslint: 7.32.0 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-env-preprocessor: 0.1.1 + karma-chrome-launcher: 3.1.0 minimist: 1.2.5 node-fetch: 2.6.7 prettier: 2.5.1 @@ -16361,14 +16366,14 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 + eslint: 7.32.0 chai: 4.3.6 chai-as-promised: 7.1.1_chai@4.3.6 chai-exclude: 2.1.0_chai@4.3.6 - eslint: 7.32.0 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-env-preprocessor: 0.1.1 + karma-chrome-launcher: 3.1.0 mocha: 7.2.0 prettier: 2.5.1 rimraf: 3.0.2 @@ -16391,21 +16396,21 @@ packages: '@azure/storage-queue': 12.7.0 '@types/chai': 4.3.0 '@types/md5': 2.3.1 - '@types/mocha': 7.0.2 '@types/mock-fs': 4.13.1 '@types/mock-require': 2.0.1 + '@types/mocha': 7.0.2 '@types/nise': 1.4.0 '@types/node': 12.20.43 '@types/uuid': 8.3.4 - chai: 4.3.6 dotenv: 8.6.0 eslint: 7.32.0 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16413,10 +16418,10 @@ packages: karma-mocha: 2.0.1 karma-mocha-reporter: 2.2.5_karma@6.3.15 karma-sourcemap-loader: 0.3.8 - mocha: 7.2.0 - mocha-junit-reporter: 2.0.2_mocha@7.2.0 mock-fs: 5.1.2 mock-require: 3.0.3 + mocha: 7.2.0 + mocha-junit-reporter: 2.0.2_mocha@7.2.0 npm-run-all: 4.1.5 nyc: 15.1.0 prettier: 2.5.1 @@ -16444,19 +16449,19 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 azure-iothub: 1.14.6 - chai: 4.3.6 - chai-as-promised: 7.1.1_chai@4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 events: 3.3.0 + chai: 4.3.6 + chai-as-promised: 7.1.1_chai@4.3.6 inherits: 2.0.4 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-junit-reporter: 2.0.1_karma@6.3.15 karma-mocha: 2.0.1 @@ -16485,24 +16490,24 @@ packages: dependencies: '@azure-tools/test-recorder': 1.0.2 '@microsoft/api-extractor': 7.19.4 - '@types/chai': 4.3.0 '@types/express': 4.17.13 '@types/express-serve-static-core': 4.17.28 + '@types/chai': 4.3.0 '@types/jsonwebtoken': 8.5.8 '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 @@ -16542,18 +16547,18 @@ packages: '@types/node': 12.20.43 '@types/sinon': 9.0.11 '@types/ws': 8.2.2 - chai: 4.3.6 cross-env: 7.0.3 dotenv: 8.6.0 eslint: 7.32.0 esm: 3.2.25 + chai: 4.3.6 jsonwebtoken: 8.5.1 karma: 6.3.15 - karma-chrome-launcher: 3.1.0 karma-coverage: 2.1.1 karma-edge-launcher: 0.4.2_karma@6.3.15 karma-env-preprocessor: 0.1.1 karma-firefox-launcher: 1.3.0 + karma-chrome-launcher: 3.1.0 karma-ie-launcher: 1.0.0_karma@6.3.15 karma-json-preprocessor: 0.3.3_karma@6.3.15 karma-json-to-file-reporter: 1.0.1 From e6dd89f066d4d9200c8fe7c4b5d87c27ecb89187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 21 Feb 2022 12:06:20 +0100 Subject: [PATCH 18/33] removed duplicity --- common/config/rush/pnpm-lock.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 0a2dab770a4f..b2bfe8074866 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -16404,7 +16404,6 @@ packages: '@types/mocha': 7.0.2 '@types/node': 12.20.43 '@types/sinon': 9.0.11 - eslint: 7.32.0 chai: 4.3.6 chai-as-promised: 7.1.1_chai@4.3.6 chai-exclude: 2.1.0_chai@4.3.6 From 53a6f30827537e7d642e94928ab2d0027b958803 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 21 Feb 2022 12:42:22 +0100 Subject: [PATCH 19/33] updated to common v2 --- sdk/communication/communication-identity/package.json | 2 +- .../communication-identity/src/communicationIdentityClient.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/communication/communication-identity/package.json b/sdk/communication/communication-identity/package.json index 7c0cd3ba6c46..fdcc83cc9b1a 100644 --- a/sdk/communication/communication-identity/package.json +++ b/sdk/communication/communication-identity/package.json @@ -72,7 +72,7 @@ "prettier": "@azure/eslint-plugin-azure-sdk/prettier.json", "dependencies": { "@azure/abort-controller": "^1.0.0", - "@azure/communication-common": "^1.1.0", + "@azure/communication-common": "^2.0.0", "@azure/core-auth": "^1.3.0", "@azure/core-client": "^1.3.0", "@azure/core-rest-pipeline": "^1.3.0", diff --git a/sdk/communication/communication-identity/src/communicationIdentityClient.ts b/sdk/communication/communication-identity/src/communicationIdentityClient.ts index e5d3a5f40bba..2725239fcc8c 100644 --- a/sdk/communication/communication-identity/src/communicationIdentityClient.ts +++ b/sdk/communication/communication-identity/src/communicationIdentityClient.ts @@ -9,7 +9,7 @@ import { } from "./models"; import { CommunicationUserIdentifier, - createCommunicationAuthenticationPolicy, + createCommunicationAuthPolicy, isKeyCredential, parseClientArguments, } from "@azure/communication-common"; @@ -89,7 +89,7 @@ export class CommunicationIdentityClient { this.client = new IdentityRestClient(url, { endpoint: url, ...internalPipelineOptions }); - const authPolicy = createCommunicationAuthenticationPolicy(credential); + const authPolicy = createCommunicationAuthPolicy(credential); this.client.pipeline.addPolicy(authPolicy); } From f94fb0890ebf5a496e7b69ea30fd790115a31f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 23 Feb 2022 14:52:43 +0100 Subject: [PATCH 20/33] re-recorded tests --- .../communication-identity/package.json | 16 +++++ ...recording_successfully_creates_a_user.json | 10 +-- ..._and_gets_a_token_in_a_single_request.json | 12 ++-- ...successfully_creates_a_user_and_token.json | 14 ++-- ...recording_successfully_deletes_a_user.json | 20 +++--- ...ts_a_token_for_a_user_multiple_scopes.json | 24 +++---- ..._gets_a_token_for_a_user_single_scope.json | 22 +++---- ...ully_revokes_tokens_issued_for_a_user.json | 22 +++---- ...recording_successfully_creates_a_user.json | 16 ++--- ..._and_gets_a_token_in_a_single_request.json | 18 ++--- ...successfully_creates_a_user_and_token.json | 18 ++--- ...recording_successfully_deletes_a_user.json | 26 ++++---- ...ts_a_token_for_a_user_multiple_scopes.json | 28 ++++---- ..._gets_a_token_for_a_user_single_scope.json | 28 ++++---- ...ully_revokes_tokens_issued_for_a_user.json | 28 ++++---- ..._attempting_to_delete_an_invalid_user.json | 16 ++--- ..._to_issue_a_token_for_an_invalid_user.json | 16 ++--- ...g_to_issue_a_token_without_any_scopes.json | 26 ++++---- ...o_revoke_a_token_from_an_invalid_user.json | 16 ++--- ..._attempting_to_delete_an_invalid_user.json | 10 +-- ..._to_issue_a_token_for_an_invalid_user.json | 10 +-- ...g_to_issue_a_token_without_any_scopes.json | 20 +++--- ...o_revoke_a_token_from_an_invalid_user.json | 8 +-- .../recording_successfully_creates_a_user.js | 12 ++-- ...er_and_gets_a_token_in_a_single_request.js | 14 ++-- ...g_successfully_creates_a_user_and_token.js | 14 ++-- .../recording_successfully_deletes_a_user.js | 20 +++--- ...gets_a_token_for_a_user_multiple_scopes.js | 24 +++---- ...ly_gets_a_token_for_a_user_single_scope.js | 24 +++---- ...sfully_revokes_tokens_issued_for_a_user.js | 22 +++---- .../recording_successfully_creates_a_user.js | 36 +++++----- ...er_and_gets_a_token_in_a_single_request.js | 38 +++++------ ...g_successfully_creates_a_user_and_token.js | 40 +++++------ .../recording_successfully_deletes_a_user.js | 44 ++++++------- ...gets_a_token_for_a_user_multiple_scopes.js | 48 +++++++------- ...ly_gets_a_token_for_a_user_single_scope.js | 48 +++++++------- ...sfully_revokes_tokens_issued_for_a_user.js | 46 ++++++------- ...en_attempting_to_delete_an_invalid_user.js | 36 +++++----- ...ng_to_issue_a_token_for_an_invalid_user.js | 36 +++++----- ...ing_to_issue_a_token_without_any_scopes.js | 46 ++++++------- ..._to_revoke_a_token_from_an_invalid_user.js | 36 +++++----- ...en_attempting_to_delete_an_invalid_user.js | 12 ++-- ...ng_to_issue_a_token_for_an_invalid_user.js | 12 ++-- ...ing_to_issue_a_token_without_any_scopes.js | 22 +++---- ..._to_revoke_a_token_from_an_invalid_user.js | 12 ++-- ..._token_for_a_communication_access_token.js | 42 ++++++------ ..._exchange_an_empty_teams_user_aad_token.js | 10 +-- ...xchange_an_expired_teams_user_aad_token.js | 10 +-- ...xchange_an_invalid_teams_user_aad_token.js | 10 +-- ..._token_for_a_communication_access_token.js | 66 +++++++++---------- ..._exchange_an_empty_teams_user_aad_token.js | 34 +++++----- ...xchange_an_expired_teams_user_aad_token.js | 34 +++++----- ...xchange_an_invalid_teams_user_aad_token.js | 34 +++++----- .../src/identityRestClientContext.ts | 2 +- .../communication-identity/swagger/README.md | 3 +- 55 files changed, 664 insertions(+), 647 deletions(-) diff --git a/sdk/communication/communication-identity/package.json b/sdk/communication/communication-identity/package.json index fdcc83cc9b1a..7f2ba0e79e22 100644 --- a/sdk/communication/communication-identity/package.json +++ b/sdk/communication/communication-identity/package.json @@ -36,6 +36,22 @@ "unit-test:node": "mocha -r esm -r ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --full-trace --exclude \"test/**/browser/*.spec.ts\" \"test/**/*.spec.ts\"", "unit-test": "npm run unit-test:node && npm run unit-test:browser" }, + "//metadata": { + "constantPaths": [ + { + "path": "src/generated/identityRestClientContext.ts", + "prefix": "packageDetails" + }, + { + "path": "src/constants.ts", + "prefix": "SDK_VERSION" + }, + { + "path": "swagger/README.md", + "prefix": "package-version" + } + ] + }, "//sampleConfiguration": { "productName": "Azure Communication Services - Identity", "productSlugs": [ diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index 9534dfa48e3e..50a25138c4fe 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -10,17 +10,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:00 GMT", - "ms-cv": "3k7fmHKAJke4dqV/R8uTMg.0", + "date": "Wed, 23 Feb 2022 13:37:12 GMT", + "ms-cv": "SM3FBBp1sU6M/fGLNhtmNA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KOluYQAAAACq6PSlX4dKRJGIxbvJ16ZeUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0iDgWYgAAAADPv00SOZiMS5Ybm1e6sky4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "95ms" + "x-processing-time": "31ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 041e2a32e609..2c1ec21d574f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:50:03.0081466+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:14.5741932+00:00\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:02 GMT", - "ms-cv": "YaD06XJKVk6KNaVr0YZwJQ.0", + "date": "Wed, 23 Feb 2022 13:37:14 GMT", + "ms-cv": "BcNQ4UFRoUKn2oHYGN223g.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KuluYQAAAACzciYFvOe+Q7UANqsZjTvwUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0ijgWYgAAAAA02vk1FxAeQoyCQ6XVbcobUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "174ms" + "x-processing-time": "42ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 009abc656f18..0ed8edc2a3a5 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:50:01.4673188+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:13.359165+00:00\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", - "content-length": "920", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "content-length": "919", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:00 GMT", - "ms-cv": "AEpA0tUvDkqopqbWWXjxXA.0", + "date": "Wed, 23 Feb 2022 13:37:13 GMT", + "ms-cv": "y646RnCTs0WCjUkRv0VvOw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KeluYQAAAAA/nys8cvreQYHQjVSbRRUuUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0iTgWYgAAAADFQHTBO3uVRr8klK458dWbUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "176ms" + "x-processing-time": "39ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index df4efcae8237..3188d9d85a85 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -10,17 +10,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:03 GMT", - "ms-cv": "rh/Dr5JbOkqK0PKcdIyH6g.0", + "date": "Wed, 23 Feb 2022 13:37:15 GMT", + "ms-cv": "85utiNuGKEi8f516HpdDqw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0K+luYQAAAADWedZVzfZSSLxJ2oZ55tbFUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0izgWYgAAAAAvd+yynrkORp/UNdzziJXkUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "98ms" + "x-processing-time": "26ms" } }, { @@ -33,15 +33,15 @@ "status": 204, "response": "", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", - "date": "Tue, 19 Oct 2021 15:50:03 GMT", - "ms-cv": "f9Oj0jcmOU6/v9A85qqM6w.0", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "date": "Wed, 23 Feb 2022 13:37:15 GMT", + "ms-cv": "FAMasSheQk2KpkUSFxsoEg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0LOluYQAAAACd9l1tM2jnRojgpXKiS/puUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0izgWYgAAAADbow6udDCgQ4ToBuT0TL8mUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "185ms" + "x-processing-time": "105ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 30dd0e58da0b..45c9a4beecb9 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -10,17 +10,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:01 GMT", - "ms-cv": "fAjW7dqDSkqQJl2tCjvFOQ.0", + "date": "Wed, 23 Feb 2022 13:37:13 GMT", + "ms-cv": "vcUPUlqZSkG3+QPVwd+nVg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KuluYQAAAAB8eB2DAPJ8SaDsQcOA3tPjUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0iTgWYgAAAAC6SygUzj09SYZbJBp3YZkRUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "95ms" + "x-processing-time": "28ms" } }, { @@ -31,19 +31,19 @@ }, "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:50:02.642183+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:14.3020499+00:00\"}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", - "content-length": "810", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "content-length": "811", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:01 GMT", - "ms-cv": "go069fbotEaN6b5D5iP4Xg.0", + "date": "Wed, 23 Feb 2022 13:37:14 GMT", + "ms-cv": "47Keq+Kt8EeX3qs/wC89Og.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KuluYQAAAABkf4QXJvZ7Q4X17zxbFI1nUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0ijgWYgAAAADmsTOmtTGyQ6IFiG1gVHIZUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "97ms" + "x-processing-time": "34ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index b1274fcb0e18..46185a2d58be 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -10,17 +10,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:00 GMT", - "ms-cv": "3ZlfVKx9YkmRfSAcyMEdbw.0", + "date": "Wed, 23 Feb 2022 13:37:13 GMT", + "ms-cv": "xmk3RWvVW0yCdxI62O6Xbg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KeluYQAAAABTmPyUwVxaQqKQo9Lv6qyDUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0iTgWYgAAAACZX0lfLHvQTYAL7LyjkeIYUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "91ms" + "x-processing-time": "26ms" } }, { @@ -31,19 +31,19 @@ }, "requestBody": "{\"scopes\":[\"chat\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:50:02.0680763+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:13.8363114+00:00\"}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "804", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:01 GMT", - "ms-cv": "vH8lG9MeU0KLeqKXjlZRnw.0", + "date": "Wed, 23 Feb 2022 13:37:13 GMT", + "ms-cv": "L9F3IxFk1EaRk9lgQU6I2g.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KeluYQAAAAAamUB9evvxRLdke2Qe4VGRUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0iTgWYgAAAADaEtAE/d19Q6+iYHNjAdC6UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "102ms" + "x-processing-time": "36ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 6309cfe1f663..1de6f962069d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:50:03.3871981+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:14.8316932+00:00\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:02 GMT", - "ms-cv": "zEB3k8rUCUmlQjaz68H7YA.0", + "date": "Wed, 23 Feb 2022 13:37:14 GMT", + "ms-cv": "QHUXgrFsI0ClKfEBPxlGVQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0K+luYQAAAAC2opjuNVsyTZv1VRDwIYKEUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0ijgWYgAAAACHalTvxVfKTbvmdmkBpcGJUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "173ms" + "x-processing-time": "39ms" } }, { @@ -33,15 +33,15 @@ "status": 204, "response": "", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", - "date": "Tue, 19 Oct 2021 15:50:02 GMT", - "ms-cv": "/N9KL8bOZkOVsRCaiDP9kQ.0", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "date": "Wed, 23 Feb 2022 13:37:15 GMT", + "ms-cv": "SpNV8o3ieECRIRlQeQQCfw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0K+luYQAAAAD8AQr7wQEORadAovfy84pmUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0ijgWYgAAAADLVCURVAgtTKrG/m5QUflhUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "200ms" + "x-processing-time": "241ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index e5f5029a91f2..6196730cbd98 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:52 GMT", + "date": "Wed, 23 Feb 2022 13:37:05 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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,17 +34,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:52 GMT", - "ms-cv": "shqEWTA9kUu9eEaj6euI5w.0", + "date": "Wed, 23 Feb 2022 13:37:06 GMT", + "ms-cv": "MJFpwzXIGECwVHUsF6ao3w.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0IOluYQAAAACnTLW8D7lZR4KTYymoU2SpUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0gTgWYgAAAAC71NWDVm5dRocghAqhXARyUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "86ms" + "x-processing-time": "187ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 0a3b2a12268d..d644a958ce59 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:55 GMT", + "date": "Wed, 23 Feb 2022 13:37: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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:49:56.2932636+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:08.7210697+00:00\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:55 GMT", - "ms-cv": "0Ghhnq5UIkmmOOOGL0H40Q.0", + "date": "Wed, 23 Feb 2022 13:37:08 GMT", + "ms-cv": "H1x5tcaP80KWyHwJen1vmg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0JOluYQAAAABbfH7sWeoTRI+hoMcgvyqpUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hDgWYgAAAABlAAH6Gzq6T45TiFdvaHEVUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "167ms" + "x-processing-time": "37ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index eab63809a1f5..d5a6505a2cd5 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:53 GMT", + "date": "Wed, 23 Feb 2022 13:37: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\"", @@ -20,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:49:54.0943579+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:07.0410602+00:00\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "920", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:53 GMT", - "ms-cv": "cjDSpt5xY0CZdf0STKrr1g.0", + "date": "Wed, 23 Feb 2022 13:37:06 GMT", + "ms-cv": "9TfAnw4UF0OoXSP6o7rCiw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0IeluYQAAAAAH3XC4TfTBT4xy7cXSwsFSUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0gjgWYgAAAADB9Oe1+zH3RIq+SWklEzYaUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "168ms" + "x-processing-time": "35ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 296ba72b165e..48ea40973278 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:57 GMT", + "date": "Wed, 23 Feb 2022 13:37:10 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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - WUS2 ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,17 +34,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:56 GMT", - "ms-cv": "qCXeVUtzWkWt2UqaumCUFA.0", + "date": "Wed, 23 Feb 2022 13:37:10 GMT", + "ms-cv": "7+2j6E2t4066AkCEez9ADg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0JeluYQAAAAD+Yp5YDPv2ToWQtvXZUKhrUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hjgWYgAAAACZ0Nwmgm8aRJTmb/Ipx/ZAUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "88ms" + "x-processing-time": "22ms" } }, { @@ -57,15 +57,15 @@ "status": 204, "response": "", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", - "date": "Tue, 19 Oct 2021 15:49:57 GMT", - "ms-cv": "3i36CQKXn0+/XC7YPZ0aBA.0", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "date": "Wed, 23 Feb 2022 13:37:10 GMT", + "ms-cv": "7YwzIfpW7U2BFnm+32GOlA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0JeluYQAAAACcIr5JZLv7SZNWw4qTnQqqUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hjgWYgAAAAD5X3JYeNnwQ6SDm9SE6F+YUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "200ms" + "x-processing-time": "99ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 15b143ae0a07..bb3b0f2c0966 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:55 GMT", + "date": "Wed, 23 Feb 2022 13:37: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\"", @@ -20,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,17 +34,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:54 GMT", - "ms-cv": "50wds6QSAk6b2C3iuKC+lg.0", + "date": "Wed, 23 Feb 2022 13:37:07 GMT", + "ms-cv": "idMCgo3KN02SRmpbzgD7fQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0I+luYQAAAAAygBngrmCvQI2svCY3EGTgUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0gzgWYgAAAADKsEtEJ8DyRrHMQyv/6PfNUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "84ms" + "x-processing-time": "31ms" } }, { @@ -55,19 +55,19 @@ }, "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:49:55.7499903+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:08.2422458+00:00\"}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "811", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:54 GMT", - "ms-cv": "lu9M3xNZKUSC4QPraFvasw.0", + "date": "Wed, 23 Feb 2022 13:37:08 GMT", + "ms-cv": "L5C2z1FjSkKPhWYDheXEcA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0I+luYQAAAADvo+F/5V48SrWEH4di0u4VUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hDgWYgAAAAAZx04TOdMmSLrSVq28HMDxUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "98ms" + "x-processing-time": "27ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index c93bfec55e24..67e9c7f0cd9b 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:54 GMT", + "date": "Wed, 23 Feb 2022 13:37: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\"", @@ -20,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - EUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,17 +34,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:53 GMT", - "ms-cv": "KtnPBvOUMEe9CqiRBFHWQA.0", + "date": "Wed, 23 Feb 2022 13:37:07 GMT", + "ms-cv": "7581tWIj70iuiZhai/y8gw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0IuluYQAAAADAvPuQz1n9TpTlJO0GZJQdUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0gzgWYgAAAACeDl0fc+T+TpIKvFIBsYz3UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "85ms" + "x-processing-time": "34ms" } }, { @@ -55,19 +55,19 @@ }, "requestBody": "{\"scopes\":[\"chat\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:49:54.9341419+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:07.6802564+00:00\"}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "804", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:54 GMT", - "ms-cv": "7tAjCrcPZkW0+lsBwtIBEA.0", + "date": "Wed, 23 Feb 2022 13:37:07 GMT", + "ms-cv": "0fbsiqLdPEaf+O99XCmivg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0IuluYQAAAAAgeMRa08NtSrNi/adTnwpaUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0gzgWYgAAAADn4BMI01KhTqNsQJTP2+TuUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "103ms" + "x-processing-time": "28ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index a4228c41207f..de75d9210dfe 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:56 GMT", + "date": "Wed, 23 Feb 2022 13:37: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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - WUS2 ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2021-10-20T15:49:56.9283289+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:09.6081555+00:00\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:56 GMT", - "ms-cv": "TCaXHtdBgUCIIOgiDBiPcA.0", + "date": "Wed, 23 Feb 2022 13:37:09 GMT", + "ms-cv": "JSyCvToJ90iKs9Hn8bTOfg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0JOluYQAAAAAsPKbUj0nyQIxkq8TEswX9UFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hDgWYgAAAABMA4CyJ1yFQIbbew1lzqvaUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "167ms" + "x-processing-time": "37ms" } }, { @@ -57,15 +57,15 @@ "status": 204, "response": "", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", - "date": "Tue, 19 Oct 2021 15:49:56 GMT", - "ms-cv": "VKCjQKPEg0K+/Wjx6+y9wA.0", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "date": "Wed, 23 Feb 2022 13:37:10 GMT", + "ms-cv": "uruFix4h3kel4awwljqbsw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0JeluYQAAAAAYVt3EvnQ9SI28kQ8jTiDTUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hTgWYgAAAABh6lLODm61RLKclp1ivjY8UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "159ms" + "x-processing-time": "516ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 5029a1b2a07d..5a941cfb11b1 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:00 GMT", + "date": "Wed, 23 Feb 2022 13:37: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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - NCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,16 +34,16 @@ "status": 401, "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:49:59 GMT", - "ms-cv": "QgpNUvbYWk+7RuSXKYWHHA.0", + "date": "Wed, 23 Feb 2022 13:37:12 GMT", + "ms-cv": "L5n2LrhtWEehip6H88/Jtw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KOluYQAAAADjuMyzDGXCTZ4OyF3mXlUlUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0iDgWYgAAAAA2vLWjYQ0VSYPulz6Eah6yUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "16ms" + "x-processing-time": "15ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 31a34af3499e..25727023a100 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:59 GMT", + "date": "Wed, 23 Feb 2022 13:37: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\"", @@ -20,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - EUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,16 +34,16 @@ "status": 401, "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:49:59 GMT", - "ms-cv": "hDgNL9q2n02R+TxPa9NLyQ.0", + "date": "Wed, 23 Feb 2022 13:37:11 GMT", + "ms-cv": "tjLABNhwmU+J2FEQHeMV9Q.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0J+luYQAAAAAEPbk9pm2KQZa84K2tp7LaUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hzgWYgAAAADZAUWPIR/hSomu3Hmp/Mh8UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "16ms" + "x-processing-time": "13ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 818850964637..4aacfb7ca999 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:58 GMT", + "date": "Wed, 23 Feb 2022 13:37:10 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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - EUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,17 +34,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:49:57 GMT", - "ms-cv": "2afdS6gr0EGNVQGls+puqQ.0", + "date": "Wed, 23 Feb 2022 13:37:11 GMT", + "ms-cv": "Y2w6mQk6qUujXRfyxfOIVg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0JuluYQAAAAASC0Sdgt0wRbtOU79znuwIUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hzgWYgAAAABQu0blUVipSojOH4aP3c1uUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "89ms" + "x-processing-time": "23ms" } }, { @@ -57,16 +57,16 @@ "status": 400, "response": "{\"error\":{\"code\":\"ValidationError\",\"message\":\"Invalid scopes - Scopes field is required.\",\"target\":\"scopes\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:49:58 GMT", - "ms-cv": "8ijor8aMK0K+awlrlVFyBw.0", + "date": "Wed, 23 Feb 2022 13:37:11 GMT", + "ms-cv": "NGjEQ9AiTUedSfUv6/Xn1w.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0JuluYQAAAACKpVzfNcj8T4iDoCq6E+V9UFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0hzgWYgAAAADR9t78LklXRbeRcMnPiSC4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "155ms" + "x-processing-time": "15ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 3e84305670c3..a3132c1155df 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -4,14 +4,14 @@ "method": "POST", "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=azure_client_secret&scope=https%3A%2F%2Fsanitized%2F", + "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", "status": 200, "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", "responseHeaders": { "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:00 GMT", + "date": "Wed, 23 Feb 2022 13:37: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\"", @@ -20,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12108.11 - EUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -34,16 +34,16 @@ "status": 401, "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:49:59 GMT", - "ms-cv": "5rHc0SDWlUacgjMBgz/0VQ.0", + "date": "Wed, 23 Feb 2022 13:37:12 GMT", + "ms-cv": "PKYZfDY6jkC6Uq2AUQsDSA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0KOluYQAAAADQAGYSt6nERbAK41e56wSmUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0iDgWYgAAAACMQ8JnEkwzQZM2RC+0fcW2UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "16ms" + "x-processing-time": "19ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index f5ad7dcf728e..6a85a99f5f1d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -10,16 +10,16 @@ "status": 401, "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:50:04 GMT", - "ms-cv": "VQy68d3IM0KJGtN0szw/pA.0", + "date": "Wed, 23 Feb 2022 13:37:16 GMT", + "ms-cv": "ACJ9ZOJJ40uDciaMYCqLHg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0LeluYQAAAADMfv1CfMGDQriZALZGJHsKUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0jDgWYgAAAACx9tzIp4u7SKTzNtxMpRBpUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "18ms" + "x-processing-time": "17ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 67f8f371b8ad..ae5c4303cd0b 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -10,16 +10,16 @@ "status": 401, "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:50:04 GMT", - "ms-cv": "F9hLXWKaFkyuI0BRM8fK1w.0", + "date": "Wed, 23 Feb 2022 13:37:16 GMT", + "ms-cv": "PFF46YewekiwcIFrQGxhEg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0LeluYQAAAAB7MKqm6qCTRLCLuN1uq9BUUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0jDgWYgAAAAB6dtZ5kCgSSqDDMasDylMMUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "19ms" + "x-processing-time": "18ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index ac9c32cab798..eaf8273f484a 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -10,17 +10,17 @@ "status": 201, "response": "{\"identity\":{\"id\":\"sanitized\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Tue, 19 Oct 2021 15:50:03 GMT", - "ms-cv": "AKQlfyJ0UECLjwi/8QfAnQ.0", + "date": "Wed, 23 Feb 2022 13:37:15 GMT", + "ms-cv": "h9RWjC1zT0SABkEbxa7SHQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0LOluYQAAAACoBBYD307/T6T26IvWgxLAUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0izgWYgAAAACcdcUeWm3KSJsKHd9Bh7ljUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "97ms" + "x-processing-time": "44ms" } }, { @@ -33,16 +33,16 @@ "status": 400, "response": "{\"error\":{\"code\":\"ValidationError\",\"message\":\"Invalid scopes - Scopes field is required.\",\"target\":\"scopes\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:50:04 GMT", - "ms-cv": "9NFf33nFnUOhvsobWCoLZw.0", + "date": "Wed, 23 Feb 2022 13:37:16 GMT", + "ms-cv": "9Dv8ejnINUWPpdkswTMPMQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0LOluYQAAAAAh6Eju1bBRS7sAygz9D9A/UFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0jDgWYgAAAABlOr39d4KpTrmo1DHBjyw3UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "27ms" + "x-processing-time": "18ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 535cb99530ba..1e960fce926f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -10,13 +10,13 @@ "status": 401, "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview", + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Tue, 19 Oct 2021 15:50:04 GMT", - "ms-cv": "2XPKbzc0D0uweXXXzIxgVQ.0", + "date": "Wed, 23 Feb 2022 13:37:16 GMT", + "ms-cv": "ymdt/KjbEkGH64wNAi3kWg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0LeluYQAAAABOTXXIRTiSQ5fvmgS67mlAUFJHMDFFREdFMDcxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0jDgWYgAAAAAmZbjYu70fR53p6d2zJzDBUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", "x-processing-time": "21ms" diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js index 13cf68322ff7..c169e463bfe4 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "fcacb73f267942c3066b7c194d71d659"; +module.exports.hash = "98092662f37a72be0d363af54bb43e9f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,19 +15,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'kDXmUWT3jEyMeW7F8eCz9A.0', + 'J9bwmNRUPUGdwEBMrICuZg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '112ms', + '25ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0GMppYQAAAADaLEFed29fTK/ExzEX8UkGUFJHMDFFREdFMDkwOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dDgWYgAAAAAgqIuPlBQoTbySgnzzSC+0UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:09 GMT' + 'Wed, 23 Feb 2022 13:36:52 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js index bb921a08d76d..dbc90f255617 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js @@ -1,13 +1,13 @@ let nock = require('nock'); -module.exports.hash = "7cee7a0e91dc66f6e8f6361b9e827682"; +module.exports.hash = "7b68286f78f9d89818bad78659b704c4"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2021-10-16T18:36:12.4119158+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:54.3212462+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -15,19 +15,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'xADuPJm1LEKkqR2EIZ1MTw.0', + 'LxdndeLrwU+FsGLhscIriQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '188ms', + '38ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0G8ppYQAAAADWCLaYP/h0R7knzBOZXlIiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0djgWYgAAAABz05JmQQR0R5CH0hbV2K8YUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:12 GMT' + 'Wed, 23 Feb 2022 13:36:54 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js index e4339243a882..f54e844456d1 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js @@ -1,13 +1,13 @@ let nock = require('nock'); -module.exports.hash = "d7eadbc8a968a289583d50074b0f71d2"; +module.exports.hash = "63bcccdf80ee361af3ac1d54e40a2b37"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2021-10-16T18:36:09.6070839+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:53.1838645+00:00"}}, [ 'Content-Length', '920', 'Content-Type', @@ -15,19 +15,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'szES1dMgxUmv0PN4enUCig.0', + 'PeX3CLVg7ke0yYX2IIBfSQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '182ms', + '44ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0GcppYQAAAACwOiPRFaD3SYwB3J0GByJxUFJHMDFFREdFMDcxOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dTgWYgAAAACzwSNK8nsWSLSlpZWoDNlfUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:09 GMT' + 'Wed, 23 Feb 2022 13:36:53 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js index 69bd0ae4da3e..0866559d8007 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js @@ -15,21 +15,21 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'zbsRahYeTkeQoApFjaLo7A.0', + 'Rld8Ov0RCk6FTbZaMVSSNQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '106ms', + '24ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0HcppYQAAAABA+/NOvhZTTL7s+DDK3PnQUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dzgWYgAAAAD3NCuU/jitRLaNVZUzDDbTUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:13 GMT' + 'Wed, 23 Feb 2022 13:36:55 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -39,19 +39,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'IJHJbmDe5EWa7WBiNWdbuQ.0', + '5pJMDyKP00GiqVHFWIkvBg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '173ms', + '148ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0HcppYQAAAAAhDax3DlP1Rosh/6zBtyNtUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dzgWYgAAAAA2GGjHOvVVSJItx5XAuEfUUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:13 GMT' + 'Wed, 23 Feb 2022 13:36:55 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js index 2151f9687bcb..00be96558a8b 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "7109ea8d6ec0bd806a842601669f7996"; +module.exports.hash = "68393c8e48c01060a84fe889ce440464"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,27 +15,27 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'UD2i0BQP7USloRUq6X+coQ.0', + 'rpvzvL4DrkSXLailU1FtqA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '98ms', + '29ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0GsppYQAAAAAusNstrZjyQ7nW68SAqHZ6UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dTgWYgAAAACTeuXWTQtRT6ppBw4wr6IjUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:10 GMT' + 'Wed, 23 Feb 2022 13:36:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2021-10-16T18:36:11.4449862+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:54.0930884+00:00"}, [ 'Content-Length', '811', 'Content-Type', @@ -43,19 +43,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'g14mPTB0+EycfwdTfe89Ow.0', + 'XZus635+nUSWFqG7X1VXoQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '111ms', + '34ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0G8ppYQAAAACJfn2+UxuuTI3EimD356wiUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dTgWYgAAAAAj9d2I3hp4QZzEisewEnGyUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:11 GMT' + 'Wed, 23 Feb 2022 13:36:54 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js index 0868102df8c4..e84ecf1a3c59 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "1d0172b0809683a9bb1931e1b3295bef"; +module.exports.hash = "1207564db272a586026ace7fa4fb0f37"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,27 +15,27 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'w45YgyndDEOlqYC3VEZCNA.0', + 'XHKiSHsRSUavc96YDv8OYg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '105ms', + '28ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0GcppYQAAAABXt/z8f924SZ63FTcijyGQUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dTgWYgAAAACp6zTMnXeTQ4v23MAbEMi4UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:10 GMT' + 'Wed, 23 Feb 2022 13:36:53 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2021-10-16T18:36:10.7837509+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:53.6359191+00:00"}, [ 'Content-Length', '804', 'Content-Type', @@ -43,19 +43,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'T069klKJWUmwnMrexGUXfg.0', + 'fbSjSSoNtE2HZ3Jpye9yQg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '109ms', + '34ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0GsppYQAAAAAJhGnh1iIIS580JqXUUP6SUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dTgWYgAAAADlzOZAChyzS7eOncA4RJ4DUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:10 GMT' + 'Wed, 23 Feb 2022 13:36:53 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js index a5f72fc9c09e..229844035dfd 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js @@ -7,7 +7,7 @@ module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2021-10-16T18:36:12.8639829+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:54.5488012+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -15,21 +15,21 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'a7VwO2KV0EuGDplLnXZa0g.0', + 'j+hEhuNZEUKXDl+hfIuCkw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '192ms', + '41ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0HMppYQAAAAAqof0PoCYZQrJL8sCY12hXUFJHMDFFREdFMDYxNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0djgWYgAAAAAVL+ma16v+Sa16Uv+/8CDfUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:12 GMT' + 'Wed, 23 Feb 2022 13:36:54 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -39,19 +39,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'ev1vZ5mIZUC9BSXJDo636g.0', + 'rynVq4FdAki5zfBYxYj0ww.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '173ms', + '171ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0HMppYQAAAAAS2CBnPu07RawVGXOIQh2wUFJHMDFFREdFMDYxNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0djgWYgAAAAAfYB4f5JWgT7zcvWncCySDUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:12 GMT' + 'Wed, 23 Feb 2022 13:36:54 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js index 4330bfe38d89..76fa71e3dab9 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "fcacb73f267942c3066b7c194d71d659"; +module.exports.hash = "98092662f37a72be0d363af54bb43e9f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - WEULR1 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AlUspz_OTT9GvU6O_6_c2U4; expires=Sun, 14-Nov-2021 18:35:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AvC50LyzctRCiQsWpVe12MU; expires=Fri, 25-Mar-2022 13:36:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrkarTqpuwrLr6vrSRg44-9C-Cf_mdnAwW_sbirkYKbNgX4Mc1r6NXooB4fT-1v6ykqdMxDwyCu9UlcLuU2eZy0dts8-qTEp8bsQ8fa6ZCGMaK-7qboLmDJQTAXlSWbfTNYiqnM-ejDwEcRUQS7QJxN19d2W0AHdL1gUUxgYEapPsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxkZx_DwZhiHRCSJcOiPt5hnOESDqyk8bJ0V4I9QxZ9FYnj0Dl6d2zvOL9Fq5-akeHND12zoToI4pX7Eshut974HlKI6RwG4eRYfQ8x22pdvoBypadN42sPJDQMMiCRNarQgsW32QyyD6vRXjZvpFDX78zJqg-OxirepGjgROLnggAA; 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, 15 Oct 2021 18:35:53 GMT', + 'Wed, 23 Feb 2022 13:36:43 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AnEJS6FqwZxJpYPnva1Zkfg; expires=Sun, 14-Nov-2021 18:35:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ar92uTYMWCxJvQLcNwV29aU; expires=Fri, 25-Mar-2022 13:36:43 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZs-Mgb-btjiE4OdA1oi1VvQgM11SxDZDYN-PRfemyTHKynHgGz1uvNmesgSqCZI0ORFSBmnOOucIJO6MMag4AnRPUU7jPKOfrCxf8MgVBmEk9kncLOOG6idnuExVS7QNODOpN6AsMkcO2PaxTqjuA8QZrnA3qIfT3mhPL7zpmKQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrL0NTH_xUbJsQ_cD3Yus7IYNNFqNwpstNU1wnyC1ByxKkYQJom0RETEUnOQrdiNVOzqA6IKUhcsAq8plsXoscot62TpkNzFWgT9XJ-HipeRlJhGc-ydrNSlDMEaurl8nQLGQphmO03Y2mNf98_ERQ_nFY6nzyQUtsdmL_xpWm2RogAA; 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, 15 Oct 2021 18:35:53 GMT', + 'Wed, 23 Feb 2022 13:36:43 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NCUS ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ag-YE21nFxtFqo9OYde6IfAo7iuqAQAAAArB-9gOAAAA; expires=Sun, 14-Nov-2021 18:35:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlyICirVDRpNqe4Es6z1DkQo7iuqAQAAAGsvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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', - 'Fri, 15 Oct 2021 18:35:54 GMT', + 'Wed, 23 Feb 2022 13:36:43 GMT', 'Content-Length', '1327' ]); @@ -121,19 +121,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Yiq0PsQpmkOeWm2TBX2Qxw.0', + 'sn53mXfmJ06KbU5ZfZP4tA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '270ms', + '83ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0CsppYQAAAAB7oL/u2dpzQINzTJigRv2kUFJHMDFFREdFMDkwOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0bDgWYgAAAABXqheiBr/3QIwY8o4JIwdLUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:35:54 GMT' + 'Wed, 23 Feb 2022 13:36:44 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js index 838fa2732770..6b3ebbbbab22 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "7cee7a0e91dc66f6e8f6361b9e827682"; +module.exports.hash = "7b68286f78f9d89818bad78659b704c4"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AkmWR9wQf41NgpEx-BGuIr0; expires=Sun, 14-Nov-2021 18:35:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AshUBgAlcUVMlVNBuDdo8WU; expires=Fri, 25-Mar-2022 13:36:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZr9zdFedCfgdJRphFRrJwgNRPkLssijPUluPUuAx_f7qzrr4Au49twNwFnBszc2OBQQnUTr0igdd7TEVLea6Rp6hrayVT-Xz_MNatkrEr-d-XL9aik_URMUxO3qaVn6YQSSO1xalC_Xo60uAUma4oMO85nFIILu-Hu48MtSUbUIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWgc1OcgnvE6UE3Q3FVbhHAEm52gtlKm0ky3d8KG-F75xQdvDMyxGf0EkwjctH8aP3WiYicId488Rst1w1xYCD3S3LTMBLnF6-5RL0d_pcnU1O1OlnsHmLbLJkYPzASDn2p7dc6FkGDjWfdkqO_S6dbc4PiByBsyNfi5tjQRXEnggAA; 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, 15 Oct 2021 18:35:59 GMT', + 'Wed, 23 Feb 2022 13:36:46 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AhwMaO64MjVPtQ97B44BzCM; expires=Sun, 14-Nov-2021 18:35:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=At8UaIcALt9KlVRgLj38T1A; expires=Fri, 25-Mar-2022 13:36:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_beZHHFCKMnQSq85V-DyAWFlMxCzfnDrtga6nibn3DvJZxk1RK79idlSL_o9OqIgFWxttpQ5Uv6VM6iS2EcJ9LgCTyftHPQgt24myPc03dbV_DfsaPdxgW84XvG1efCPfTQ1C6AcEsxj104esrVABIJkrmMKUrHWLunOCAVsWswgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdvVOBAmnEznk6-py5S2lrR6EFhskCQqQV7hilgpXf5hhgcSUQbGnkH3WyQJG7q88FZWO_Mb6Wtw8bnh2dZCA8DzopuGkyZiIVqRcoGWAQuMz_9HWmRwt7QHkL9GxfWV9ypc4Mk9FdmWf7r7bC5X_koWLLG3bJkaYPAPetWpgUHggAA; 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, 15 Oct 2021 18:35:59 GMT', + 'Wed, 23 Feb 2022 13:36:46 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AtWEwgOwMYNAgK59_O7iLGI; expires=Sun, 14-Nov-2021 18:36:00 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoZ43j4lPvZCoNz8TLzFh5Qo7iuqAQAAAG4vqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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', - 'Fri, 15 Oct 2021 18:35:59 GMT', + 'Wed, 23 Feb 2022 13:36:47 GMT', 'Content-Length', '1327' ]); @@ -113,7 +113,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2021-10-16T18:36:01.1600993+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:47.8030109+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -121,19 +121,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'uicIr7Lc+0qos1MULA7vZg.0', + 'On1OG40rqEavavNmm0NnOQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '299ms', + '35ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0EMppYQAAAADn4Ncs5hS7S7NqOydahEsHUFJHMDFFREdFMDkwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0bzgWYgAAAAD0Z4sMktkbRKyBuURuyvVyUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:01 GMT' + 'Wed, 23 Feb 2022 13:36:47 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js index 8b8251453fc9..03c0410dd748 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "d7eadbc8a968a289583d50074b0f71d2"; +module.exports.hash = "63bcccdf80ee361af3ac1d54e40a2b37"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AmHyN3lgcl5PmeSio-F0uPw; expires=Sun, 14-Nov-2021 18:35:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Akqy9wx_7mJNlDGUGpzq1ro; expires=Fri, 25-Mar-2022 13:36:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2iKMIBqU6XbKVnQUV9Fe8DSPDwv11jHOwfDIscGIFRvIUn8RZ2pmifyrdQB5HE1Lc2IllYmaMk4P7lyifC-YLzJxqPVa46f5OLWX0sy29ASPUO8ON4I6Jf9FR1Vsc1nHGDAP6NR72NJSzci7xpM4VUbwHWxJVgfug_jSEYqE6AggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrA0YwOURgoXBdb-7LXn7_Hg3B3ZJUQgqxLN2lKq_2YgiesbSgqHuTB5Zqy3RjG2qbNRSoTbmlTqiymojLlE3vpAYSXKoa-bx3ZPDKBVXTorJrfTT0TiH-jygqeKkDnQnu5qeEOGICvIQ4pOYnU48dJYFFj8FRK2oz_g13HucmKZQgAA; 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, 15 Oct 2021 18:35:55 GMT', + 'Wed, 23 Feb 2022 13:36:44 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=Aja86jSt-spBrj39UAkOaqQ; expires=Sun, 14-Nov-2021 18:35:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AvCTAzaI8HxIpDWcdEMOg0w; expires=Fri, 25-Mar-2022 13:36:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr89iUvnsDpZ0NKLHUGW9078yn20VxSIfdJpmlWsouPo0jxfrRlR5va2kAXNnybAWkWYM9fpeO9zb_Hain_CbZ9UJYSk-nifAzmKTFLzyuDjf7AkT6pXQMMhy0kIUemUBtggaBmMbltP-dl88kRvXOuYg2ynxgcCZwYvW3-ZOrrs4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrll-JlvI4CSxBhmEOKfLwyPMYAhbpc-43bjGgBPfvrq1tXFsvTbDLH8F-Q8tRik86YVZzO_zDLz-dXbFUB1BcdRi6h9guq-oYY6xqx1o8lI6f5fctUCQXFFhq8QURLBoImsUWaYUZUr_0_BVq1Ae_sMha1292K_sjJ_LwrgENkEIgAA; 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, 15 Oct 2021 18:35:55 GMT', + 'Wed, 23 Feb 2022 13:36:44 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AhjjcQG90KVHuqejnpvTSEgo7iuqAQAAAAvB-9gOAAAA; expires=Sun, 14-Nov-2021 18:35:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtTwkxi_M3hGnlumCW8FNkwo7iuqAQAAAGwvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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', - 'Fri, 15 Oct 2021 18:35:55 GMT', + 'Wed, 23 Feb 2022 13:36:44 GMT', 'Content-Length', '1327' ]); @@ -113,27 +113,27 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2021-10-16T18:35:56.524298+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:45.3983764+00:00"}}, [ 'Content-Length', - '919', + '920', 'Content-Type', 'application/json; charset=utf-8', 'Request-Context', 'appId=', 'MS-CV', - 'EJ0NTxav5EWy7RXHurNfdw.0', + 'EgYSeIKgFU6pSKRVj5zttg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '373ms', + '38ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0DMppYQAAAAAhXMmOoHwmSJIc+omrTIdvUFJHMDFFREdFMDcxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0bTgWYgAAAACShEQCzpTbS7CVqW4wnfhpUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:35:56 GMT' + 'Wed, 23 Feb 2022 13:36:45 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js index 36be2b4081cf..7a1ea12ef815 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - WEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=ApcjFR4TmS1PoaNfTcWtzcQ; expires=Sun, 14-Nov-2021 18:36:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aic3SVsFTcNNmVY9oToWS_M; expires=Fri, 25-Mar-2022 13:36:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr15a0F-RLIK0IPYwqwyv0DOsAr5nCh5_u-plQ6lfsL6C7UHs8BS_CIj_cMrcPwZAihZQOOHvu30VC-f4oe4yQNwnILgZv2iwC1E-atq7RLSECreRl2zndTdggF9lXfNrTrClFngQuQ9doZZ6LfopBnY8KzWSosnTBFXYpEZp2o0IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7z2sIC0byMQe1wop7Hx3QgUPoiHFzOCG8TNboDLqwKkqVOlEkV9SoA_9N8aXgxvFz6wTBeYon8G18qt_QOk_cY6MP1ctcBccEEoOnP9hJP7Uo5FCNG2Q3gDOTIiuhM5SphVWxTGH7iTPY5ixt751Tru0ziWuWu0W_P5ZezR2tCUgAA; 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, 15 Oct 2021 18:36:02 GMT', + 'Wed, 23 Feb 2022 13:36:48 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - EUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=Au4w9jeW_v1MsJcvNp23wAk; expires=Sun, 14-Nov-2021 18:36:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhOnp7cIUflInWo-mgbslYA; expires=Fri, 25-Mar-2022 13:36:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcT_bISj1RzBqZ9xXbeaGifn7jxwWPpTeYtL-r5mLZ9-Dq9oXsIL40-mq7iCO3G7JrxMEn9EyCdGn2B_xmO5aDF07vdU4amfEGb-x2WGHAwijS4PNsabe6E8hvdi_RTjpvG_F1Xo7oNFTsmO5a_CNU2r4_ff6U_bcxs8YjnO05H0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrpbqk6CakKnKDuwHB4Pr-a2jMPOHQ9pX16IEfS43cipfc44mQ_81h-tzcIHMtDcDhgx69Axn4Ke03wktvY_c5ofU_XWDvFo3LVtClPJi42PcP9hgzrAQF5HNBo8jCt_cgxeERfLaWaPCW_2fVRLiKbzUru-e7UNgbKmBPKR6LC90gAA; 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, 15 Oct 2021 18:36:03 GMT', + 'Wed, 23 Feb 2022 13:36:48 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - WUS2 ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ArkRYVaSY_dEmBQWXAs0y68; expires=Sun, 14-Nov-2021 18:36:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlrktRRYApxBvvgPVzj8PPco7iuqAQAAAHEvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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', - 'Fri, 15 Oct 2021 18:36:03 GMT', + 'Wed, 23 Feb 2022 13:36:49 GMT', 'Content-Length', '1327' ]); @@ -121,21 +121,21 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'zfDLZfi32k+/CVmiLp65Dw.0', + '++NqE5PCRkWJW12Df9WT/w.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '90ms', + '21ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0E8ppYQAAAADwQhpS8kWdQ4xj+JfNDlR2UFJHMDFFREdFMDYwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0cTgWYgAAAAACaW1ema1AQIHma12smy25UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:04 GMT' + 'Wed, 23 Feb 2022 13:36:49 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -145,19 +145,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '4Nkw/2ICv06xvDJ16GEqqw.0', + 'QBEEy5VwEkOmyDPyhHdEPA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '250ms', + '147ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0FMppYQAAAABAlMq2K+J0Qr+osSH1ISj3UFJHMDFFREdFMDYwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0cTgWYgAAAABLOavT+AEIS6ff50LYghzfUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:04 GMT' + 'Wed, 23 Feb 2022 13:36:50 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js index c39df0475f9b..ea45f757528f 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "7109ea8d6ec0bd806a842601669f7996"; +module.exports.hash = "68393c8e48c01060a84fe889ce440464"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=ApRbjD4YnctHp20deRdgYUA; expires=Sun, 14-Nov-2021 18:35:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ary6sg0teo9DjIq_V5FEln0; expires=Fri, 25-Mar-2022 13:36:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrqh1O5Iz6EsD_JFw0Lid1OrzfDybVNUipF7iHxCkcLmqItOob8-38Nnvi6YXOPtz8LD4Qmustcv94_cuE3tjZEz-GylpQ2QgCNqguxjs9UhK1_EyvOrZHd1CO9nPcB_sLQ8zcdPlJ2m0aPtRNEvYRPkTh0xdb0Vpky9L5a8UzhnEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-q63QHZ4-a7tmH__0MQTs_4bSmWpToqHosC8Jl7vKse1wvMe3e3wwiUHQY0IaalzKrVezJ3rRmcF6yTsrpl2F_8lg4a__59Rl-Gdl0iP38yrz9pIb2z-o0gPiHdaYOwLcJmug_9-UkyASAZ9c0d0iQrbONYp_wlEUIde65dYvIcgAA; 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, 15 Oct 2021 18:35:58 GMT', + 'Wed, 23 Feb 2022 13:36:45 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - SCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AmtB_Bz4IjhJvoaMu7_z4IE; expires=Sun, 14-Nov-2021 18:35:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AiEYsSnnkEtBmxklBYs6ILw; expires=Fri, 25-Mar-2022 13:36:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrCxVPUDMAkEDYGBJIFFQqjfjHjQmhNIdSUxV1N4pA5Ho0Y_iqQh2XR2Vp1uZVWZ4AHxg3GAVBVJBvvI8cF7IiTal0ZhTuZmHhOe0gCUmQvLpUmAwmNeAb1DLUB-Xk2tAS_zuKqenpRoJo4na_HLRg6nNr0kP0uesNL2pueJqyPwkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4Ojeei824KEVwT0iNY0A4hN7NEIf9hZs3vEs-qmDdQ3rgV-sk2M-G0fYMM5lGcavJ_hSucUnHmkeIqhBJeoBOG_DYAFsQXFFcehBSnZGcSKTy9FAC2V7WgkYzagThufUfs8KpP6RoU4raQUhl73be0dn_XkWl-iK0-BDK0KlzdggAA; 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, 15 Oct 2021 18:35:58 GMT', + 'Wed, 23 Feb 2022 13:36:46 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - SCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ap6VvaVWf01Dn1n64JveHpso7iuqAQAAAA7B-9gOAAAA; expires=Sun, 14-Nov-2021 18:35:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AubUS2MRarNJjNIdPHPSiYo; expires=Fri, 25-Mar-2022 13:36: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', - 'Fri, 15 Oct 2021 18:35:58 GMT', + 'Wed, 23 Feb 2022 13:36:46 GMT', 'Content-Length', '1327' ]); @@ -121,27 +121,27 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'c/QWCHjABUeqGCGeHbXCiw.0', + 'OncWKXezhUuDBTs572G5YQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '91ms', + '21ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0DsppYQAAAAAVLAQYiVc6Rbly1iO34Ca/UFJHMDFFREdFMDYwOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0bjgWYgAAAADzMTtTOifJSr6QRdXTJve9UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:35:58 GMT' + 'Wed, 23 Feb 2022 13:36:46 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2021-10-16T18:35:59.7063416+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:47.1190033+00:00"}, [ 'Content-Length', '811', 'Content-Type', @@ -149,19 +149,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'jEY7C0UyC0ONJpiGEpz7AQ.0', + '4KeVioEWzky9gT5cC4m8JQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '102ms', + '34ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0D8ppYQAAAADVfcMaBV2lTLehnAzISYZbUFJHMDFFREdFMDYwOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0bzgWYgAAAABhpgUD0xbQR5a/X5FfHr3AUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:35:58 GMT' + 'Wed, 23 Feb 2022 13:36:47 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js index cfa681e780e6..a0ec1fe2ad8c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "1d0172b0809683a9bb1931e1b3295bef"; +module.exports.hash = "1207564db272a586026ace7fa4fb0f37"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NEULR1 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AtavuRtukndFn7mUTUQ1pyY; expires=Sun, 14-Nov-2021 18:35:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnkEgmE3MdFImjKEiCaP9aw; expires=Fri, 25-Mar-2022 13:36:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLetQ2znmDi7GQ_S8fU9fnguWoKyK7nXiFbSFcsxhY4Wd_-ujdSBCwRyWchx2ca_dEgcB6Nt94ePgKTHnVonhWgLEaQpHPFxb_RokHJuDIvj-_-JWIdBIOQZv6hst0LPyApwUg2Yr14xJmcis4Pd7UfZmVv-AOjdZKewMNhpO2WUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZOzlj3ZAiX8He2rq6rqxGUZg-emRws1jhmclWSbI8pMu1c4ff2gvztZXMGsPQbpB2E-vm8qU8n7C19qNLc6Yg0STMRUtmsQJHJMFuMXI04SeJq4bEOUY9xD8e4FPmNSXty64mMPC3dAhYbMEGJ8aJtNk6Dd2yC5RPQAxTqo_PO4gAA; 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, 15 Oct 2021 18:35:56 GMT', + 'Wed, 23 Feb 2022 13:36:45 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AkWM4yq6VwtNh4wGwDVEVL0; expires=Sun, 14-Nov-2021 18:35:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjO0okY0Id5OnABiT0OGF5Y; expires=Fri, 25-Mar-2022 13:36:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_-tP1b6TSF3Va7B6dnpb7FApdEk0SGROgJxWJHFH7zXmG7XLfR3-cJOwpu00U4XWyCCmSCtDNmIkJLkFUEnOGhopV5dOgeGNiyQOvHexqhvirFt5XeGC9HeHecNoZOoIXVqgcKMqX3DvI2sRjtzmiFvkD9Aj-7CfB_3ZebXrjekgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8TRGtajcXwur_d8TzhWjhbSQZQfWR4wNZ4Xog6NtLCiy0kmMnK66h0AgxNBtmul5HJow2zyFMp8dLyULX4kn3mNj8vxWZmxpx4JjcCTT9Z7-hP_PxD8QTGtag-5KAEibZXpIm6FIgcOOn_ROJs2lQrEY07ql7zpfGJl3OFIROCcgAA; 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, 15 Oct 2021 18:35:56 GMT', + 'Wed, 23 Feb 2022 13:36:45 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AsReNkR7Q6ZFjadKAbfNEOoo7iuqAQAAAAzB-9gOAAAA; expires=Sun, 14-Nov-2021 18:35:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ak5kNM3mJkpCrzD0tWdEuQwo7iuqAQAAAG0vqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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', - 'Fri, 15 Oct 2021 18:35:56 GMT', + 'Wed, 23 Feb 2022 13:36:45 GMT', 'Content-Length', '1327' ]); @@ -121,27 +121,27 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'QJusUMQJZkOBXqiAGEnLpA.0', + '2GCJActSHkyhGVHssRnMTQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '96ms', + '21ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0DcppYQAAAACUwpMeg+MyRLSfUm89I651UFJHMDFFREdFMDkxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0bTgWYgAAAAADoVD+UF8QRp5cvPKYyNM+UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:35:57 GMT' + 'Wed, 23 Feb 2022 13:36:46 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2021-10-16T18:35:58.1079676+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:46.2276099+00:00"}, [ 'Content-Length', '804', 'Content-Type', @@ -149,19 +149,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'nIigxbi3ekCLqMrz/TbMAQ.0', + 'KaXNK4ClWkuUY7KaH2qhww.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '99ms', + '29ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0DcppYQAAAAAuwYY+QGvMSLTxLv4Z7gBQUFJHMDFFREdFMDkxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0bjgWYgAAAAAuzVpEiBiHTIH35Y0FFnzlUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:35:57 GMT' + 'Wed, 23 Feb 2022 13:36:46 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js index b760bf8edfb3..1ee004b5eb15 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=Aro1fQraqfFGs4VmokYTCbs; expires=Sun, 14-Nov-2021 18:36:01 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AvqhW8vn6LhMhnEZWKwcHdY; expires=Fri, 25-Mar-2022 13:36:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsNTi_S9Cu9Sct07sWmw9MNKtF4NJYHgLId3PxkDeAGTMWn6x8ZRksp8JsXs3G9q7fzPhXaX0nYHmWwoMvwvOrLN3zv-5AsGvTwaeKh-gdEy7ZsOtuFd7JNMXGRexKwrlgpSed9LEgM3hSaWVlzUZvvV9uU1yuPPiibaJcyRHJtogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsuMGkDwYAKXsJzzdcZmiWcH2ast4iT7zAd6uStoSoihyRVHOMUKUZmNYs3tx9NVqgG8DHihvoiUfEffnLspAO2___oFBM6flpFxa2BeXpWNgKafdt3AYJx-XsBg41quwum8nGz-frdbStSg1Z_7ivpP3lcVsJ7XNC9RK6x7cRLkgAA; 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, 15 Oct 2021 18:36:01 GMT', + 'Wed, 23 Feb 2022 13:36:47 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - EUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AiAKiM_imhJCiZCO8I3ewpQ; expires=Sun, 14-Nov-2021 18:36:01 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ar6yiWwGr-tOu7-Trn_Urgc; expires=Fri, 25-Mar-2022 13:36:48 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrM7xdLM9nvCXVbD1SK8wagbdjXBdEZ4ywz_nY0lA4jjtmTmn1ONBwienh98AOSY6ohWfmfck6NKtcrtg9XBPLRs7vzCcVJmnxfft09oTjBsua48AyDXucxRhWiT0chXMv5rzxxZCScJHaMmM3TB-SUl6CDYM6gz9F3sxZrnNaw10gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8FqOThAwSAsKznsPP6YzcsvD_rO-v_2wvdDD0Dy7fTOqy5Zzexfqeme_LczXlASnQTky6BUUcfXsVXxZKC9rMKMxQsH2_SheNcSrxK5o1hgdSeZzOyTLjp9B_JtZfvv7nGhPtFx8VkIFWVyhn99cbOra3ynl_i93S5ZMBV9H7NIgAA; 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, 15 Oct 2021 18:36:01 GMT', + 'Wed, 23 Feb 2022 13:36:47 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - SCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AqVJc1ogWTJOiqUMgYnbkQ4o7iuqAQAAABHB-9gOAAAA; expires=Sun, 14-Nov-2021 18:36:01 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=At8Bu2PmJONFmZ-nsZjWQVc; expires=Fri, 25-Mar-2022 13:36: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, 15 Oct 2021 18:36:01 GMT', + 'Wed, 23 Feb 2022 13:36:47 GMT', 'Content-Length', '1327' ]); @@ -113,7 +113,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2021-10-16T18:36:02.6879164+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:48.4907497+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -121,21 +121,21 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'hrHdEna4gkOpmGdAqtZQew.0', + 'WPbHoZ5AnUmkzermawQRKQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '354ms', + '35ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0EcppYQAAAAACNmfkUfyCQquEHMAbkKBCUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0cDgWYgAAAAAWXiX6iCXsSpfr0kGWz1BAUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:02 GMT' + 'Wed, 23 Feb 2022 13:36:48 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -145,19 +145,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'BEWkTKBb0EuhaJQAFwF+vA.0', + '5UnnxX1lvky0+r3cy03L5g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '169ms', + '412ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0EsppYQAAAADRslrwAmrKR7lFS2TlY0EjUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0cDgWYgAAAADISddQG7OMTZiPEGvsuQH5UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:02 GMT' + 'Wed, 23 Feb 2022 13:36:49 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js index 9a93abad163f..0a9c33305efa 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e0d54fbd05536534cfcffe5af630fbd6"; +module.exports.hash = "2e1ffc8ba426d43087d961bc22a8b47f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - WEULR1 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AscReS5v5TZDnDIxaYUU4Vg; expires=Sun, 14-Nov-2021 18:36:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Agl6jbm46kRPg2RNJkIT_ZY; expires=Fri, 25-Mar-2022 13:36:52 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPBKrK6GTDhgUqaxjiVwwz8E_6FM-hmK8jiZVBoqBt3uYZ0Lw96cOgmCOVJA4-dJKlDomAuotRVS21fFseuHcOkX4xYxEUV08hJ6RpQqwCls_CvNHgj2PdnzyAp1RgGzOzl5oGWvPCIS9gIqllFVTE0isUl-P8F0y1aJkEyvaHtcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgNCTRBg_wDBHZVPsnhCGS2vhRJHuda8ERpNr0YqTH_lEXmewDX26J89Uvz3klVgH_cUWT6tgndX5tJMYAZVcpT44YnWXn4wz5JUEDaVgGuggqslBSY9uOqoZM0KW_CbX_FqRKn3Oa3DISw9G8i7e-rAkmD0feN4Ynub1v2eKV0kgAA; 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, 15 Oct 2021 18:36:08 GMT', + 'Wed, 23 Feb 2022 13:36:51 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=Alh9F01PNSJPthciorxvfT4; expires=Sun, 14-Nov-2021 18:36:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArBDrul27NZPn0sddxavF0w; expires=Fri, 25-Mar-2022 13:36:52 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVFlfMdYfgFfP1qO2Yx5r09c2drd1f4EhO0JskRuUJ3FRqvcnKoruLTGweQZpNBkhiPKyrb4DX-CB4knS_f1C3SzCLfvSSlBg3IXVXsEug4TgGVuoiuparbabEvK8sbu5aUakkwMiR_rc8VuZI6z6jPDhgd-0GD0SWGTsf-08evAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSLO976Q9Us3fEpUKpK2Uxk5bMuDLQqztGX0FYOd-YvYL8fR1ZNLJ58dAeVQLNLtZAmPdfXPdtEIzmIDe1RGMfDE9Sd9t7_3wc3E2ILaFjvugcLQzyFnUp-A0rxYwJ7EjOFEApKyGyOVNaigOeylIZmWaxh1s4YXbAHb79Q4QFZYgAA; 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, 15 Oct 2021 18:36:08 GMT', + 'Wed, 23 Feb 2022 13:36:51 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Au2uHeSo-lhOnYNd8Vpp5QI; expires=Sun, 14-Nov-2021 18:36:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhbgC3PJvq5OuItnKBwquBM; expires=Fri, 25-Mar-2022 13:36:52 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, 15 Oct 2021 18:36:08 GMT', + 'Wed, 23 Feb 2022 13:36:52 GMT', 'Content-Length', '1327' ]); @@ -121,19 +121,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'm4sZxu1xfEqs/1VDovN0DQ.0', + '2V6Uu27V/Uis1/76rxPWHg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '14ms', + '22ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0GMppYQAAAABmgl7RplF+SLEznGs0tDJhUFJHMDFFREdFMDYwOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dDgWYgAAAADlTnf3Pt9CRY92g+pyS7DJUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:07 GMT' + 'Wed, 23 Feb 2022 13:36:52 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js index 965c29670572..b3f0fcf9712e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "9ad7fc52c090de52384771f8693c7321"; +module.exports.hash = "d21de0279490ba9ac47f977f9c015c11"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - NEULR2 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AlaQh-TgTUNLmKwR-G9aD7w; expires=Sun, 14-Nov-2021 18:36:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aly5crmhrwlFnif5obgHc14; expires=Fri, 25-Mar-2022 13:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsbTsyyGoe4O7KZSQYLC1J_0RlXB4YRmecTXZbQRDnnmN60Rd26bseRkd8C-GK7EEU9u_i-u1Phkzt7RZNvFDHz8eYGwGPL6fAdnnpgSUQz-J2qBPvSds00U2_QJLMuJoutGEWf1t9JGbN7_MD3M4rQZUgMmEGZWAjStRh6qEepcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5XWWwoHan8iuQuq3DwcDiCC9hbDcYNInc5h9nfw0cKoYh7b9kJVLi3GSWKlSbIXC5TS3u7-KSwvZjOh3-TPde036HeD9H75LMgrPIB8FI1xgmzLgWwp1abFJXL6ypwf4S4jMt9-DjP43cV6eQKyRzfBgnEQUzs3-DKISjTE-psAgAA; 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, 15 Oct 2021 18:36:06 GMT', + 'Wed, 23 Feb 2022 13:36:50 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - EUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AsN6_4VGS5BOriWMZQb3_s0; expires=Sun, 14-Nov-2021 18:36:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aq6CWXleyPFPiWG40UFkG6g; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7DRwFJffokAzlTLIu77b8SKoO_bFun_bH3dPwlg1LboszPo8ksAENvvufGjHYZC22zu8qPTfCyBXMvul07U1Mdgf_HfXLr4_v8xa9UWesY6ACxRkiL21Dmu5mbZ52p1Uk2vlR1UoKHh0DpobKue_Zwev98TmOKKGx4tGJ0Pj-t8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7Dib5NRQvt6xzmgH7aOfkERs5tVa-jOksGC1VOvx9KytW7wHNsz2qjL43hnSm4PGeXwruljDgnbF6ribcfkeWayYX_eRx4gGDNzuDfftsSEUWUKMpsRj-Z5KvJM61eBwA1KiOtrCayHh6zTCOmyI-cwdV_kIdLJwVYD6cJMl88IgAA; 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, 15 Oct 2021 18:36:06 GMT', + 'Wed, 23 Feb 2022 13:36:50 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - EUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Api_IIrEMSBLpyRF-r2d4T4o7iuqAQAAABbB-9gOAAAA; expires=Sun, 14-Nov-2021 18:36:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ajen8wln5kBFlcLGdYOKRbI; expires=Fri, 25-Mar-2022 13:36: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, 15 Oct 2021 18:36:06 GMT', + 'Wed, 23 Feb 2022 13:36:50 GMT', 'Content-Length', '1327' ]); @@ -121,19 +121,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'GWaSN/lfr026HdNcvi3jkA.0', + 'M5cdcLcyRU+syJXhomv8Kw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '14ms', + '17ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0FsppYQAAAAAwzVanLPNuTKnzPmDJgsJyUFJHMDFFREdFMDYxNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0czgWYgAAAADyT078y49hQrS+GDS8Mn1xUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:06 GMT' + 'Wed, 23 Feb 2022 13:36:51 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js index 593bb869222b..c302c6b81403 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ed18ffc85a130ce448c3ca7906b2e304"; +module.exports.hash = "46e08f51f4817e0c122d262206cbc361"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=Ar1I_46B7bBCrRIt1smLDQI; expires=Sun, 14-Nov-2021 18:36:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aty-iHOqqcRKn5mXvZxA99c; expires=Fri, 25-Mar-2022 13:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrC-zBcsDowBGFQcmmtOpOJmjwO-uER4Rv7CPihKOl3aBcDafGxnCm9POmzunLWodODXlcgLyDsV0WCZ7nUzd7L7glHxHQ3W6St96zq2MDqIJNm0hBs1EETJ40Co3ot3ExToVzc44CsytoRo1un08ZBg546kwzbFH9Df-as5WHKaggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVcAnnlqYPAuuWcUqSHXTiTvg9cLoY8-N3q7jMhjO5u2t16ECd7Cid0QL-wNw54QEEWjRgZYs1Ty5XEiuknu1G7LIFTB593phHmoPfwy5H_Zworq98pK9-NVmSIMXSLLD8mfEtj5QM2oI0480eTalHxYxLbWtMTYOn4GPTRPEvbwgAA; 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, 15 Oct 2021 18:36:04 GMT', + 'Wed, 23 Feb 2022 13:36:49 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AvKTJV1vfKdNkAwMseKXXh0; expires=Sun, 14-Nov-2021 18:36:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Al-uA1zliz1GtIU3-Nz97QM; expires=Fri, 25-Mar-2022 13:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVv1yBe1H2RL8wRn4ve8BS_JIUDPK3yc7Xnbpc3d-ZVbuTdLKxIIYbdxCcRfAcF8BG-_VftfMoEbk06bpMv0cW1DRLHGbYVWh7uyZ7HVCIsmu59dU7CphMS8iCoPBOfmgAu9GFlTiOSkK0Z78rwb1nVooG5RnnJ7YNMtBqujR7AggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1xBXupRntiRxLNHa5ppVq0_o09VGwp5rpqKRCtJmNzvzus-dVRZjD4R8AM4-onB4EDtZJ3ReiHLKBhqhk2dErrpXoBEfTbIe_TbrJERoITc3_KFMCN3HN-P8nl8rXERoa2laGY2nOLo0q2PYNikduSrgDev2hWbPmeTQvu1w3l8gAA; 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, 15 Oct 2021 18:36:04 GMT', + 'Wed, 23 Feb 2022 13:36:49 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - EUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Aj6ialav5BtGngB44MFpzzco7iuqAQAAABTB-9gOAAAA; expires=Sun, 14-Nov-2021 18:36:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AiocblQ-qXJJqgG0tkv05ogo7iuqAQAAAHIvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:50 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, 15 Oct 2021 18:36:05 GMT', + 'Wed, 23 Feb 2022 13:36:50 GMT', 'Content-Length', '1327' ]); @@ -121,21 +121,21 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'V48JT7IDJkOq9QOXFQAXmg.0', + 'lFNN1P2BFEOz/oJsYj1+5A.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '92ms', + '22ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0FcppYQAAAAA7+Z8NEPeFT53sa11HZFwFUFJHMDFFREdFMDkxOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0cjgWYgAAAADIgzALk5VMTKBCicfeRynTUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:06 GMT' + 'Wed, 23 Feb 2022 13:36:50 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -149,19 +149,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'cKgR2DWWEkW+g0oEYQGTdg.0', + 'pIHaH1iuREqLy2ECJSKSwg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '15ms', + '16ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0FsppYQAAAABH4UyGfSgtQZItM/ET3AjoUFJHMDFFREdFMDkxOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0cjgWYgAAAABV5CS3tSHDTbJc4rZ1xiIIUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:06 GMT' + 'Wed, 23 Feb 2022 13:36:50 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js index 6e3a733e8e9a..6a12a56aad1d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "16e8e62cc2eaddf1998471037d2e2efd"; +module.exports.hash = "1deb352058fce6a67642ca47cdba883f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NEULR1 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AnvcYsTrk1tPqwTnm4RrHxk; expires=Sun, 14-Nov-2021 18:36:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AklgsBHRtK5HoTPLEi7tAN0; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYhg7-xFoZHQ2zGNhVz2gjceTr2mlZfi4CKXNRE8YCyxK91u7zkyfpU1RAn_doB6Z_cdRdMEUIjMA9lokI2GOOP6p9PkTBnyL-U4oakmw9bDVHF8nBxtfqp0PWBbVqR9OoK7IxEMyVHGOKJWXJ2pJ6UsqXUXoUrglIiivlpKY6LUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd3awO0lZ2iSvkTcBn4DEoRQMQ8b08GwVOuHik_EMEmYCQSmywaRLQomXWse9i8YHrDDoFElwzflQhI9lDJXEW5uUiDgp_b9HOM2E9t7jg3n6_dMCBQt7yIuNiegfdH8GO71H2qmrX-g0N5Utx-1SFUUwlDyC-yKgQh2TvEX1PYogAA; 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, 15 Oct 2021 18:36:07 GMT', + 'Wed, 23 Feb 2022 13:36:51 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.10 - NCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AhGuRiJjo2JIn60l-oOgKdU; expires=Sun, 14-Nov-2021 18:36:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjDC_iBk-R9CtECngGBO1jc; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXrPaulKEsJhujXIQ5-x3av0CtmCu25kSYvmA9J6yfDAh620L85Edf1SBaVREkYASFG7tyDphfU7XJ7fJcH-WiqEJZA6qECpUuBzPsp3PDivqIFYmMKLNIwGH80U4YFKoqR3N5Qps-HF6FOQJ5c1Ez-EpRayF_cTX5DoL9LToJlggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr24NcOhcNXAon160TZ7IkjufUzFAqH8OOJFVK3zgQJoeunSOTZyQcA58P-DfWC0FLhMnmryK2w0dTaTkvqQWr0HgwwdQgaP0ahtT4XPN3sjBYJAIYKzystWm1ZOz2dQ6SnT4NmFuJxDeK266a-Oq8ouOAxnmfM5Umf2flEv6L0G0gAA; 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, 15 Oct 2021 18:36:07 GMT', + 'Wed, 23 Feb 2022 13:36:51 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12108.11 - WUS2 ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Aqah7xm5uc5HlhHTcOjic_4; expires=Sun, 14-Nov-2021 18:36:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnCLvO4xCUxDoVMViqnBtYwo7iuqAQAAAHIvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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, 15 Oct 2021 18:36:07 GMT', + 'Wed, 23 Feb 2022 13:36:51 GMT', 'Content-Length', '1327' ]); @@ -121,19 +121,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '0SuiFn2vi0GtKZ2LYdmqqQ.0', + '4sv0QWr50kO7ig/hRXwZEQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '13ms', + '19ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0GMppYQAAAAAY0rry35TpRZq22R5uUlf1UFJHMDFFREdFMDcxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dDgWYgAAAADuSEQoqCmGRpk20+84++/qUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:07 GMT' + 'Wed, 23 Feb 2022 13:36:52 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js index 99b612d40864..339bb8cbbd2d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "e0d54fbd05536534cfcffe5af630fbd6"; +module.exports.hash = "2e1ffc8ba426d43087d961bc22a8b47f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,19 +15,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'CNZ01mu5Yk2MpWgESNODTA.0', + 'JkWcjnAfpEO3106WKT0Phg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '21ms', + '22ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0IMppYQAAAACX8dfqkHX9TJUjtA9pGeZgUFJHMDFFREdFMDYxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0eDgWYgAAAAD62ApEeahHQKlHBhRgj0lJUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:16 GMT' + 'Wed, 23 Feb 2022 13:36:56 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js index 2483ee801ad5..9b7db91fb443 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "9ad7fc52c090de52384771f8693c7321"; +module.exports.hash = "d21de0279490ba9ac47f977f9c015c11"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,19 +15,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'vUl4FGku4EqxhS89/0xumQ.0', + 'o7tBGif+6USIsqttSNI2sA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '20ms', + '19ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0H8ppYQAAAABaLRMaOAmuQZU0lU1KoB7MUFJHMDFFREdFMDYwOQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0eDgWYgAAAAC95ESmv6zWQJfBCtnwpgEmUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:15 GMT' + 'Wed, 23 Feb 2022 13:36:56 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js index 521be436b740..02da717fe20c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "ed18ffc85a130ce448c3ca7906b2e304"; +module.exports.hash = "46e08f51f4817e0c122d262206cbc361"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,21 +15,21 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Lmoqw4N2L0C5y/fRKV27dA.0', + '5wvPEMEpr0u+Bpj0uLw/eQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '97ms', + '26ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0HsppYQAAAAAcD84rNtexSr751iMGaGy0UFJHMDFFREdFMDcxMgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dzgWYgAAAAD7AzClweaCR5z863FmTmSZUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:14 GMT' + 'Wed, 23 Feb 2022 13:36:55 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -43,19 +43,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'B1N9O1fQLEy2MtAT0qgS0Q.0', + '1cOhq9InPkCF/EQSCSueCw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '17ms', + '20ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0HsppYQAAAAAgxhqw27tzSbzXH4EgQb0VUFJHMDFFREdFMDcxMgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0dzgWYgAAAADRj78IbbfBSITXX2MkUkuwUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:14 GMT' + 'Wed, 23 Feb 2022 13:36:55 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js index 6ba02f97c7d9..03f820166109 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "16e8e62cc2eaddf1998471037d2e2efd"; +module.exports.hash = "1deb352058fce6a67642ca47cdba883f"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,19 +15,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Vkrtghw+EE6LohHujNaK1w.0', + 'nZ1yN++zvEyFLWPJP9q5Tg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview', + '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '21ms', + '19ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0H8ppYQAAAAAqH8a4kcs5TpAntfNAx3jEUFJHMDFFREdFMDkwNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0eDgWYgAAAADE0l2/3d5PRoTL/5QKtxcQUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Fri, 15 Oct 2021 18:36:15 GMT' + 'Wed, 23 Feb 2022 13:36:56 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js index eb2668e343a7..9aaa3e297f65 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "c5f66726f0c736e2fbc272f2f87879bd"; +module.exports.hash = "e34b7a3168d3718ee63cf7d04caaed57"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12171.14 - NEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AltTCh2f8jRIisDaEHb5yWg; expires=Thu, 25-Nov-2021 23:13:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ApvopePYRUxDsNdFWpKCCNA; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr0MU6fwfhvo7a2J-UzfL8o1PzzxzjaNi2O-aQlxDrIrftNYl2F1Y7BZ4Dq5GtAeEwjj12Ff5hy8srJgk1SzM-R_nLEVUxfAl7nP_lI43iS7fXRIDNSj1qSWjhdV8aL5Dn3xekN60Z_LIu6xFB0I_GGrQnYsfmW1C3K_JFkxIeGuogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_SDsZXWXZp7hbFqVyqlJU07nSOgeTWrCtukLNmOdxHIbCgTK7iCfE84-me7lwbU4VxCL0ebxxYYXodx4FIgQEtYdJMiZ5iUAqTv4fYE2Iplms9mvkHw93XFpiZ5NSA5pwS0iLbInVb4h5rq6XpSasVQN1Iyoy4s5-Gmtvu6xf0MgAA; 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, 26 Oct 2021 23:13:09 GMT', + 'Wed, 23 Feb 2022 13:36:59 GMT', 'Content-Length', '980' ]); @@ -60,24 +60,24 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Aobr8SgTRQhMuXTKb1v5E24; expires=Thu, 25-Nov-2021 23:13:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjGwpKIkcptGgH8RC2_ACes; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVQ0NzCvltcmcpKLtrQygupEdWKYRcJpB1G4MHzlMauR66KdVFlEvTtrUqP62DoeH1audYz8lhbL16BFGxx6oPCGAvODJhJFXL_b62Wg87WCQLWY86DRDPftvR28DkzlPO_R2psezd-ae7m6r18Cd1mSdZnQRJn60VOgNvHH6jEcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBo69IUwWxU0_LTX9yWtbNiuZyX9d25BrgQvIcawaOA9gsfv6RVpDya3m8ABS8F6dB5JtQ71uqvwl9RAoOMWGe8m8y1pkS92Dru3zoZZ_r72nxOEUSuLixJXw0K0Dkaf0UUGUfOdLkFBSFNvT10pca0EWpdSCIlaHNfQPvKH540ogAA; 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, 26 Oct 2021 23:13:09 GMT', + 'Wed, 23 Feb 2022 13:36:59 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":3599,"ext_expires_in":3599,"access_token":"sanitized","refresh_token":"sanitized","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ + .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":4966,"ext_expires_in":4966,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P90FOBrnJm8FzqgO6BtUTbmjOW7kY0peNCMKfRP8D5aFzg26QRWXo18M_UTo6zATqkqi_2amqJ0hes1SdOqJbTQSWYXumxMvFFc2oac9JY5GESNSVpSzltnLQzjCKydG2DeLRmOlIPy-sajMp1lW_GUhHiGefdqM9E0B2wMRnz9phxW0qo4S51V6SK4gPseBrbv90E4vNcwrHgGgkI2vz-Ug54Ckyf5vA8qlTX7ixyXZTFHUu6EmH12Ta2T4Nu7mbo3bk4cf-P3TveZs4y2UIIHf5q0fSrEx7XrOJovvU7TdffhWm4P6m5etKP08_2fRV7IqDXWqMtg2RiU4cvGbShjqUKwXfrHxLPScwKXQbUwOuaKaHi9zSss3joDf_sCdEoiL7SZpBmbCWZOCi_qU0UJTVtRtJJCBi69SHN7BwPxdkWiFHGCppwIN2SEdKSV3LNbJEJU4AztS3NMox1W-lunJmhLCpyClQt7GDE18usaFk4PNBdv6c2kNMskJAcehPwungsGB16okbVz7UsDW4bPVcmp8UR9nvOoxNnR1lp8MZXtOfKcu-Tnvg4UJ-h5DEInsHM5P0NxJqdnwqO3mkDRCeoRqBCeN7WSXFRVReQjJHHsYSP5QFtOjo0Hh1O0AiEYN_oaLr-IHg3IrvhMFXXR06lmjGDOKmdQuSSb7psLsWtjdXtKVCI1STlo_RjTQafIg33eiYx-eoLMKGypHorkHq5wyL4DTEi2Ql1BVgh348QFPBNOT3lTM-OLmC0dCl530sxGKc6aXc0uULpsw_IXfC3OIBAy20EqKCaXaFFkz0tZkGmBR5moSbvlmcFDYHMXoXOyBXvFyvSg_crGlWeR8RZ2gmuj5AOv1cnTcTqqQCpczbIxkX5CHuvXW-gcVnyTjO9SiuHWMCkDNyvb5Jtbh8Fawo9KthDBwufK9s3FC6Q","id_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Ik1yNS1BVWliZkJpaTdOZDFqQmViYXhib1hXMCJ9.eyJhdWQiOiJhZmJhZjA3Yy1kNmJhLTRmMjAtOWZlYS0yMDM5MjA4MGZjYTciLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyL3YyLjAiLCJpYXQiOjE2NDU2MjMxMTksIm5iZiI6MTY0NTYyMzExOSwiZXhwIjoxNjQ1NjI3MDE5LCJuYW1lIjoiU0RLIFVzZXIiLCJvaWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJTREtVc2VyQGFjc2F1dGh0ZXN0Lm9ubWljcm9zb2Z0LmNvbSIsInJoIjoiMC5BWUVBeV8zenZzdmNxVUd1ZVdTUElxTXRJbnp3dXEtNjFpQlBuLW9nT1NDQV9LZUJBTXcuIiwic3ViIjoicmhraDI0Q2wxR0dQbkhpU3N0dzR4WXhPbV9rRGtVVEVOSWlUazRhLXkwOCIsInRpZCI6ImJlZjNmZGNiLWRjY2ItNDFhOS1hZTc5LTY0OGYyMmEzMmQyMiIsInV0aSI6IjFvaG1JampyRFVtVU5fNXM0LWlzQVEiLCJ2ZXIiOiIyLjAifQ.oTBFUJq_MMbR1dtyWz2GtcP4jMxA5ABi5K9G8BC0lv3S2Jmn5id-ZNN62pNnDlRkEX7ZXbZ0xIWSmyOTf2KsuMfMuFSYFGak5Ywu8WnpMwK8UsyYWdDrVtaIvAqXyttQif9yGPfOHKFcIOxFpqd4oE5Xn56wS5I_Y0VGB3vEPI4KEHzdaoIRcH-pMVF6Tx56fxGQAuByXzwFHljDfOsLzD1i-PXC3cYCCkA-u1JRfcW50jTt0twaq8_PCNa3C3-uEj76Xtt7gNUHL3KyVBJ5g_lhgbokxjH6YoymbcLEDAhWDgTZowzXIPK4GVFjEqknLQskPeN5ARqU5NRK6Yo0Cg","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -95,25 +95,25 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - NEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ApIVoR-yrd1NodDcmEPvZiW4k9TnAQAAAIWCCtkOAAAA; expires=Thu, 25-Nov-2021 23:13:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ApE2vQF8eidDn4Q7CBRbSwm4k9TnAQAAAHsvqNkOAAAA; expires=Fri, 25-Mar-2022 13:37: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', - 'Tue, 26 Oct 2021 23:13:09 GMT', + 'Wed, 23 Feb 2022 13:36:59 GMT', 'Content-Length', - '4545' + '4648' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2021-10-27T00:13:08.9147164+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T14:59:45.0791576+00:00"}, [ 'Content-Length', '818', 'Content-Type', @@ -121,19 +121,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'RVs0N8eewEGR9te2/mbeLw.0', + 'C0aScykU4kmjJffcLU9t1w.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2021-03-31-preview1, 2021-10-31-preview', + '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', 'X-Processing-Time', - '415ms', + '833ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0hYt4YQAAAAB2MnUC/nhsR4TkTeey6ctSUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0fDgWYgAAAACuRs7wRmtdTJBNmmeZVFjVUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:10 GMT' + 'Wed, 23 Feb 2022 13:37:00 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js index 1023e9102b31..b170d5d3c936 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "b1f4170b74dcc0b449f5079440989357"; +module.exports.hash = "717a80a7fe666217ddc3af4511a23d24"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Zaoy9VDEL0W6xx5b9F/WJw.0', + 'c6fI70S6nkWnnTgEvyfSdA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '19ms', + '17ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0h4t4YQAAAAAK1c8zMjSeRrzKB4I5r/7XUFJHMDFFREdFMDkxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0fTgWYgAAAADqLqd0ykJFSr+pKadkTyAtUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:11 GMT' + 'Wed, 23 Feb 2022 13:37:01 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js index f486a33be1fc..2791bacc81c0 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "65c32ed61371c7d9b98a6921173cf0fd"; +module.exports.hash = "89176238df03483b3c933fed336aade5"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '6Y78qoVe+UmqyBHZsTCo4A.0', + 'Bz/YFw9nnEOVzT36KVsh+g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '28ms', + '31ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0iIt4YQAAAABRVqd1kOPHQ55BahalPjTTUFJHMDFFREdFMDYxMgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0fTgWYgAAAADdgV9qeNtwTpjbNH/afQdUUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:13 GMT' + 'Wed, 23 Feb 2022 13:37:01 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js index af26552a06b9..aa98df5d2619 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "c9d136c192e3bff9eb77825206db2097"; +module.exports.hash = "74651041d8bd51a04deddea2d0f12fd9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'hSZn3Mr020efqwfjiwyStQ.0', + 'VuNVfmvN30yMecvI5SmqPQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '21ms', + '17ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0h4t4YQAAAAB7QD9p7gocQqQr6FLyO3GyUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0fTgWYgAAAABmK8nW6u2RQLsmYzXyItV3UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:12 GMT' + 'Wed, 23 Feb 2022 13:37:01 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js index 0b462bcdc559..eab034fc13a4 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "c5f66726f0c736e2fbc272f2f87879bd"; +module.exports.hash = "e34b7a3168d3718ee63cf7d04caaed57"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12171.14 - NEULR2 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AuYIRLRjK75Dk5NPom_bLyM; expires=Thu, 25-Nov-2021 23:13:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnZf9BkWSBRFrux9LTOP15I; expires=Fri, 25-Mar-2022 13:36:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_2-y3d0Wiu-nCAnovnyjDeeHZ_1YXLqDucNof-RFKJ5MLVtP9qyYKSYZc5oBnzeuV2gIlJx5VMVFQ78yMPMWMinFydjoj2qsFbYOVh207HjRPfr2RpvyRIU74ot4RvwzM8-BD8l4VhmfKEA98dDo0CZrxpJMPf1bSwbVru2NKC8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEtOFaXLayRGEkf9spJyMY1KzmrukjErDy6PYpzDFIK2B3oJcSOfjmzJoDcA1JSuSltMuBfDRIw3WqZGfL2XmlONlHU-FlQ0fIsCslr4VHhqD4WmQFYW8lkgLZD-rAOkHWepiWcROkcj_wMROKajczOzBjSkTymnaT-MnXuXGj38gAA; 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, 26 Oct 2021 23:13:04 GMT', + 'Wed, 23 Feb 2022 13:36:56 GMT', 'Content-Length', '980' ]); @@ -60,24 +60,24 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=Ahg9eelgr-1PmVxVhjFSKD4; expires=Thu, 25-Nov-2021 23:13:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjavP5fo5qlAjLeNJHsv7KI; expires=Fri, 25-Mar-2022 13:36:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBtc6sDSnX0S2FIe8xeQQtp3zgYs136sr0rXxgsYt8eUK4tZEm5NfBPy1aAGhmiqRqCK2pbzO0ogbwhmboLJLNzj_fFix7_PCh2JgkzPcMZyhBUM8RqehsAxQqMFwYBevbxgj7HiGHZK0zy9B_Vm_xxbiAXpmB2_muLf1qwAVumMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryL8NF88LtVqBKW9cNAfqR7n3zUFBcdn2swvxglMDEIHaDGsgPXn1mD1YHkA79nFi3WWVMgOmssmz9Jsj_LR8PgzpHno4svPavtoRE3rjLQ0XfBVu1_CWdsOAqH2HkmhaYUm0jGUzXBYlpFK4Ed51Qsb3HkVBWKulKRDfjAnsyiIgAA; 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, 26 Oct 2021 23:13:05 GMT', + 'Wed, 23 Feb 2022 13:36:56 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":3599,"ext_expires_in":3599,"access_token":"sanitized","refresh_token":"sanitized","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ + .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") + .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":4011,"ext_expires_in":4011,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P8mkngYNT_YIActKeoVeFNdD7rn9Ji5vwvYTWyHuicNjKpk0X9OMJ0jq9Dn-NZpWE1d8adf6m0SYFhQA4ol3pXKKcqdNY4XCelscOpRN08T6QtFf-ZskiApeIyndKNjuodgcU8F4jdqrwJRJu4BBeLAtk8KTzbSwrjcpIh7YP5XcI-RAXoCW2pVKBDdUexQkqdl4ouUCS6jFfl3PcG7nTD90W8jujEL7YjiW3EeNBgS-Vt6ax14Qgs_4TRdHzDdiXAYLktbqYDESHq9Om8PP-t2TsvdFs1jFRTEkNabrPTpmxKE7bn0GjEnuLekoE4c5OB2cAru7WaIH9W-yk56EaEZQw0Ua-ZbWrBsuOSeR_gPAMHVZm5XWvm_GB4Vr9uuIOY__rCWyJw7-ku99vNa_qxLTmTvb0WxpLURAuiNO5SXz02baUrBra4drQre4C45SyxmxS1T7Vnv22O6Ml9-JPkKPglIqCAVUNhS8KlF0JnUbrOPb9b0_5K489fmVwB8kSWFJ-SvELBWDFgXqY7lDixVOH5CWzMD_YK4YzOrwXxtaCL2yW1o8_G1caVbQqgJd0B4B174p4IbhQ5j9Mw17iP_5eMCEb24kEjDXNtS7SsX0bSIAp-kwdrCyC4ZGXuHIGsZOWG_xs4V0kW6q-SK862dQ2UQnLyYDJc8w8M-iKhWg9qeDSIO7uwVo5eoTd5zhuJOqHaFD__32qJyVwlaSaXBPXk_GuQv3ufQLN8GwhpNtBQ4LY6zNpFdBmzCGktGC7KZnzr2PYTT_muFNHJ1Ujzqzd59gnZ5gEyPq6hfj7JDaObnews6iSGuf1QNqF_znXuLzc2U2_HYJzgTOYzsugr-nDdwSq1-G5eTIqNCQdXg-9lu722ii9EmNA8b9uI96y9pjTI1ILl7jGDhC1My5vrPHfE5EpBYmT7CFfy9QUipn1Y","id_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Ik1yNS1BVWliZkJpaTdOZDFqQmViYXhib1hXMCJ9.eyJhdWQiOiJhZmJhZjA3Yy1kNmJhLTRmMjAtOWZlYS0yMDM5MjA4MGZjYTciLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyL3YyLjAiLCJpYXQiOjE2NDU2MjMxMTYsIm5iZiI6MTY0NTYyMzExNiwiZXhwIjoxNjQ1NjI3MDE2LCJuYW1lIjoiU0RLIFVzZXIiLCJvaWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJTREtVc2VyQGFjc2F1dGh0ZXN0Lm9ubWljcm9zb2Z0LmNvbSIsInJoIjoiMC5BWUVBeV8zenZzdmNxVUd1ZVdTUElxTXRJbnp3dXEtNjFpQlBuLW9nT1NDQV9LZUJBTXcuIiwic3ViIjoicmhraDI0Q2wxR0dQbkhpU3N0dzR4WXhPbV9rRGtVVEVOSWlUazRhLXkwOCIsInRpZCI6ImJlZjNmZGNiLWRjY2ItNDFhOS1hZTc5LTY0OGYyMmEzMmQyMiIsInV0aSI6ImV6aTJ3MXE0NzB1RmtwcDBUbEJUQVEiLCJ2ZXIiOiIyLjAifQ.TTeobVuWPWvaCxIO5P0CkYROSO9ojQ2SeDoAUzupOEMLdLvicigoqG_lTqkCPlSfkUCcEnnBshS0PdTGz3MqVpx_76er0eOaq259EdxNmbldCyIKapQ1UPbN0Mk4HNCTnerEUsxs7ORJPrXRQiE81lNQh4nMykkvpxWiQR-scWC9SfNoiYf7eOgHMcuFkP2pXN46lftEugVW_XUp4SjpRvkNowqC7O42jzRg762Vc2YmjToTsnOlc-pc9v_yjXsGye7WTTERhQHnfV51pOJSiB487j_KcIEcZ7qrtJ8-gfWnt0BLObKOzxg-oWz9fnsR4OhAK_b0nyBTvLv1G1x4LA","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -95,19 +95,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Aq7d8S0K1M5BttbT2eQZmdy4k9TnAQAAAICCCtkOAAAA; expires=Thu, 25-Nov-2021 23:13:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuOoHZawXulBgVaMNRMw-LO4k9TnAQAAAHcvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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', - 'Tue, 26 Oct 2021 23:13:05 GMT', + 'Wed, 23 Feb 2022 13:36:56 GMT', 'Content-Length', - '4545' + '4648' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -131,17 +131,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12171.14 - WEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AnqTvyR0uRBOuE8iwecXHnk; expires=Thu, 25-Nov-2021 23:13:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=An_PkYXp4GtDkg3Resr68JI; expires=Fri, 25-Mar-2022 13:36:56 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7XKRreYPDTGKqMe1dm530gPiVWCV0HljLrtvfKuk_3gYfGacd4cDykvWdotDDQbBYkKaIoHQpOn3nRTxSzJ5Zj_g3h96X0W-NCSYYYCtUEN4I2EcD2v06nHFQBj2kkpfYKBMVagNhHgoJyrnj5FBxXqTRLbHaJFVsViQGHg8VKwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLwzqnf1oxFC50sqakDgDGU8z51MrFlhL6HsLck64dyU3lDg9cpGhCaHgXiOPpRXL6R2GVWYgOM2aYehHDOIRxPsTIByoySiuksXJL07MQgevszT7V0xX7xgVrlR29zclw-vQbhkSwz1ZBLy4lXQ-x4xMpy4MOpMBPjU18Sv035cgAA; 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, 26 Oct 2021 23:13:05 GMT', + 'Wed, 23 Feb 2022 13:36:56 GMT', 'Content-Length', '980' ]); @@ -166,23 +166,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AqNzJI-hO41Mtd61ppSnvI4; expires=Thu, 25-Nov-2021 23:13:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Auj5EL2QXW9ElO1eR1rTRGk; expires=Fri, 25-Mar-2022 13:36:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUK91GFKKiXI48h-Q_a0-_Qf0gzZgtyF_HH_rvRUI-Vf6ljVnCyXEE76QtDhWKf9n-wAHQpABIeGzQ2llhmzlB4DFgPuO44L9z1rleJkcUn5uPEjAdVM2wcTVCXcD3IIHytCqn-JR2lmCzrwXwOafY0a0JmSx3SsvnoOBfhaHESYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_lbKHwW_gGEaxONRJa0QFZon9I1ywmsyZMYNg_MGp655qvVUCDhynCakzVtqGL5LlMri3X-F67nHRDrCZ9XpQJlQHmQuocvk89jKFbg44sBKKd0oURj1T5P8ETRx3jajeAiSHREEAvGvyXF8LevInhXST5JNsSRVgAQk8c2V730gAA; 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, 26 Oct 2021 23:13:05 GMT', + 'Wed, 23 Feb 2022 13:36:56 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -201,17 +201,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AhJC2x1be6FAmePADOu7cIUo7iuqAQAAAIGCCtkOAAAA; expires=Thu, 25-Nov-2021 23:13:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArWqDeJgUHlJtZo_g2oV7ks; expires=Fri, 25-Mar-2022 13:36: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', - 'Tue, 26 Oct 2021 23:13:05 GMT', + 'Wed, 23 Feb 2022 13:36:56 GMT', 'Content-Length', '1327' ]); @@ -219,7 +219,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2021-10-27T00:13:04.2643655+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T14:43:47.8778237+00:00"}, [ 'Content-Length', '818', 'Content-Type', @@ -227,19 +227,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Soiiz7NRwku4XRKlxspEQA.0', + 'DWrb4HnTVU21OIo87F+bZg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'api-supported-versions', - '2021-03-31-preview1, 2021-10-31-preview', + '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', 'X-Processing-Time', - '354ms', + '417ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0gYt4YQAAAACp1omZAyngQZvZwMa4CaDbUFJHMDFFREdFMDkxNABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0eTgWYgAAAACryP56XcwvQrbW8chz879UUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:06 GMT' + 'Wed, 23 Feb 2022 13:36:57 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js index 66415e223cc1..31ed03154fa9 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "b1f4170b74dcc0b449f5079440989357"; +module.exports.hash = "717a80a7fe666217ddc3af4511a23d24"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12171.14 - WEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AhuxiOdnXPpPiRbtOGK70DI; expires=Thu, 25-Nov-2021 23:13:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnSfkUjs9RlKpru9c9FG8u8; expires=Fri, 25-Mar-2022 13:36:57 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDLQikWUXenO2H527pXNKgj_mf8ev9MwvduyicBsdZ_SRV4uoIzboqQsH_-5IiXA9T4j8z4Hc3JrW4k_pWSzKDzR3dLyp0vOjpRKjbRSxOhNfhMoBgXhhUOGq1-0eLySgIo8BvqADl4Lm5KIFOoppbIhN5Frz7ZffCnNszEc-e2QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-QV6WCWlXdrCzBhOnzQwvH3k1tJwWinhNRh97ljqzaLgp_9hyxAV7pV0__Nl-h-xJVJuASDZl6a_vt-DLGKXWTrhTWoY5HL-tC3RP1wFSdoIvE1E-I3YHHfZGThP--M3TLqd1gkFCUhD7gr4i7XvUquathcAIXPPEB3TZEELsxMgAA; 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, 26 Oct 2021 23:13:06 GMT', + 'Wed, 23 Feb 2022 13:36:57 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=Ahd0vZ0it6lPtJMF1qtRbmw; expires=Thu, 25-Nov-2021 23:13:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AphDkNeavm5BgjatHuxRynE; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQMLG_8XU6LI5gm9naCm_3papDjKBokEV8nIZ9QVPwoexx93GHSxsjveSUfIbWQSuzPdmajCvYMnntAhIqRzw5gpOLqkDonpxOw6GQzrw2RAHhH9vxBBWv735Eu7toS8OPjxECOtljnnELFxk-ao7MhE1gf5SBNffj66XVdDiAeggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8rBQ9Oo-qyyljoJopbHciPbn-T114ntvyr-PS_ck03vd-XahCpjUZ0sfvtct88XMAb2It69Z0b_ahoMH9kJjtanjea6HG4FLzY4cStOqB8MiLV6p_pXik5TD7bHPlDEHKL9K_SXvVC831yT8X9GnezYmmcHSe4RgVX6ImarcALwgAA; 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, 26 Oct 2021 23:13:06 GMT', + 'Wed, 23 Feb 2022 13:36:57 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - SCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Anqve43BF-tFjO5X2bWEn34o7iuqAQAAAIKCCtkOAAAA; expires=Thu, 25-Nov-2021 23:13:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AmP7wEPWlfJFqYFr2QUvxoU; expires=Fri, 25-Mar-2022 13:36: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', - 'Tue, 26 Oct 2021 23:13:06 GMT', + 'Wed, 23 Feb 2022 13:36:57 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'pxNXxo2kikaduylZ4G+2qQ.0', + 'lMq8DGnN9kCU9waVZ459/Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '18ms', + '25ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0got4YQAAAACkvGUq/SRAQYttGlsij4BCUFJHMDFFREdFMDYxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0ejgWYgAAAAAn9G+P3cQsTIjJRrqnFqT1UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:07 GMT' + 'Wed, 23 Feb 2022 13:36:58 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js index 1a0db50c7643..16d3b1f266cf 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "65c32ed61371c7d9b98a6921173cf0fd"; +module.exports.hash = "89176238df03483b3c933fed336aade5"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Atd-1cpV70tPj65VvoMrDDg; expires=Thu, 25-Nov-2021 23:13:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtY32BNDXN5IvwMpteu29ZY; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrv1N95rsmbv1bmEQq5c-aVuPx4Uw98_gDHMdgPHRXl9cC21ZzzFxYliTvMzpCWO3RR9Y2PVipipGaH5WdxFqVeQSzd8ajjYUXb3ROWiV8ZTuzZa_8OhO7Bce_YJXGfwDhHaQDQt38gg9yxHprI7P69S3W0G3tfTTgTMtgnXwdG0ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-FX6WCRpHkNtaaMDFNAkZKMJV09XByTe4IZKixMbIw5TBjSl67X3IWIUwurYR5DzgfOBP49o44T9o6zcWSD5wN07r2LTRTqEIaL9kwRK7oErMx6w31uIGB5Ibq1t4Ogio6ogPJsdUfPzvbOdssppO7mqk8CBMv9-98n2iy3zUhsgAA; 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, 26 Oct 2021 23:13:08 GMT', + 'Wed, 23 Feb 2022 13:36:58 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AouZIdHpr3ROp-AVBwiZS7U; expires=Thu, 25-Nov-2021 23:13:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoK2Oo-N4BpNudmRmq9bDuM; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZHbTgdxggO60ii2KQ99KvwQ0DVMlsAIqHnh6ACcWlMZF3eGgZEBkeS3A9uwGzD1TM1C7yQzjTyyf55HNtVgiyv5n20TUQYqgpFKElncTojQwVs00Lq-L8OnuFwOXIg3T785ExmbLn3t60MU2iSjXnU6U-jjEkTeAfhZDnK8C1oAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAtuFjVEy7Qx9luCZL-u26QaqLdzVaemDMGbIhBPn-duwnOL_0VW_FOyuTlNH6ta8Gpfhs3OqQRWzDdkjaUImkAfRwtULEJPZU70K218tIi93cPhyWTMU_PCeq-LDcxt88a9cogof88Pd_ytMPCUCPUlqyj8BWG-kMWT-SG1eOhMgAA; 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, 26 Oct 2021 23:13:08 GMT', + 'Wed, 23 Feb 2022 13:36:58 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - EUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ao5_mBTJ2PVHlNsYN6TPr4o; expires=Thu, 25-Nov-2021 23:13:08 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnRkt0XTWzRMlkFHKlakNOQo7iuqAQAAAHovqNkOAAAA; expires=Fri, 25-Mar-2022 13:36: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', - 'Tue, 26 Oct 2021 23:13:08 GMT', + 'Wed, 23 Feb 2022 13:36:59 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'nz04AyKn3kGOKRu6vm9doQ.0', + 'wfrOxXXTg02LrRhVxNPK9A.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '25ms', + '38ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0hIt4YQAAAABZomyKhEkoRKCZe/khmGFDUFJHMDFFREdFMDYyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0ezgWYgAAAADfYFqODv3wSKmcZiyp0FnkUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:08 GMT' + 'Wed, 23 Feb 2022 13:36:59 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js index 2504929b8c5e..14efeee51e49 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "c9d136c192e3bff9eb77825206db2097"; +module.exports.hash = "74651041d8bd51a04deddea2d0f12fd9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12171.14 - NEULR1 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AsGuutZBmQpJtK1GFnir-ZY; expires=Thu, 25-Nov-2021 23:13:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=As8ueauKkBtIjQCNqV_HXek; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWonXmWSiusyoxkSFxawC7JDlbR0DU-AhmEiy-Y7YDFAysYxqw5cxNdJXiORSUmVAiMW0OkqgEPjf3S3FSFuZrOMQM4w3fL9P9qDiS2Xc-7Jfvs437tlrsFnAsbXNJ-gXnwU8Cn2tGrfW9pZk3r9OYWtoDornzjmWHf0hxx24sgsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWMJc7POnnnM3RvyFSwOWEUBh5FJOiYQLE8KNyWwtAwwfkjOhz953NMrHza2OfMhzgpuAmXQ1jPy1XNatPXXOw4CYfprGjw2l1FXIN3_suh_U_htHGN1Ri9K1oltrtP8yuXvvrqHak9nqhz5xQDc1uWEIjwBpFBdMOQ7BYJsPs4sgAA; 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, 26 Oct 2021 23:13:07 GMT', + 'Wed, 23 Feb 2022 13:36:58 GMT', 'Content-Length', '980' ]); @@ -60,23 +60,23 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - WUS2 ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=Ao-_558Nv0tNmIPuQnGq8D0; expires=Thu, 25-Nov-2021 23:13:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhtHoXUVvV1Np-PGzSZrl4c; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrFJltYj1ZLoDvD4zqxvBeKNJzuGoVwlUKJdF_hYc2Je_KCAfVM-uPbE70Is7dxfLtOHEpz4QrETGw47voDWoEXQdXNH8127VEcXtmL13q5F1d3i7XzpHChYMU-2UXrRkBNZ-ywiNIrjKClhdnxvrRPMoZBZKNqHS8ptzRilLgg-UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrS5zSIqLmVrw3DcaeT0gN3mCnoEOJR9FqUBqCUsnb9OaB_fFAYq8Jp0bzp694qXxLjEihBj3uSeoy6IJ5qDLspGNBf6OK96FumCsPCSlyrrsYdyCc189v5xMo-Qb-gnPXwRuwH1rN6OZ6xNcIVbITjWv_gNwgXjgM4avifk90u9kgAA; 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, 26 Oct 2021 23:13:07 GMT', + 'Wed, 23 Feb 2022 13:36:58 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22CP1%22%5D%7D%7D%7D") + .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12158.6 - NCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AuogNIqlGvBGjfN_m71B6PMo7iuqAQAAAIOCCtkOAAAA; expires=Thu, 25-Nov-2021 23:13:07 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArkcpnWDeItHkaiv63zb6kY; expires=Fri, 25-Mar-2022 13:36: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', - 'Tue, 26 Oct 2021 23:13:07 GMT', + 'Wed, 23 Feb 2022 13:36:58 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Zl82Aj0ZJEe/10Jyss9iBw.0', + 'K3pT7UvSb0yiETkbjAodcg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '15ms', + '16ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0hIt4YQAAAABKgWn0VYM6Sr/YErpFUaBQUFJHMDFFREdFMDYwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0ezgWYgAAAADZDWW2DTHCTqQRgWHxS3LUUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Tue, 26 Oct 2021 23:13:07 GMT' + 'Wed, 23 Feb 2022 13:36:59 GMT' ]); diff --git a/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts b/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts index a89912090303..952b1751dbfe 100644 --- a/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts +++ b/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts @@ -31,7 +31,7 @@ export class IdentityRestClientContext extends coreClient.ServiceClient { requestContentType: "application/json; charset=utf-8" }; - const packageDetails = `azsdk-js-azure-communication-identity/1.1.0-beta.1`; + const packageDetails = `azsdk-js-azure-communication-identity/1.1.0-beta.2`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` diff --git a/sdk/communication/communication-identity/swagger/README.md b/sdk/communication/communication-identity/swagger/README.md index 5b97f16de197..34edcb11623d 100644 --- a/sdk/communication/communication-identity/swagger/README.md +++ b/sdk/communication/communication-identity/swagger/README.md @@ -8,7 +8,7 @@ package-name: azure-communication-identity override-client-name: IdentityRestClient description: Communication identity client -package-version: 1.1.0-beta.1 +package-version: 1.1.0-beta.2 generate-metadata: false license-header: MICROSOFT_MIT_NO_VERSION output-folder: ../src/generated @@ -22,4 +22,5 @@ use-extension: add-credentials: false azure-arm: false v3: true +use-core-v2: true ``` From 7f19f86c63c8cb7532c3df9005df91ab26210cde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 23 Feb 2022 15:14:54 +0100 Subject: [PATCH 21/33] adjusted test recorder --- ...recording_successfully_creates_a_user.json | 8 +-- ..._and_gets_a_token_in_a_single_request.json | 10 ++-- ...successfully_creates_a_user_and_token.json | 12 ++-- ...recording_successfully_deletes_a_user.json | 16 +++--- ...ts_a_token_for_a_user_multiple_scopes.json | 18 +++--- ..._gets_a_token_for_a_user_single_scope.json | 18 +++--- ...ully_revokes_tokens_issued_for_a_user.json | 16 +++--- ...recording_successfully_creates_a_user.json | 12 ++-- ..._and_gets_a_token_in_a_single_request.json | 14 ++--- ...successfully_creates_a_user_and_token.json | 10 ++-- ...recording_successfully_deletes_a_user.json | 18 +++--- ...ts_a_token_for_a_user_multiple_scopes.json | 20 +++---- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++---- ...ully_revokes_tokens_issued_for_a_user.json | 20 +++---- ..._attempting_to_delete_an_invalid_user.json | 10 ++-- ..._to_issue_a_token_for_an_invalid_user.json | 10 ++-- ...g_to_issue_a_token_without_any_scopes.json | 20 +++---- ...o_revoke_a_token_from_an_invalid_user.json | 12 ++-- ..._attempting_to_delete_an_invalid_user.json | 8 +-- ..._to_issue_a_token_for_an_invalid_user.json | 8 +-- ...g_to_issue_a_token_without_any_scopes.json | 14 ++--- ...o_revoke_a_token_from_an_invalid_user.json | 8 +-- .../recording_successfully_creates_a_user.js | 8 +-- ...er_and_gets_a_token_in_a_single_request.js | 10 ++-- ...g_successfully_creates_a_user_and_token.js | 12 ++-- .../recording_successfully_deletes_a_user.js | 14 ++--- ...gets_a_token_for_a_user_multiple_scopes.js | 18 +++--- ...ly_gets_a_token_for_a_user_single_scope.js | 18 +++--- ...sfully_revokes_tokens_issued_for_a_user.js | 18 +++--- .../recording_successfully_creates_a_user.js | 28 +++++----- ...er_and_gets_a_token_in_a_single_request.js | 32 +++++------ ...g_successfully_creates_a_user_and_token.js | 32 +++++------ .../recording_successfully_deletes_a_user.js | 36 ++++++------ ...gets_a_token_for_a_user_multiple_scopes.js | 38 ++++++------- ...ly_gets_a_token_for_a_user_single_scope.js | 38 ++++++------- ...sfully_revokes_tokens_issued_for_a_user.js | 40 ++++++------- ...en_attempting_to_delete_an_invalid_user.js | 28 +++++----- ...ng_to_issue_a_token_for_an_invalid_user.js | 28 +++++----- ...ing_to_issue_a_token_without_any_scopes.js | 36 ++++++------ ..._to_revoke_a_token_from_an_invalid_user.js | 30 +++++----- ...en_attempting_to_delete_an_invalid_user.js | 8 +-- ...ng_to_issue_a_token_for_an_invalid_user.js | 8 +-- ...ing_to_issue_a_token_without_any_scopes.js | 14 ++--- ..._to_revoke_a_token_from_an_invalid_user.js | 6 +- ..._token_for_a_communication_access_token.js | 30 +++++----- ..._exchange_an_empty_teams_user_aad_token.js | 8 +-- ...xchange_an_expired_teams_user_aad_token.js | 8 +-- ...xchange_an_invalid_teams_user_aad_token.js | 8 +-- ..._token_for_a_communication_access_token.js | 56 +++++++++---------- ..._exchange_an_empty_teams_user_aad_token.js | 26 ++++----- ...xchange_an_expired_teams_user_aad_token.js | 28 +++++----- ...xchange_an_invalid_teams_user_aad_token.js | 30 +++++----- .../test/public/utils/recordedClient.ts | 2 + 53 files changed, 501 insertions(+), 499 deletions(-) diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index 50a25138c4fe..ab4cdbb6840c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:12 GMT", - "ms-cv": "SM3FBBp1sU6M/fGLNhtmNA.0", + "date": "Wed, 23 Feb 2022 14:12:04 GMT", + "ms-cv": "FrcYpVAEpUCuuDkBGKxzNg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0iDgWYgAAAADPv00SOZiMS5Ybm1e6sky4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tEAWYgAAAACqGyLB18nKQ63YqA3otYcCUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "31ms" + "x-processing-time": "37ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 2c1ec21d574f..35e8bdde7aac 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:14.5741932+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:06.2197423+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:14 GMT", - "ms-cv": "BcNQ4UFRoUKn2oHYGN223g.0", + "date": "Wed, 23 Feb 2022 14:12:05 GMT", + "ms-cv": "HRtM7U3lvUqOOFp9fIq4BA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0ijgWYgAAAAA02vk1FxAeQoyCQ6XVbcobUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tkAWYgAAAABsZh3R7c89TqTO3zcKhBXrUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "42ms" + "x-processing-time": "39ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 0ed8edc2a3a5..5a6951d74026 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:13.359165+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:05.0888996+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "919", + "content-length": "920", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:13 GMT", - "ms-cv": "y646RnCTs0WCjUkRv0VvOw.0", + "date": "Wed, 23 Feb 2022 14:12:04 GMT", + "ms-cv": "j20veyanwkOM9576ZqK5/Q.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0iTgWYgAAAADFQHTBO3uVRr8klK458dWbUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tEAWYgAAAABuiHdAIERCQ7zXEHBuNPNcUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "39ms" + "x-processing-time": "48ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 3188d9d85a85..510c0df0d7cc 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:15 GMT", - "ms-cv": "85utiNuGKEi8f516HpdDqw.0", + "date": "Wed, 23 Feb 2022 14:12:06 GMT", + "ms-cv": "+B/eRcIzfE+pK+Kmivn4iw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0izgWYgAAAAAvd+yynrkORp/UNdzziJXkUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0t0AWYgAAAAC77bPho3mDSpiWWqz6Tt4bUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "26ms" + "x-processing-time": "25ms" } }, { @@ -34,14 +34,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 13:37:15 GMT", - "ms-cv": "FAMasSheQk2KpkUSFxsoEg.0", + "date": "Wed, 23 Feb 2022 14:12:06 GMT", + "ms-cv": "VwLtqU315U28BTJa8iwsUw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0izgWYgAAAADbow6udDCgQ4ToBuT0TL8mUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0t0AWYgAAAAAk/i4xuy7GQbmOhblw5nk6UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "105ms" + "x-processing-time": "143ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 45c9a4beecb9..25033a0c5cc7 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:13 GMT", - "ms-cv": "vcUPUlqZSkG3+QPVwd+nVg.0", + "date": "Wed, 23 Feb 2022 14:12:04 GMT", + "ms-cv": "y/PJVv94Yky15jUMtobTXA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0iTgWYgAAAAC6SygUzj09SYZbJBp3YZkRUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tUAWYgAAAACUZw3ijR05R6APl23jtll/UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "28ms" + "x-processing-time": "24ms" } }, { @@ -31,19 +31,19 @@ }, "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:14.3020499+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:05.9890852+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "811", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:14 GMT", - "ms-cv": "47Keq+Kt8EeX3qs/wC89Og.0", + "date": "Wed, 23 Feb 2022 14:12:05 GMT", + "ms-cv": "yL4t+tgKWU+XzmKEcLgk8Q.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0ijgWYgAAAADmsTOmtTGyQ6IFiG1gVHIZUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tUAWYgAAAAAOXe7go1GESbKKCLxFtrrTUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "34ms" + "x-processing-time": "39ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 46185a2d58be..9014d675f069 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:13 GMT", - "ms-cv": "xmk3RWvVW0yCdxI62O6Xbg.0", + "date": "Wed, 23 Feb 2022 14:12:04 GMT", + "ms-cv": "G0+KMaJ95US3+QyxbFfvRA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0iTgWYgAAAACZX0lfLHvQTYAL7LyjkeIYUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tUAWYgAAAADnR4yXZpuVRKCISu6sQTQJUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "26ms" + "x-processing-time": "23ms" } }, { @@ -31,19 +31,19 @@ }, "requestBody": "{\"scopes\":[\"chat\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:13.8363114+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:05.5336831+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "804", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:13 GMT", - "ms-cv": "L9F3IxFk1EaRk9lgQU6I2g.0", + "date": "Wed, 23 Feb 2022 14:12:04 GMT", + "ms-cv": "qISkCtdjL0iRhCe9TVU/9g.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0iTgWYgAAAADaEtAE/d19Q6+iYHNjAdC6UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tUAWYgAAAAA9s2zNDTsnTLqAwQjyjc8sUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "36ms" + "x-processing-time": "33ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 1de6f962069d..361ce4bef5b8 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -8,16 +8,16 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:14.8316932+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:06.4467336+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:14 GMT", - "ms-cv": "QHUXgrFsI0ClKfEBPxlGVQ.0", + "date": "Wed, 23 Feb 2022 14:12:05 GMT", + "ms-cv": "F8f+Qh5r3EePMxsfVozKAQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0ijgWYgAAAACHalTvxVfKTbvmdmkBpcGJUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tkAWYgAAAACx6M4XSNqMSLl+MLNTuz2DUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", "x-processing-time": "39ms" @@ -34,14 +34,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 13:37:15 GMT", - "ms-cv": "SpNV8o3ieECRIRlQeQQCfw.0", + "date": "Wed, 23 Feb 2022 14:12:06 GMT", + "ms-cv": "+a8C8SJJDEKUJksrXxGCtw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0ijgWYgAAAADLVCURVAgtTKrG/m5QUflhUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tkAWYgAAAADlVlcWiwBGR774NW9cOA3PUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "241ms" + "x-processing-time": "593ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 6196730cbd98..9500a781db20 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:05 GMT", + "date": "Wed, 23 Feb 2022 14:11: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\"", @@ -20,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:06 GMT", - "ms-cv": "MJFpwzXIGECwVHUsF6ao3w.0", + "date": "Wed, 23 Feb 2022 14:11:55 GMT", + "ms-cv": "uHG+soJq+UWA4qUv9/HPig.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0gTgWYgAAAAC71NWDVm5dRocghAqhXARyUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0q0AWYgAAAAAxCZz0PM2NQbBYA2al2lMtUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "187ms" + "x-processing-time": "407ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index d644a958ce59..7c7ca8fd0ecb 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:08 GMT", + "date": "Wed, 23 Feb 2022 14:11: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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:08.7210697+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:59.1380111+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:08 GMT", - "ms-cv": "H1x5tcaP80KWyHwJen1vmg.0", + "date": "Wed, 23 Feb 2022 14:11:58 GMT", + "ms-cv": "gZTY1V9yS0uX6q+c48iaIw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hDgWYgAAAABlAAH6Gzq6T45TiFdvaHEVUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0r0AWYgAAAADlNWxzwBMlRYm5kIEhT2C/UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "37ms" + "x-processing-time": "34ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index d5a6505a2cd5..db2800784f36 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:06 GMT", + "date": "Wed, 23 Feb 2022 14:11: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\"", @@ -32,16 +32,16 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:07.0410602+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:57.0343962+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "920", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:06 GMT", - "ms-cv": "9TfAnw4UF0OoXSP6o7rCiw.0", + "date": "Wed, 23 Feb 2022 14:11:56 GMT", + "ms-cv": "anmCsOkH9ka8OExjR7Bprg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0gjgWYgAAAADB9Oe1+zH3RIq+SWklEzYaUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0rEAWYgAAAADIe96jvGxNTqoZFdv/lrP0UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", "x-processing-time": "35ms" diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 48ea40973278..a4dcaccdae34 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:10 GMT", + "date": "Wed, 23 Feb 2022 14:12:01 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\"", @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:10 GMT", - "ms-cv": "7+2j6E2t4066AkCEez9ADg.0", + "date": "Wed, 23 Feb 2022 14:12:01 GMT", + "ms-cv": "uBFDSmJY40uCqnlSG9zrsQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hjgWYgAAAACZ0Nwmgm8aRJTmb/Ipx/ZAUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0skAWYgAAAAB/en8r7+8LRbepcT6D/1ypUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "22ms" + "x-processing-time": "26ms" } }, { @@ -58,14 +58,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 13:37:10 GMT", - "ms-cv": "7YwzIfpW7U2BFnm+32GOlA.0", + "date": "Wed, 23 Feb 2022 14:12:01 GMT", + "ms-cv": "F0DDu1ImBkiRxnu9gl36Nw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hjgWYgAAAAD5X3JYeNnwQ6SDm9SE6F+YUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0skAWYgAAAABmpnKL9t90T7WbjALKBV5IUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "99ms" + "x-processing-time": "146ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index bb3b0f2c0966..7c4f3be95478 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:07 GMT", + "date": "Wed, 23 Feb 2022 14:11: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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:07 GMT", - "ms-cv": "idMCgo3KN02SRmpbzgD7fQ.0", + "date": "Wed, 23 Feb 2022 14:11:57 GMT", + "ms-cv": "JPTciQjsqUKiVvRZNFAqtg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0gzgWYgAAAADKsEtEJ8DyRrHMQyv/6PfNUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0rkAWYgAAAADlRBAf9WFpR4L2/xufGywjUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "31ms" + "x-processing-time": "21ms" } }, { @@ -55,16 +55,16 @@ }, "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:08.2422458+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:58.7235218+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "811", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:08 GMT", - "ms-cv": "L5C2z1FjSkKPhWYDheXEcA.0", + "date": "Wed, 23 Feb 2022 14:11:57 GMT", + "ms-cv": "FiKafyS8PUyAlioogOdR5Q.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hDgWYgAAAAAZx04TOdMmSLrSVq28HMDxUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0rkAWYgAAAABPaFkZS2DPSaMXR0mTRKEoUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", "x-processing-time": "27ms" diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 67e9c7f0cd9b..851a1cf31f91 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:06 GMT", + "date": "Wed, 23 Feb 2022 14:11: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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:07 GMT", - "ms-cv": "7581tWIj70iuiZhai/y8gw.0", + "date": "Wed, 23 Feb 2022 14:11:57 GMT", + "ms-cv": "42jqjkjrMU6KMX+n1dO8/A.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0gzgWYgAAAACeDl0fc+T+TpIKvFIBsYz3UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0rUAWYgAAAADAhKNVSkg5RqbdsI51fuDuUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "34ms" + "x-processing-time": "20ms" } }, { @@ -55,19 +55,19 @@ }, "requestBody": "{\"scopes\":[\"chat\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:07.6802564+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:58.0912942+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "804", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:07 GMT", - "ms-cv": "0fbsiqLdPEaf+O99XCmivg.0", + "date": "Wed, 23 Feb 2022 14:11:57 GMT", + "ms-cv": "W2fOXowqEUavMkHIu7R42Q.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0gzgWYgAAAADn4BMI01KhTqNsQJTP2+TuUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0rUAWYgAAAABJUcMxa0GFTqXFJ3JYXqjIUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "28ms" + "x-processing-time": "29ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index de75d9210dfe..d4a3d4c4c314 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:08 GMT", + "date": "Wed, 23 Feb 2022 14:11: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\"", @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T13:37:09.6081555+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:01.2029526+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:09 GMT", - "ms-cv": "JSyCvToJ90iKs9Hn8bTOfg.0", + "date": "Wed, 23 Feb 2022 14:12:00 GMT", + "ms-cv": "2iRV0Yb5XE27X5mdqQaa1A.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hDgWYgAAAABMA4CyJ1yFQIbbew1lzqvaUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0r0AWYgAAAABA2+odaMLtSJcn8OltjmYwUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "37ms" + "x-processing-time": "1720ms" } }, { @@ -58,14 +58,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 13:37:10 GMT", - "ms-cv": "uruFix4h3kel4awwljqbsw.0", + "date": "Wed, 23 Feb 2022 14:12:01 GMT", + "ms-cv": "O9xV/mV1NUmXnLAqSkP00g.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hTgWYgAAAABh6lLODm61RLKclp1ivjY8UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0sUAWYgAAAADQtuGiInvkSLz+U+3JOdTQUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "516ms" + "x-processing-time": "590ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 5a941cfb11b1..ed6b689827af 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:12 GMT", + "date": "Wed, 23 Feb 2022 14:12:03 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\"", @@ -36,14 +36,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:12 GMT", - "ms-cv": "L5n2LrhtWEehip6H88/Jtw.0", + "date": "Wed, 23 Feb 2022 14:12:03 GMT", + "ms-cv": "q8nVsVFWxkGFuRt6GXzD3g.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0iDgWYgAAAAA2vLWjYQ0VSYPulz6Eah6yUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tEAWYgAAAAB5yGvUqtc/RqLVc07mqzJFUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "15ms" + "x-processing-time": "26ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 25727023a100..389d545ed46f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:11 GMT", + "date": "Wed, 23 Feb 2022 14:12: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\"", @@ -36,14 +36,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:11 GMT", - "ms-cv": "tjLABNhwmU+J2FEQHeMV9Q.0", + "date": "Wed, 23 Feb 2022 14:12:02 GMT", + "ms-cv": "UxGCgY5XAUaWAWPjGX8WEQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hzgWYgAAAADZAUWPIR/hSomu3Hmp/Mh8UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0s0AWYgAAAAADfpm0ChnwRJlihEGU7un/UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "13ms" + "x-processing-time": "15ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 4aacfb7ca999..4203c2f28470 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:10 GMT", + "date": "Wed, 23 Feb 2022 14:12: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\"", @@ -20,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:11 GMT", - "ms-cv": "Y2w6mQk6qUujXRfyxfOIVg.0", + "date": "Wed, 23 Feb 2022 14:12:02 GMT", + "ms-cv": "F4Mvoa10ok6jvreNHdZn6w.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hzgWYgAAAABQu0blUVipSojOH4aP3c1uUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0s0AWYgAAAABh4dsnwpCNSKCEteCifI6MUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "23ms" + "x-processing-time": "25ms" } }, { @@ -59,14 +59,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:11 GMT", - "ms-cv": "NGjEQ9AiTUedSfUv6/Xn1w.0", + "date": "Wed, 23 Feb 2022 14:12:02 GMT", + "ms-cv": "P9H2pS2xBUa+roP0QUUbBQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0hzgWYgAAAADR9t78LklXRbeRcMnPiSC4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0s0AWYgAAAACAINA7d2hZTolvfIy0DE/uUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "15ms" + "x-processing-time": "21ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index a3132c1155df..8c90111d6f09 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -11,7 +11,7 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:11 GMT", + "date": "Wed, 23 Feb 2022 14:12:03 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,7 +20,7 @@ "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -36,14 +36,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:12 GMT", - "ms-cv": "PKYZfDY6jkC6Uq2AUQsDSA.0", + "date": "Wed, 23 Feb 2022 14:12:03 GMT", + "ms-cv": "H6s8/HHBJEydEtBRIOuZzg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0iDgWYgAAAACMQ8JnEkwzQZM2RC+0fcW2UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0tEAWYgAAAAD2NUGJdSsiRYrxmnE2a6QDUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "19ms" + "x-processing-time": "14ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 6a85a99f5f1d..1be56939662c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -12,14 +12,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:16 GMT", - "ms-cv": "ACJ9ZOJJ40uDciaMYCqLHg.0", + "date": "Wed, 23 Feb 2022 14:12:08 GMT", + "ms-cv": "JQnIJAngGkmVjbYTxwohmQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0jDgWYgAAAACx9tzIp4u7SKTzNtxMpRBpUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0uEAWYgAAAAATy4tBREtZR5PvWh64sWRIUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "17ms" + "x-processing-time": "18ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index ae5c4303cd0b..19181953ed30 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -12,14 +12,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:16 GMT", - "ms-cv": "PFF46YewekiwcIFrQGxhEg.0", + "date": "Wed, 23 Feb 2022 14:12:07 GMT", + "ms-cv": "3bs3M1TZdke6NZhcg0iVpg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0jDgWYgAAAAB6dtZ5kCgSSqDDMasDylMMUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0uEAWYgAAAACsu74LeYx/RKwzgkm4x3EHUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "18ms" + "x-processing-time": "20ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index eaf8273f484a..62396b411d44 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 13:37:15 GMT", - "ms-cv": "h9RWjC1zT0SABkEbxa7SHQ.0", + "date": "Wed, 23 Feb 2022 14:12:07 GMT", + "ms-cv": "Dk5Bpkt8lU6lOiNqoGKxow.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0izgWYgAAAACcdcUeWm3KSJsKHd9Bh7ljUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0t0AWYgAAAAC9B0BXISeXQKj9QZ2I+l2sUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "44ms" + "x-processing-time": "26ms" } }, { @@ -35,11 +35,11 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:16 GMT", - "ms-cv": "9Dv8ejnINUWPpdkswTMPMQ.0", + "date": "Wed, 23 Feb 2022 14:12:07 GMT", + "ms-cv": "Np1mK2YSE0eiFE9Xi6ymTg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0jDgWYgAAAABlOr39d4KpTrmo1DHBjyw3UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0uEAWYgAAAABohWqY+fVnSaeeplzDQagrUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", "x-processing-time": "18ms" diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 1e960fce926f..fb75c7228909 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -12,14 +12,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 13:37:16 GMT", - "ms-cv": "ymdt/KjbEkGH64wNAi3kWg.0", + "date": "Wed, 23 Feb 2022 14:12:07 GMT", + "ms-cv": "SPGbTMvbH0aJYmF/1qwNqA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0jDgWYgAAAAAmZbjYu70fR53p6d2zJzDBUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "0uEAWYgAAAADv9h3juPWAQpEe/KFGah+KUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "21ms" + "x-processing-time": "17ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js index c169e463bfe4..9aff7bd7e98b 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'J9bwmNRUPUGdwEBMrICuZg.0', + 'pcrYeXjTskumQPEhpc1nKQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '25ms', + '188ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dDgWYgAAAAAgqIuPlBQoTbySgnzzSC+0UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nUAWYgAAAACv5L5FsDn+Q5qIruz3pWoPUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:52 GMT' + 'Wed, 23 Feb 2022 14:11:40 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js index dbc90f255617..569aca7a24e5 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js @@ -7,7 +7,7 @@ module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:54.3212462+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:43.4928049+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'LxdndeLrwU+FsGLhscIriQ.0', + 'cD+bAxihQkiGT4jJX40oRg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '38ms', + '231ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0djgWYgAAAABz05JmQQR0R5CH0hbV2K8YUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0n0AWYgAAAACqRsYP0nPXT6+XWr8kGXF0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:54 GMT' + 'Wed, 23 Feb 2022 14:11:43 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js index f54e844456d1..8f142d4b3e18 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js @@ -7,15 +7,15 @@ module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:53.1838645+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:41.536654+00:00"}}, [ 'Content-Length', - '920', + '919', 'Content-Type', 'application/json; charset=utf-8', 'Request-Context', 'appId=', 'MS-CV', - 'PeX3CLVg7ke0yYX2IIBfSQ.0', + 'A3VV8f0vOEuZeDHvlLI0Ew.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '44ms', + '70ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dTgWYgAAAACzwSNK8nsWSLSlpZWoDNlfUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nUAWYgAAAADW03xlWOoVTp1/ji9U1OcrUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:53 GMT' + 'Wed, 23 Feb 2022 14:11:40 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js index 0866559d8007..40241d5322ed 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Rld8Ov0RCk6FTbZaMVSSNQ.0', + 'JAKQZTp7Xk6ZWNrKZeKnDQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -27,9 +27,9 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dzgWYgAAAAD3NCuU/jitRLaNVZUzDDbTUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0oEAWYgAAAADkniQWcZKSQpxkWbRZj5ngUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:55 GMT' + 'Wed, 23 Feb 2022 14:11:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -39,7 +39,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '5pJMDyKP00GiqVHFWIkvBg.0', + 'k8y6BjGjDk6BHtXQs/2B6g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -47,11 +47,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '148ms', + '141ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dzgWYgAAAAA2GGjHOvVVSJItx5XAuEfUUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0oUAWYgAAAADMAgIy4jLMRYpkqMxZaqaqUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:55 GMT' + 'Wed, 23 Feb 2022 14:11:45 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js index 00be96558a8b..d10bd48faacc 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'rpvzvL4DrkSXLailU1FtqA.0', + 'z0VDS1lX50ahYHT56phBNg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,19 +23,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '29ms', + '141ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dTgWYgAAAACTeuXWTQtRT6ppBw4wr6IjUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nkAWYgAAAADF6cKIMqfIToxIogaJ4hkmUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:53 GMT' + 'Wed, 23 Feb 2022 14:11:42 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:54.0930884+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:43.0037861+00:00"}, [ 'Content-Length', '811', 'Content-Type', @@ -43,7 +43,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'XZus635+nUSWFqG7X1VXoQ.0', + '5i5z1N2xiUWuwhgqZKuXcw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -51,11 +51,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '34ms', + '97ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dTgWYgAAAAAj9d2I3hp4QZzEisewEnGyUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nkAWYgAAAACpOr5dESqGRpbNr9x4MZTvUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:54 GMT' + 'Wed, 23 Feb 2022 14:11:43 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js index e84ecf1a3c59..cc56a162600e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'XHKiSHsRSUavc96YDv8OYg.0', + 'iOaOZF/rwU+q1YAUH5ZL+w.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,19 +23,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '28ms', + '26ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dTgWYgAAAACp6zTMnXeTQ4v23MAbEMi4UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nUAWYgAAAADhQMi1qcOCTIrVehPWLDBeUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:53 GMT' + 'Wed, 23 Feb 2022 14:11:40 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:53.6359191+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:42.2028491+00:00"}, [ 'Content-Length', '804', 'Content-Type', @@ -43,7 +43,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'fbSjSSoNtE2HZ3Jpye9yQg.0', + '2IzwYODvPE6NZDByJzQzvQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -51,11 +51,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '34ms', + '160ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dTgWYgAAAADlzOZAChyzS7eOncA4RJ4DUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nUAWYgAAAABNarni34JzSYAuWITXHkqGUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:53 GMT' + 'Wed, 23 Feb 2022 14:11:42 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js index 229844035dfd..f1fdddcf0789 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js @@ -7,7 +7,7 @@ module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:54.5488012+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:43.7590929+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'j+hEhuNZEUKXDl+hfIuCkw.0', + 'dQqQkG8jtEiz0Bm0jKl7mQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,13 +23,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '41ms', + '42ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0djgWYgAAAAAVL+ma16v+Sa16Uv+/8CDfUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0n0AWYgAAAAC6W1LgFzYPT5rELolTFj2zUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:54 GMT' + 'Wed, 23 Feb 2022 14:11:43 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -39,7 +39,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'rynVq4FdAki5zfBYxYj0ww.0', + 'QH/Z0Pyawkqw3E4gKAFm7Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -47,11 +47,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '171ms', + '851ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0djgWYgAAAAAfYB4f5JWgT7zcvWncCySDUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0n0AWYgAAAAD4Uk+Zc4ysTqGSCD4R91ytUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:54 GMT' + 'Wed, 23 Feb 2022 14:11:44 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js index 76fa71e3dab9..e227a54dc5a8 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AvC50LyzctRCiQsWpVe12MU; expires=Fri, 25-Mar-2022 13:36:43 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Au8bU692-4ZDp3g_Qsekb4o; expires=Fri, 25-Mar-2022 14:11:30 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxkZx_DwZhiHRCSJcOiPt5hnOESDqyk8bJ0V4I9QxZ9FYnj0Dl6d2zvOL9Fq5-akeHND12zoToI4pX7Eshut974HlKI6RwG4eRYfQ8x22pdvoBypadN42sPJDQMMiCRNarQgsW32QyyD6vRXjZvpFDX78zJqg-OxirepGjgROLnggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzlYiMRRbLo9Au8AYSumWDNuIP_pI6Ev2HXXh4DfNbMs52qv0iHzyelkuOQbZypvShj7tvZstEePpkEWxc5_Z1xP6KBencsP4nbUG6FOEd71VqhtyzXSwZ7Agul4OOCTmRd45urJHkLy7cC9n7I5lTfExaCGhEfrJWuKdZK5dIYUgAA; 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, 23 Feb 2022 13:36:43 GMT', + 'Wed, 23 Feb 2022 14:11:29 GMT', 'Content-Length', '980' ]); @@ -62,15 +62,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=Ar92uTYMWCxJvQLcNwV29aU; expires=Fri, 25-Mar-2022 13:36:43 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhfNUiuHFvVHrmPgZoRgJtA; expires=Fri, 25-Mar-2022 14:11:30 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrL0NTH_xUbJsQ_cD3Yus7IYNNFqNwpstNU1wnyC1ByxKkYQJom0RETEUnOQrdiNVOzqA6IKUhcsAq8plsXoscot62TpkNzFWgT9XJ-HipeRlJhGc-ydrNSlDMEaurl8nQLGQphmO03Y2mNf98_ERQ_nFY6nzyQUtsdmL_xpWm2RogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryGZ94O3WIcffvvvxIN9vYNTHKTBCSJN2yrSqVmN5GC3uN73WN4I0UoMPge71VgfKYsm0qNUCpTaQNut2_1rMNn5lz2OpFSGQx5CgsjiLakoNtRUfFWgnGHDwtf0FPVT2BHSLcqA-b4R2vOQ-KUI-U_aNI98luyH9oGiEqj_327ggAA; 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, 23 Feb 2022 13:36:43 GMT', + 'Wed, 23 Feb 2022 14:11:29 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AlyICirVDRpNqe4Es6z1DkQo7iuqAQAAAGsvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:43 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ahks_3hBz-BJoQ52pXVJP2Mo7iuqAQAAAJI3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:30 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, 23 Feb 2022 13:36:43 GMT', + 'Wed, 23 Feb 2022 14:11:30 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'sn53mXfmJ06KbU5ZfZP4tA.0', + 'JaCrOEdeXUSPKX3fl+lMRQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '83ms', + '161ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0bDgWYgAAAABXqheiBr/3QIwY8o4JIwdLUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0kkAWYgAAAADetDmg5g0tTrF8shY7R3G0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:44 GMT' + 'Wed, 23 Feb 2022 14:11:30 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js index 6b3ebbbbab22..a650335b3098 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AshUBgAlcUVMlVNBuDdo8WU; expires=Fri, 25-Mar-2022 13:36:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtS921wlQFZMnR1uBtC5nB0; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWgc1OcgnvE6UE3Q3FVbhHAEm52gtlKm0ky3d8KG-F75xQdvDMyxGf0EkwjctH8aP3WiYicId488Rst1w1xYCD3S3LTMBLnF6-5RL0d_pcnU1O1OlnsHmLbLJkYPzASDn2p7dc6FkGDjWfdkqO_S6dbc4PiByBsyNfi5tjQRXEnggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvnzVEqEPrctzwXXKaGVP2aQk7lBG1L4XLwk4V8sZ47q7ZYInLXgfMAcT5_zZl_GG9EsoIfxDr-ryrIqJ0iWVMblaY0vGf9VzCiAcuSjRcwfxK1Pqa4BYE-Z2MoD1RU8C_TfmON8DWuIpxpZ-Gyv12OiK8rKwDrlQitmaPH86Tu4gAA; 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, 23 Feb 2022 13:36:46 GMT', + 'Wed, 23 Feb 2022 14:11:33 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=At8UaIcALt9KlVRgLj38T1A; expires=Fri, 25-Mar-2022 13:36:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ail8mNHrGD9Kifybe2yelLQ; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrdvVOBAmnEznk6-py5S2lrR6EFhskCQqQV7hilgpXf5hhgcSUQbGnkH3WyQJG7q88FZWO_Mb6Wtw8bnh2dZCA8DzopuGkyZiIVqRcoGWAQuMz_9HWmRwt7QHkL9GxfWV9ypc4Mk9FdmWf7r7bC5X_koWLLG3bJkaYPAPetWpgUHggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7YRlCvGuxSx9qfThl649MLtcWPWhUnUPj41o4hR8JrFNOTco-YudXbiVC10wmRHU1K66Umn1WKdHGUoz3T7SdKRC0HbgiqlLJdzG8bmmzIxhu21NYkz7GBw_axH-KEqdKfWtmjpN-azCyEus9zr6NK4-sMYmyBKfly6NUoawNWAgAA; 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, 23 Feb 2022 13:36:46 GMT', + 'Wed, 23 Feb 2022 14:11:33 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AoZ43j4lPvZCoNz8TLzFh5Qo7iuqAQAAAG4vqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtXzZYEcCCJMsZTlrBl0Mc8o7iuqAQAAAJU3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:47 GMT', + 'Wed, 23 Feb 2022 14:11:33 GMT', 'Content-Length', '1327' ]); @@ -113,15 +113,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:47.8030109+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:34.451814+00:00"}}, [ 'Content-Length', - '927', + '926', 'Content-Type', 'application/json; charset=utf-8', 'Request-Context', 'appId=', 'MS-CV', - 'On1OG40rqEavavNmm0NnOQ.0', + 'aVj6Dp04skSxfg2Glx4Edw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -133,7 +133,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0bzgWYgAAAAD0Z4sMktkbRKyBuURuyvVyUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0lkAWYgAAAAB6rIPoukNBSrlLu2eSWxblUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:47 GMT' + 'Wed, 23 Feb 2022 14:11:33 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js index 03c0410dd748..f97668bf9679 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Akqy9wx_7mJNlDGUGpzq1ro; expires=Fri, 25-Mar-2022 13:36:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjZxQ10UXf9Mq-HdXwwBoSE; expires=Fri, 25-Mar-2022 14:11:31 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrA0YwOURgoXBdb-7LXn7_Hg3B3ZJUQgqxLN2lKq_2YgiesbSgqHuTB5Zqy3RjG2qbNRSoTbmlTqiymojLlE3vpAYSXKoa-bx3ZPDKBVXTorJrfTT0TiH-jygqeKkDnQnu5qeEOGICvIQ4pOYnU48dJYFFj8FRK2oz_g13HucmKZQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-CLeVPBer_uaNxlsjZwCWXUpAyGoLZfoHY21UaTbJB9Wyy9Y_QPgzwDowxWXbbyiaXC_YJqDGbIqHiLb1qwUPISawn6vsDrWbErNbIvwpBoFerEOO22vvsPmp4QBlGgAVA7Mb7eXUI9WewP_rq3p-SQgBEg9utv2OA3FVo7y7Z4gAA; 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, 23 Feb 2022 13:36:44 GMT', + 'Wed, 23 Feb 2022 14:11:31 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AvCTAzaI8HxIpDWcdEMOg0w; expires=Fri, 25-Mar-2022 13:36:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhmG4tGNxK1JjfmVXC5rsWI; expires=Fri, 25-Mar-2022 14:11:31 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrll-JlvI4CSxBhmEOKfLwyPMYAhbpc-43bjGgBPfvrq1tXFsvTbDLH8F-Q8tRik86YVZzO_zDLz-dXbFUB1BcdRi6h9guq-oYY6xqx1o8lI6f5fctUCQXFFhq8QURLBoImsUWaYUZUr_0_BVq1Ae_sMha1292K_sjJ_LwrgENkEIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4UmMO1fZfOx4Fpk51Wac2ZPZCy9F5DVEvc9e0YuJO9kc9ue1aErlBEHgA3UZyIv_teJrCktdLHb-Xxm4_g_c4RCrgyfRGI2ytsWqJ8ra_3ybh1-x2QNvhA3QIV9ImRCAq9o2-WgrPwvpA6LW528Xz0vSdXracF7reJVzQLH_8iEgAA; 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, 23 Feb 2022 13:36:44 GMT', + 'Wed, 23 Feb 2022 14:11:31 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AtTwkxi_M3hGnlumCW8FNkwo7iuqAQAAAGwvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoZo2uugH1BCkhnqC0D4rO0; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:44 GMT', + 'Wed, 23 Feb 2022 14:11:31 GMT', 'Content-Length', '1327' ]); @@ -113,7 +113,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:45.3983764+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:32.2076703+00:00"}}, [ 'Content-Length', '920', 'Content-Type', @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'EgYSeIKgFU6pSKRVj5zttg.0', + 'lUXZ+aeDEk2IF9IsBRa1BA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '38ms', + '45ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0bTgWYgAAAACShEQCzpTbS7CVqW4wnfhpUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0lEAWYgAAAABHZ9LKTe+1QbZhoEpiMQQsUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:45 GMT' + 'Wed, 23 Feb 2022 14:11:31 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js index 7a1ea12ef815..c11d20223c2f 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Aic3SVsFTcNNmVY9oToWS_M; expires=Fri, 25-Mar-2022 13:36:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AmUXrqa06h1LuuG1FBBJHwk; expires=Fri, 25-Mar-2022 14:11:36 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7z2sIC0byMQe1wop7Hx3QgUPoiHFzOCG8TNboDLqwKkqVOlEkV9SoA_9N8aXgxvFz6wTBeYon8G18qt_QOk_cY6MP1ctcBccEEoOnP9hJP7Uo5FCNG2Q3gDOTIiuhM5SphVWxTGH7iTPY5ixt751Tru0ziWuWu0W_P5ZezR2tCUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1ua-dpsUYI69wjYWaQ0pmHaKaEqwPN_Z6w8pZdHgRmhkQ3195gddpn0FChD_x-j0C6t5DJwMUlXI0R1JeDk7WvavrvalSBAt-gLzURIwLnTG1FO6l28gvhtBJwrfDz_3ycR_kEU9-q8eh2GTb79pEDVr-wmYqI9bfIat6hYQEYwgAA; 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, 23 Feb 2022 13:36:48 GMT', + 'Wed, 23 Feb 2022 14:11:36 GMT', 'Content-Length', '980' ]); @@ -62,15 +62,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AhOnp7cIUflInWo-mgbslYA; expires=Fri, 25-Mar-2022 13:36:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArGAccn1lbJLsELqakSl-ZE; expires=Fri, 25-Mar-2022 14:11:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrpbqk6CakKnKDuwHB4Pr-a2jMPOHQ9pX16IEfS43cipfc44mQ_81h-tzcIHMtDcDhgx69Axn4Ke03wktvY_c5ofU_XWDvFo3LVtClPJi42PcP9hgzrAQF5HNBo8jCt_cgxeERfLaWaPCW_2fVRLiKbzUru-e7UNgbKmBPKR6LC90gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrbd-C0p2Ewi2rWU1q0DR3Z6SPKdH6BX13RPwiSRUCYjQTIKD0SmYLTrbJBgAjU5jlygCQ4jNl29lwPFnMrLvsl-7kPB9wdy7hTzckKfBHt948Kh7w41RcF7eH5LeVr4nanWiLem0zJ0czbAEw1pgYAolYg1tyd3k55XotJATTn74gAA; 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, 23 Feb 2022 13:36:48 GMT', + 'Wed, 23 Feb 2022 14:11:36 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AlrktRRYApxBvvgPVzj8PPco7iuqAQAAAHEvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aok9HsvOtzpCpSt-vnFMfCwo7iuqAQAAAJg3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:49 GMT', + 'Wed, 23 Feb 2022 14:11:36 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '++NqE5PCRkWJW12Df9WT/w.0', + 'fUJYKP+UUkO3ejY7m2f4fQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,13 +129,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '21ms', + '88ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0cTgWYgAAAAACaW1ema1AQIHma12smy25UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0mUAWYgAAAAAdl47Ecf6eSKYcn14JISRXUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:49 GMT' + 'Wed, 23 Feb 2022 14:11:36 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -145,7 +145,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'QBEEy5VwEkOmyDPyhHdEPA.0', + 'tHMGM9YkD0CmPjf/gldzVw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -153,11 +153,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '147ms', + '168ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0cTgWYgAAAABLOavT+AEIS6ff50LYghzfUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0mUAWYgAAAAChf+bvWB3QSrQZcLTbdD/sUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:50 GMT' + 'Wed, 23 Feb 2022 14:11:37 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js index ea45f757528f..2c17c4ffd6fd 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Ary6sg0teo9DjIq_V5FEln0; expires=Fri, 25-Mar-2022 13:36:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Av_vHMEl1MVIs41tea9d7yY; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-q63QHZ4-a7tmH__0MQTs_4bSmWpToqHosC8Jl7vKse1wvMe3e3wwiUHQY0IaalzKrVezJ3rRmcF6yTsrpl2F_8lg4a__59Rl-Gdl0iP38yrz9pIb2z-o0gPiHdaYOwLcJmug_9-UkyASAZ9c0d0iQrbONYp_wlEUIde65dYvIcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrk9kZlEskXas0H0H_rf7BgoOHby0-hOzCqZQZhEF1Pk-l9P30XzwHGTEWm9kSBUEk8tkTX2M46Oil75T5v-HmYxkmxc9CX369xD0WmBIqzBf19PAuODrG0qav3NNa0R2O5adTnmHHRzbTAzDqLFt-9SLzfOiGC7PvKoJAHLOgii0gAA; 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, 23 Feb 2022 13:36:45 GMT', + 'Wed, 23 Feb 2022 14:11:32 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'Set-Cookie', - 'fpc=AiEYsSnnkEtBmxklBYs6ILw; expires=Fri, 25-Mar-2022 13:36:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjwyFfATCu1AiMqbJFzPiIo; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4Ojeei824KEVwT0iNY0A4hN7NEIf9hZs3vEs-qmDdQ3rgV-sk2M-G0fYMM5lGcavJ_hSucUnHmkeIqhBJeoBOG_DYAFsQXFFcehBSnZGcSKTy9FAC2V7WgkYzagThufUfs8KpP6RoU4raQUhl73be0dn_XkWl-iK0-BDK0KlzdggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZbBKErYpxtHfXASeOzbSXEiPTuXHxz9bUxVGO6TFFG3kyrzRxECwsESlyveYnLy4qWaeKGqwsVDBX3MfrpTSU7AtOTjhzsf03pz5HfiHF4QX0X2zfCtypVTZJxgiF9a5dtWQXoiJX6IsYQmbVKSu1ferzfD1XTUHJVF-yLNwLssgAA; 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, 23 Feb 2022 13:36:46 GMT', + 'Wed, 23 Feb 2022 14:11:32 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AubUS2MRarNJjNIdPHPSiYo; expires=Fri, 25-Mar-2022 13:36:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArIKN3sNq7lKsXzYzkdPflko7iuqAQAAAJU3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:33 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, 23 Feb 2022 13:36:46 GMT', + 'Wed, 23 Feb 2022 14:11:32 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'OncWKXezhUuDBTs572G5YQ.0', + 'RtvAoQw8pEq1Gz+jd7ZQ4Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,19 +129,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '21ms', + '25ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0bjgWYgAAAADzMTtTOifJSr6QRdXTJve9UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0lUAWYgAAAADufwG/u70bQ5uKQAmTEkl0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:46 GMT' + 'Wed, 23 Feb 2022 14:11:32 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:47.1190033+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:33.7767596+00:00"}, [ 'Content-Length', '811', 'Content-Type', @@ -149,7 +149,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '4KeVioEWzky9gT5cC4m8JQ.0', + 'Gd85eYKz/kSPOfaCqACCQg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -157,11 +157,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '34ms', + '29ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0bzgWYgAAAABhpgUD0xbQR5a/X5FfHr3AUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0lUAWYgAAAACZNuuWRcEPS7O3dLpXvyknUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:47 GMT' + 'Wed, 23 Feb 2022 14:11:32 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js index a0ec1fe2ad8c..dac24fa0a06c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AnkEgmE3MdFImjKEiCaP9aw; expires=Fri, 25-Mar-2022 13:36:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AkENiPAUblVEqrpM9bpDx1E; expires=Fri, 25-Mar-2022 14:11:32 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZOzlj3ZAiX8He2rq6rqxGUZg-emRws1jhmclWSbI8pMu1c4ff2gvztZXMGsPQbpB2E-vm8qU8n7C19qNLc6Yg0STMRUtmsQJHJMFuMXI04SeJq4bEOUY9xD8e4FPmNSXty64mMPC3dAhYbMEGJ8aJtNk6Dd2yC5RPQAxTqo_PO4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrj-Jv2hKqsF_oTRTkuOBf9SiWoLApIXbWbk5lfN_RJZylD1a4AqRKrSz3pkwk0U1LUC87FqexfWoKd7YcpSsroldhZk35FidORrk083YbXQcxq0jpKM-7m-FCHLa0_z09u4hp44HSglJbvkxMMdTb97OV9i9bvZvEdeLBqkBxVVsgAA; 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, 23 Feb 2022 13:36:45 GMT', + 'Wed, 23 Feb 2022 14:11:31 GMT', 'Content-Length', '980' ]); @@ -62,15 +62,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AjO0okY0Id5OnABiT0OGF5Y; expires=Fri, 25-Mar-2022 13:36:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoKc8mMcTMVKnZeBsUK3ZD4; expires=Fri, 25-Mar-2022 14:11:32 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8TRGtajcXwur_d8TzhWjhbSQZQfWR4wNZ4Xog6NtLCiy0kmMnK66h0AgxNBtmul5HJow2zyFMp8dLyULX4kn3mNj8vxWZmxpx4JjcCTT9Z7-hP_PxD8QTGtag-5KAEibZXpIm6FIgcOOn_ROJs2lQrEY07ql7zpfGJl3OFIROCcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSvFct-nJpGUG5-W1blapyZEH4DbzfyOH4WIp1juty_D5B-pa3JARdDG8hWLW3XXwRlEgvZ_OH0oz-1Z0K0kxPl6AKh5jHws_vE8qOWCDl9L-E7aOV-1SbJq9fWkHH2ni-ReK9LAyWLdKcgSPfX6gEf4UiRYatzJmuctm1HGeXZEgAA; 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, 23 Feb 2022 13:36:45 GMT', + 'Wed, 23 Feb 2022 14:11:31 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ak5kNM3mJkpCrzD0tWdEuQwo7iuqAQAAAG0vqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnCVwFEd50pFo28pDGxt8cAo7iuqAQAAAJM3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:32 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, 23 Feb 2022 13:36:45 GMT', + 'Wed, 23 Feb 2022 14:11:32 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '2GCJActSHkyhGVHssRnMTQ.0', + 'kkAs/QPKlUm1Yz+zwc9dcw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,19 +129,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '21ms', + '23ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0bTgWYgAAAAADoVD+UF8QRp5cvPKYyNM+UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0lEAWYgAAAACUOELQi60TQ4Ag5yNombY+UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:46 GMT' + 'Wed, 23 Feb 2022 14:11:31 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T13:36:46.2276099+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:33.0072924+00:00"}, [ 'Content-Length', '804', 'Content-Type', @@ -149,7 +149,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'KaXNK4ClWkuUY7KaH2qhww.0', + 'CsLD5ffAOEO+SV+jWxk8HA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -157,11 +157,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '29ms', + '32ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0bjgWYgAAAAAuzVpEiBiHTIH35Y0FFnzlUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0lEAWYgAAAADzUVmkaGakQ5sFy8baAXSxUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:46 GMT' + 'Wed, 23 Feb 2022 14:11:32 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js index 1ee004b5eb15..9a7489d8eb9e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AvqhW8vn6LhMhnEZWKwcHdY; expires=Fri, 25-Mar-2022 13:36:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Amv3JUla2cNLvJ_mAwHQ9O8; expires=Fri, 25-Mar-2022 14:11:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsuMGkDwYAKXsJzzdcZmiWcH2ast4iT7zAd6uStoSoihyRVHOMUKUZmNYs3tx9NVqgG8DHihvoiUfEffnLspAO2___oFBM6flpFxa2BeXpWNgKafdt3AYJx-XsBg41quwum8nGz-frdbStSg1Z_7ivpP3lcVsJ7XNC9RK6x7cRLkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsBFbDt8jv9Hwgw65cuiHhzbcQTNZhIEFmQMPELtt0WQHkMWA4KOyKTngSrv-poeMsp6fOU4d9Tk4q4RKfy7lh0m-to4LLAp6nnC7FeEv3zHlC0l4GblsROECrwlwebI36b6EMkwOyqt09POYXiGo7HFIqiygpuGf1xXTYy4zVWMgAA; 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, 23 Feb 2022 13:36:47 GMT', + 'Wed, 23 Feb 2022 14:11:33 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'Set-Cookie', - 'fpc=Ar6yiWwGr-tOu7-Trn_Urgc; expires=Fri, 25-Mar-2022 13:36:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Akw9_3fMaJFJl1XbaiUxLAg; expires=Fri, 25-Mar-2022 14:11:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8FqOThAwSAsKznsPP6YzcsvD_rO-v_2wvdDD0Dy7fTOqy5Zzexfqeme_LczXlASnQTky6BUUcfXsVXxZKC9rMKMxQsH2_SheNcSrxK5o1hgdSeZzOyTLjp9B_JtZfvv7nGhPtFx8VkIFWVyhn99cbOra3ynl_i93S5ZMBV9H7NIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-DRBIl7ORik0yK7phhZ3pOGfuYLNIcuVBRlpMENpLe9vmEtDwCEL7lrrrmSnZ-9bNMbUY3xyMj4ZRGSxxziDHTdI0MUhqsDzExbp8bQZErr06p1aDcETpci3jtcT7gV7OBumsL5AeunQMB4a6RjdrqprRbrHyf3wSrlOEZoezI8gAA; 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, 23 Feb 2022 13:36:47 GMT', + 'Wed, 23 Feb 2022 14:11:34 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=At8Bu2PmJONFmZ-nsZjWQVc; expires=Fri, 25-Mar-2022 13:36:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aq2WXcMA-BdJvEBaEzoo9i8o7iuqAQAAAJY3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:35 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, 23 Feb 2022 13:36:47 GMT', + 'Wed, 23 Feb 2022 14:11:34 GMT', 'Content-Length', '1327' ]); @@ -113,7 +113,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T13:36:48.4907497+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:35.4011886+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'WPbHoZ5AnUmkzermawQRKQ.0', + 'PlLgUIAcm0CjanZzk8VZtw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,13 +129,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '35ms', + '38ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0cDgWYgAAAAAWXiX6iCXsSpfr0kGWz1BAUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0l0AWYgAAAABwfDNFuOA5Qok9UiwEorAWUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:48 GMT' + 'Wed, 23 Feb 2022 14:11:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -145,7 +145,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '5UnnxX1lvky0+r3cy03L5g.0', + 'ZoJPGG+OMUyjTifV2rV0/g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -153,11 +153,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '412ms', + '686ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0cDgWYgAAAADISddQG7OMTZiPEGvsuQH5UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0l0AWYgAAAADFaRZYcnVjTZeCkTZ4skxzUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:49 GMT' + 'Wed, 23 Feb 2022 14:11:35 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js index 0a9c33305efa..0f790b975928 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Agl6jbm46kRPg2RNJkIT_ZY; expires=Fri, 25-Mar-2022 13:36:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=An2Wi7TyvUlGgQUkkzVA1rk; expires=Fri, 25-Mar-2022 14:11:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgNCTRBg_wDBHZVPsnhCGS2vhRJHuda8ERpNr0YqTH_lEXmewDX26J89Uvz3klVgH_cUWT6tgndX5tJMYAZVcpT44YnWXn4wz5JUEDaVgGuggqslBSY9uOqoZM0KW_CbX_FqRKn3Oa3DISw9G8i7e-rAkmD0feN4Ynub1v2eKV0kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQ6Y5bDleLk7mB1Te3_tm8__Mxw98Xpq8lLWRQJTlNQCdsQYLWqwZgcWo0tjcC-7ECuRJszTsQKMVpb9nMuxJdbgtf-xqXMrkH2giDAQRYuiaBYab7KHkXMZHp1Ex_MDa9g0NXigO_r6nmwhwY3RqR_SoydLHAW8dcYyf3ufmhs0gAA; 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, 23 Feb 2022 13:36:51 GMT', + 'Wed, 23 Feb 2022 14:11:39 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=ArBDrul27NZPn0sddxavF0w; expires=Fri, 25-Mar-2022 13:36:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=At0McSfom1dKvCupnoAtcHI; expires=Fri, 25-Mar-2022 14:11:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSLO976Q9Us3fEpUKpK2Uxk5bMuDLQqztGX0FYOd-YvYL8fR1ZNLJ58dAeVQLNLtZAmPdfXPdtEIzmIDe1RGMfDE9Sd9t7_3wc3E2ILaFjvugcLQzyFnUp-A0rxYwJ7EjOFEApKyGyOVNaigOeylIZmWaxh1s4YXbAHb79Q4QFZYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEhQw9D8dYRw-Tgwc_RqARdTMhaAU5fvMrYgDxxvv8pMaK8VB4Us6gJJWvkK01ADPAt1ogVigMeO7FegExclsyrZZ_lFqpZKMhYdPdy0ketetmsb44kKl-T-NlDb8s8_ZK5z4MuV2C9QzNxiOIKQtKL4ji9eBBMN3jVtvC77sKSwgAA; 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, 23 Feb 2022 13:36:51 GMT', + 'Wed, 23 Feb 2022 14:11:39 GMT', 'Content-Length', '1753' ]); @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AhbgC3PJvq5OuItnKBwquBM; expires=Fri, 25-Mar-2022 13:36:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArTVwENQkepPl48vxS6NAFI; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:52 GMT', + 'Wed, 23 Feb 2022 14:11:40 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '2V6Uu27V/Uis1/76rxPWHg.0', + 'AfcUtQH7XUyv73HjskFQ8g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '22ms', + '42ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dDgWYgAAAADlTnf3Pt9CRY92g+pyS7DJUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nEAWYgAAAAAtEmpLkRdGSLyyyJVyygNRUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:52 GMT' + 'Wed, 23 Feb 2022 14:11:39 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js index b3f0fcf9712e..eea1a2dfed1a 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=Aly5crmhrwlFnif5obgHc14; expires=Fri, 25-Mar-2022 13:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AiGfA49XXtlNu-PBkBgwywc; expires=Fri, 25-Mar-2022 14:11:38 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5XWWwoHan8iuQuq3DwcDiCC9hbDcYNInc5h9nfw0cKoYh7b9kJVLi3GSWKlSbIXC5TS3u7-KSwvZjOh3-TPde036HeD9H75LMgrPIB8FI1xgmzLgWwp1abFJXL6ypwf4S4jMt9-DjP43cV6eQKyRzfBgnEQUzs3-DKISjTE-psAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8xB5OTOrP4729nTB2Zn2TOxzCyFjsSSMzho3qbdb54Y1VsmB57hZhZuSuR7P8o4BGM30jMynjs0pzSMXYlVoZ-4lc_i0bp7SAXdv2xL72Ogz1OZi-uK9Mi32HbgWZMRwu7qk49MMO1FnhHBGwCCuKp8H9ex6mJcoqbwg91Juf3kgAA; 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, 23 Feb 2022 13:36:50 GMT', + 'Wed, 23 Feb 2022 14:11:38 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=Aq6CWXleyPFPiWG40UFkG6g; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AvO_RLDuGXNIkJrhOvzgrDY; expires=Fri, 25-Mar-2022 14:11:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7Dib5NRQvt6xzmgH7aOfkERs5tVa-jOksGC1VOvx9KytW7wHNsz2qjL43hnSm4PGeXwruljDgnbF6ribcfkeWayYX_eRx4gGDNzuDfftsSEUWUKMpsRj-Z5KvJM61eBwA1KiOtrCayHh6zTCOmyI-cwdV_kIdLJwVYD6cJMl88IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr07Dn9h1VAbQ77BnaVPw8wtu0-S28U7QR66-Whd5eTns4BkkxRPNsaABI7ildJbTTV6NyWtvyUEu9WPAuoZXmmmgsejmpdgADqIzG-dIOwv4uvpeIrWZSTQ8AhDOjcqlgx_vtSy5kRhdKgEDdR86fcdAq78AdQB5QRuDAGknsITAgAA; 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, 23 Feb 2022 13:36:50 GMT', + 'Wed, 23 Feb 2022 14:11:38 GMT', 'Content-Length', '1753' ]); @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ajen8wln5kBFlcLGdYOKRbI; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArHp6CxHg_hDhnBRK-3s5hc; expires=Fri, 25-Mar-2022 14:11:39 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, 23 Feb 2022 13:36:50 GMT', + 'Wed, 23 Feb 2022 14:11:38 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'M5cdcLcyRU+syJXhomv8Kw.0', + 'AvP5o34qdUK9FYSGnvUlng.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '17ms', + '28ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0czgWYgAAAADyT078y49hQrS+GDS8Mn1xUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0m0AWYgAAAAA5VH88RWgJSJ+9eg0drOL4UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:51 GMT' + 'Wed, 23 Feb 2022 14:11:38 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js index c302c6b81403..e740e03c6088 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=Aty-iHOqqcRKn5mXvZxA99c; expires=Fri, 25-Mar-2022 13:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtRUKE56j7RGsrgss-tFldM; expires=Fri, 25-Mar-2022 14:11:38 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVcAnnlqYPAuuWcUqSHXTiTvg9cLoY8-N3q7jMhjO5u2t16ECd7Cid0QL-wNw54QEEWjRgZYs1Ty5XEiuknu1G7LIFTB593phHmoPfwy5H_Zworq98pK9-NVmSIMXSLLD8mfEtj5QM2oI0480eTalHxYxLbWtMTYOn4GPTRPEvbwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSIe-71TmFgzBarECdNirzidcBTB1ZdnHhl3lbOdD2AO1OnotlKZSOCeKPj71NCqqMfxyKvoXGh-UVDoZxaaftyKjc7RCRYXfA2NuWt9s0DqZoUvlNANCGmMqj8bjcAArK1-BouzKvLBAai5jpRu8-K9Gwsm7np0ymq-xG2iE0fcgAA; 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, 23 Feb 2022 13:36:49 GMT', + 'Wed, 23 Feb 2022 14:11:37 GMT', 'Content-Length', '980' ]); @@ -62,15 +62,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=Al-uA1zliz1GtIU3-Nz97QM; expires=Fri, 25-Mar-2022 13:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aqw9AvttYfZGiVkB4FuDZ9o; expires=Fri, 25-Mar-2022 14:11:38 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1xBXupRntiRxLNHa5ppVq0_o09VGwp5rpqKRCtJmNzvzus-dVRZjD4R8AM4-onB4EDtZJ3ReiHLKBhqhk2dErrpXoBEfTbIe_TbrJERoITc3_KFMCN3HN-P8nl8rXERoa2laGY2nOLo0q2PYNikduSrgDev2hWbPmeTQvu1w3l8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzZ-vCSNtWiiPCN5uaM_bEwDx-gyLC-PKlEZZlWFWVK3Pw9lipfNGwVmSstgaNYTHoRYJ8dEqoStBEgz6XWxCiMv0dPDGutHrcsNTTaV_oDeZMPwvWnwghndU1gDFpXPBg9hq0HV8gSDnaGLfgUbleBb-EGmblb2CDvt1Z4ydMAMgAA; 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, 23 Feb 2022 13:36:49 GMT', + 'Wed, 23 Feb 2022 14:11:37 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AiocblQ-qXJJqgG0tkv05ogo7iuqAQAAAHIvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoQ87anafmZAucgZpejKkIUo7iuqAQAAAJk3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:38 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, 23 Feb 2022 13:36:50 GMT', + 'Wed, 23 Feb 2022 14:11:37 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'lFNN1P2BFEOz/oJsYj1+5A.0', + 'FoZX7clSB0u5PS9L3cHndA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,13 +129,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '22ms', + '40ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0cjgWYgAAAADIgzALk5VMTKBCicfeRynTUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0mkAWYgAAAADON6s31QNBQbbIn7tF2AXWUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:50 GMT' + 'Wed, 23 Feb 2022 14:11:37 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -149,7 +149,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'pIHaH1iuREqLy2ECJSKSwg.0', + 'Jm7h2zmFRUyieXU6vZ+BSQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -157,11 +157,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '16ms', + '21ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0cjgWYgAAAABV5CS3tSHDTbJc4rZ1xiIIUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0mkAWYgAAAADL6Xq4UnxpTIGlv90fR1BKUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:50 GMT' + 'Wed, 23 Feb 2022 14:11:37 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js index 6a12a56aad1d..e59685abbafc 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AklgsBHRtK5HoTPLEi7tAN0; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhdFTr6hkPpLolDH-M5pOPg; expires=Fri, 25-Mar-2022 14:11:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrd3awO0lZ2iSvkTcBn4DEoRQMQ8b08GwVOuHik_EMEmYCQSmywaRLQomXWse9i8YHrDDoFElwzflQhI9lDJXEW5uUiDgp_b9HOM2E9t7jg3n6_dMCBQt7yIuNiegfdH8GO71H2qmrX-g0N5Utx-1SFUUwlDyC-yKgQh2TvEX1PYogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUHOpGEdMlVxDvgmrCebet14oM5fVmpUcUaYlK4ckzQ9wVwfAQMqK3-wwS_HC9fcTog4YqZBhM3_se4g_cTs-leesceKIB821Ypjwc_uLYmvp5FHxQJiMbuNs5FqcUk6HJx1kZ6gT-V9jkBBnKh6UhDxZXuaLHAbgqjSUAXU7LJAgAA; 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, 23 Feb 2022 13:36:51 GMT', + 'Wed, 23 Feb 2022 14:11:39 GMT', 'Content-Length', '980' ]); @@ -60,24 +60,24 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AjDC_iBk-R9CtECngGBO1jc; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Atx0FjzJ2OtCq_gICBmw6Og; expires=Fri, 25-Mar-2022 14:11:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr24NcOhcNXAon160TZ7IkjufUzFAqH8OOJFVK3zgQJoeunSOTZyQcA58P-DfWC0FLhMnmryK2w0dTaTkvqQWr0HgwwdQgaP0ahtT4XPN3sjBYJAIYKzystWm1ZOz2dQ6SnT4NmFuJxDeK266a-Oq8ouOAxnmfM5Umf2flEv6L0G0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIBs-yifAdfv0cf8MZ_20qyMalIvSGQ8Kb_-A9HZ1iNSzf9O7miNJ9igNqq4Q2xDadNRs8EEReEFO9Uigo6lfdwqz7SK9QS326lgPlGh_TwwwQa6fGQlTeM8TFGalpAWTaaX2GxQrgy1bKJWNy_Sl94-3dOn0yLj8Ldgi34qJ4IsgAA; 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, 23 Feb 2022 13:36:51 GMT', + 'Wed, 23 Feb 2022 14:11:39 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ + .reply(200, {"token_type":"Bearer","expires_in":86398,"ext_expires_in":86398,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnCLvO4xCUxDoVMViqnBtYwo7iuqAQAAAHIvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ApLV3vn53nNAm0EdsaPcdNM; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:51 GMT', + 'Wed, 23 Feb 2022 14:11:39 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '4sv0QWr50kO7ig/hRXwZEQ.0', + 'wwuqmxf6jEme7zPoEUylgA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '19ms', + '48ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dDgWYgAAAADuSEQoqCmGRpk20+84++/qUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0nEAWYgAAAAAGmWROyFyrRZworwkHJUXJUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:52 GMT' + 'Wed, 23 Feb 2022 14:11:39 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js index 339bb8cbbd2d..2bf9044e2094 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'JkWcjnAfpEO3106WKT0Phg.0', + 'mwWmAi2j8EWREeYHOaG7iw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '22ms', + '25ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0eDgWYgAAAAD62ApEeahHQKlHBhRgj0lJUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0okAWYgAAAAB7vCwMeo3wRIBVcyh013xQUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:56 GMT' + 'Wed, 23 Feb 2022 14:11:46 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js index 9b7db91fb443..6720c7052c76 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'o7tBGif+6USIsqttSNI2sA.0', + 'zhJWfsR5J0KaePioMVqCQA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '19ms', + '22ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0eDgWYgAAAAC95ESmv6zWQJfBCtnwpgEmUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0oUAWYgAAAACfiK0EKrpTRaYwKp1OXIg9UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:56 GMT' + 'Wed, 23 Feb 2022 14:11:45 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js index 02da717fe20c..f884dc8bce46 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '5wvPEMEpr0u+Bpj0uLw/eQ.0', + 'ZqouB22Uv0KyTQ6i7R43tQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -27,9 +27,9 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dzgWYgAAAAD7AzClweaCR5z863FmTmSZUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0oUAWYgAAAAAZMlgF4Y5/TLfc61AIe4rmUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:55 GMT' + 'Wed, 23 Feb 2022 14:11:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -43,7 +43,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '1cOhq9InPkCF/EQSCSueCw.0', + 'iNA7/LAVTECwa5hJ/2C+Xw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -51,11 +51,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '20ms', + '18ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0dzgWYgAAAADRj78IbbfBSITXX2MkUkuwUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0oUAWYgAAAACLeRfBsu2ETpD6BdrJnknrUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:55 GMT' + 'Wed, 23 Feb 2022 14:11:45 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js index 03f820166109..7e37be9eeec3 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'nZ1yN++zvEyFLWPJP9q5Tg.0', + 'Ou9VjYYl2EOvlzV56kMt7g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -27,7 +27,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0eDgWYgAAAADE0l2/3d5PRoTL/5QKtxcQUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0okAWYgAAAACLaGrP3BUGRLh2vfcCVSzNUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:56 GMT' + 'Wed, 23 Feb 2022 14:11:46 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js index 9aaa3e297f65..d8f61a7896c0 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=ApvopePYRUxDsNdFWpKCCNA; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArBhOv66bcJPva2X7MKmONI; expires=Fri, 25-Mar-2022 14:11:50 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_SDsZXWXZp7hbFqVyqlJU07nSOgeTWrCtukLNmOdxHIbCgTK7iCfE84-me7lwbU4VxCL0ebxxYYXodx4FIgQEtYdJMiZ5iUAqTv4fYE2Iplms9mvkHw93XFpiZ5NSA5pwS0iLbInVb4h5rq6XpSasVQN1Iyoy4s5-Gmtvu6xf0MgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYeka8fO9n79Zoc2k8pXQtpGQGCPk52KRFQVAuigRP2SYO--43HlJDjNpnZb2hw04CtKOUKDTaRvFr_OT5keSq5tHYoPRm8W9OGQFKd3HeAMEjXq159xFI4P5MN9PJPJF9jX2SEp0PQ-wWeUtUo9F9Qv4GDh_rXkpl2JyvMpgsicgAA; 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, 23 Feb 2022 13:36:59 GMT', + 'Wed, 23 Feb 2022 14:11:49 GMT', 'Content-Length', '980' ]); @@ -60,24 +60,24 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AjGwpKIkcptGgH8RC2_ACes; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnsFppRVXt5Cn_IFnMlPlmI; expires=Fri, 25-Mar-2022 14:11:50 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBo69IUwWxU0_LTX9yWtbNiuZyX9d25BrgQvIcawaOA9gsfv6RVpDya3m8ABS8F6dB5JtQ71uqvwl9RAoOMWGe8m8y1pkS92Dru3zoZZ_r72nxOEUSuLixJXw0K0Dkaf0UUGUfOdLkFBSFNvT10pca0EWpdSCIlaHNfQPvKH540ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWBQPgsXqn_NhfdqWC5RTzutIib_tANgLUyE5ijsV0zLA2pAB0SwxPmIRvQHxEGX2uyOC9c3hW-hl1bHxjy3R3LX4XfJZGsbHf0iq8nYWvy2jFSLijlTK1CWMxNHKsty301ePdWxARdsdlRxGomLp3IACYcqggHyHKUC8ZcNga00gAA; 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, 23 Feb 2022 13:36:59 GMT', + 'Wed, 23 Feb 2022 14:11:49 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":4966,"ext_expires_in":4966,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P90FOBrnJm8FzqgO6BtUTbmjOW7kY0peNCMKfRP8D5aFzg26QRWXo18M_UTo6zATqkqi_2amqJ0hes1SdOqJbTQSWYXumxMvFFc2oac9JY5GESNSVpSzltnLQzjCKydG2DeLRmOlIPy-sajMp1lW_GUhHiGefdqM9E0B2wMRnz9phxW0qo4S51V6SK4gPseBrbv90E4vNcwrHgGgkI2vz-Ug54Ckyf5vA8qlTX7ixyXZTFHUu6EmH12Ta2T4Nu7mbo3bk4cf-P3TveZs4y2UIIHf5q0fSrEx7XrOJovvU7TdffhWm4P6m5etKP08_2fRV7IqDXWqMtg2RiU4cvGbShjqUKwXfrHxLPScwKXQbUwOuaKaHi9zSss3joDf_sCdEoiL7SZpBmbCWZOCi_qU0UJTVtRtJJCBi69SHN7BwPxdkWiFHGCppwIN2SEdKSV3LNbJEJU4AztS3NMox1W-lunJmhLCpyClQt7GDE18usaFk4PNBdv6c2kNMskJAcehPwungsGB16okbVz7UsDW4bPVcmp8UR9nvOoxNnR1lp8MZXtOfKcu-Tnvg4UJ-h5DEInsHM5P0NxJqdnwqO3mkDRCeoRqBCeN7WSXFRVReQjJHHsYSP5QFtOjo0Hh1O0AiEYN_oaLr-IHg3IrvhMFXXR06lmjGDOKmdQuSSb7psLsWtjdXtKVCI1STlo_RjTQafIg33eiYx-eoLMKGypHorkHq5wyL4DTEi2Ql1BVgh348QFPBNOT3lTM-OLmC0dCl530sxGKc6aXc0uULpsw_IXfC3OIBAy20EqKCaXaFFkz0tZkGmBR5moSbvlmcFDYHMXoXOyBXvFyvSg_crGlWeR8RZ2gmuj5AOv1cnTcTqqQCpczbIxkX5CHuvXW-gcVnyTjO9SiuHWMCkDNyvb5Jtbh8Fawo9KthDBwufK9s3FC6Q","id_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Ik1yNS1BVWliZkJpaTdOZDFqQmViYXhib1hXMCJ9.eyJhdWQiOiJhZmJhZjA3Yy1kNmJhLTRmMjAtOWZlYS0yMDM5MjA4MGZjYTciLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyL3YyLjAiLCJpYXQiOjE2NDU2MjMxMTksIm5iZiI6MTY0NTYyMzExOSwiZXhwIjoxNjQ1NjI3MDE5LCJuYW1lIjoiU0RLIFVzZXIiLCJvaWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJTREtVc2VyQGFjc2F1dGh0ZXN0Lm9ubWljcm9zb2Z0LmNvbSIsInJoIjoiMC5BWUVBeV8zenZzdmNxVUd1ZVdTUElxTXRJbnp3dXEtNjFpQlBuLW9nT1NDQV9LZUJBTXcuIiwic3ViIjoicmhraDI0Q2wxR0dQbkhpU3N0dzR4WXhPbV9rRGtVVEVOSWlUazRhLXkwOCIsInRpZCI6ImJlZjNmZGNiLWRjY2ItNDFhOS1hZTc5LTY0OGYyMmEzMmQyMiIsInV0aSI6IjFvaG1JampyRFVtVU5fNXM0LWlzQVEiLCJ2ZXIiOiIyLjAifQ.oTBFUJq_MMbR1dtyWz2GtcP4jMxA5ABi5K9G8BC0lv3S2Jmn5id-ZNN62pNnDlRkEX7ZXbZ0xIWSmyOTf2KsuMfMuFSYFGak5Ywu8WnpMwK8UsyYWdDrVtaIvAqXyttQif9yGPfOHKFcIOxFpqd4oE5Xn56wS5I_Y0VGB3vEPI4KEHzdaoIRcH-pMVF6Tx56fxGQAuByXzwFHljDfOsLzD1i-PXC3cYCCkA-u1JRfcW50jTt0twaq8_PCNa3C3-uEj76Xtt7gNUHL3KyVBJ5g_lhgbokxjH6YoymbcLEDAhWDgTZowzXIPK4GVFjEqknLQskPeN5ARqU5NRK6Yo0Cg","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ + .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":5282,"ext_expires_in":5282,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P95rlgx0E0Rj9EamuXEFwWg3RRCkqmP1QieDVu8OvDGPxexdoVBu7DEpproFgxTa_6QG8DX_7NgD7mPHNVj84Dc0bBkPCe7LjEIjSG5CmB_-NNH05hM1N7L0nJnTvRhRQwfSalfKu7MEbnEp3HcrsJmONfGNYxNqd5aAJLMjPgkaY4Y3wtIy0RdCa3jX-IUgj5Y-PeLEMzPfw7el98F3GXOYlmbJEZplGEcdO2jzrCLtWGa5X5hzTGdybBQz_zbqfu90V0tJbkd7URwaWVHkcz4vkF5SYsny77JHucqph_p8xv4kDiRiHTdhBkbRcayC_E3pEV0ULSLHk6KIyS1sNp0dogOcGn9jZP1PRkDc_cXkNRXcfBY-tSg8Kdnbm0WkVvWGJB09uhNKOgjbPfKADSjnzzOm0W32PXAVIT50JTvH1-5rK7s6dtjwufb99LEkASnVNApuHg3OaK93hGunDzB3jTbTGM6gUpqdN-c-o8YbpFvSJaom6CPT5ipr5rLku9dXjHV0OidUnGD7Qdg_vH3r5GCvQArjE5EVwEgcX3pxWg6X6pH9V67avfOh0WFXoEjrXIcQwYtn-I3kFRfRS-tgJA5h6mXjhOSAMuW0wiUGviQQ5FKcdMMMu6BI3HUxhhO_rgfbZA_Gb2uWkf21eAErJcSlu2M9eBvHJMQxDsfRiWWXFlp72DaD_8_jUFstx0z2KD8MbBuW_DhFWdOKpDVJ9XYPaajLjZJ2CcqHn-JTIUXh9gxlvQUvCN0Fga0jW2MnFwbeUbOppsvp0jSwUnexXQpaG9nn2v0rP8ANoIOzrKh1dxVHnY-kQJOgzkx54eJgPLm7tBUhCaH-MW_TUbghpA37EnJpEFB07CIJfn7Q-QzANURrPmlaTVUxG8NP2mCNzPArhMXtYYIJqjHhzgZlIrq-duiT9itX_wH7R_IBu8","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ApE2vQF8eidDn4Q7CBRbSwm4k9TnAQAAAHsvqNkOAAAA; expires=Fri, 25-Mar-2022 13:37:00 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Am4npxZyQplBiFC0odF9-z64k9TnAQAAAKU3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:50 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, 23 Feb 2022 13:36:59 GMT', + 'Wed, 23 Feb 2022 14:11:49 GMT', 'Content-Length', '4648' ]); @@ -113,7 +113,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T14:59:45.0791576+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:39:52.6478293+00:00"}, [ 'Content-Length', '818', 'Content-Type', @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'C0aScykU4kmjJffcLU9t1w.0', + '7b0Ndpub2kW5FMtPy84k5w.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', 'X-Processing-Time', - '833ms', + '267ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0fDgWYgAAAACuRs7wRmtdTJBNmmeZVFjVUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0pkAWYgAAAABbWyWh10A+QpnwtzGoE0e0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:37:00 GMT' + 'Wed, 23 Feb 2022 14:11:50 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js index b170d5d3c936..b7981f4ec505 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'c6fI70S6nkWnnTgEvyfSdA.0', + 'rm3gZqTSM0adEr5hyTEZcQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '17ms', + '18ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0fTgWYgAAAADqLqd0ykJFSr+pKadkTyAtUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0pkAWYgAAAAD+mKmHGP2nQLl051ZpM9WfUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:37:01 GMT' + 'Wed, 23 Feb 2022 14:11:50 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js index 2791bacc81c0..c44ee5b52354 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Bz/YFw9nnEOVzT36KVsh+g.0', + '1HF/y1Va6E6rXAlCnWja6w.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '31ms', + '34ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0fTgWYgAAAADdgV9qeNtwTpjbNH/afQdUUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0p0AWYgAAAAA3KGtJd6mZQaMHbFlfdY27UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:37:01 GMT' + 'Wed, 23 Feb 2022 14:11:51 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js index aa98df5d2619..b8e0c1a315ac 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'VuNVfmvN30yMecvI5SmqPQ.0', + 'V+/kZclpaUSJgOr2ludaXw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '17ms', + '28ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0fTgWYgAAAABmK8nW6u2RQLsmYzXyItV3UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0pkAWYgAAAAAo/5XEAaLYToM7DZsl1w9VUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:37:01 GMT' + 'Wed, 23 Feb 2022 14:11:51 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js index eab034fc13a4..c1e93a934ce2 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AnZf9BkWSBRFrux9LTOP15I; expires=Fri, 25-Mar-2022 13:36:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ApYB_ny5iwFAh0monhO2pG4; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEtOFaXLayRGEkf9spJyMY1KzmrukjErDy6PYpzDFIK2B3oJcSOfjmzJoDcA1JSuSltMuBfDRIw3WqZGfL2XmlONlHU-FlQ0fIsCslr4VHhqD4WmQFYW8lkgLZD-rAOkHWepiWcROkcj_wMROKajczOzBjSkTymnaT-MnXuXGj38gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr14CjqVRZS6UwkfsUZcN7CrxzcqNNlh2DS-ZZnPmQ-5iE7939-dpn_v3Asd8Dnm_RNH7-yM2tCeMxbXlVq2Tt2H94op5rmMJT8qtMYUiYgMvQsSgWXkkBua1R1W7ZKTgfWQ2XHJjzhyn-LOV3C7CsA485NlwJi8A3Wf8xBhPn524gAA; 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, 23 Feb 2022 13:36:56 GMT', + 'Wed, 23 Feb 2022 14:11:45 GMT', 'Content-Length', '980' ]); @@ -60,24 +60,24 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AjavP5fo5qlAjLeNJHsv7KI; expires=Fri, 25-Mar-2022 13:36:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnLG6A8FItFFlZJhy1pw6L0; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryL8NF88LtVqBKW9cNAfqR7n3zUFBcdn2swvxglMDEIHaDGsgPXn1mD1YHkA79nFi3WWVMgOmssmz9Jsj_LR8PgzpHno4svPavtoRE3rjLQ0XfBVu1_CWdsOAqH2HkmhaYUm0jGUzXBYlpFK4Ed51Qsb3HkVBWKulKRDfjAnsyiIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1m6Z5V1_0jH1XoQVr-YXvD8-dovZ0_KDraWF_7pn-LC7Q5rlqHlSpRKcLnXdjJjJZStUFo23yx8fgKwhkxZZYDS_J1PM4WAqmlOgt-7CZVXSu91Lx4j8m0q_jGyUGS8FLVvJq8FxQzTQIXvnsu3dpBuD0-CMUlBFtjCRuZSSe8IgAA; 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, 23 Feb 2022 13:36:56 GMT', + 'Wed, 23 Feb 2022 14:11:45 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":4011,"ext_expires_in":4011,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P8mkngYNT_YIActKeoVeFNdD7rn9Ji5vwvYTWyHuicNjKpk0X9OMJ0jq9Dn-NZpWE1d8adf6m0SYFhQA4ol3pXKKcqdNY4XCelscOpRN08T6QtFf-ZskiApeIyndKNjuodgcU8F4jdqrwJRJu4BBeLAtk8KTzbSwrjcpIh7YP5XcI-RAXoCW2pVKBDdUexQkqdl4ouUCS6jFfl3PcG7nTD90W8jujEL7YjiW3EeNBgS-Vt6ax14Qgs_4TRdHzDdiXAYLktbqYDESHq9Om8PP-t2TsvdFs1jFRTEkNabrPTpmxKE7bn0GjEnuLekoE4c5OB2cAru7WaIH9W-yk56EaEZQw0Ua-ZbWrBsuOSeR_gPAMHVZm5XWvm_GB4Vr9uuIOY__rCWyJw7-ku99vNa_qxLTmTvb0WxpLURAuiNO5SXz02baUrBra4drQre4C45SyxmxS1T7Vnv22O6Ml9-JPkKPglIqCAVUNhS8KlF0JnUbrOPb9b0_5K489fmVwB8kSWFJ-SvELBWDFgXqY7lDixVOH5CWzMD_YK4YzOrwXxtaCL2yW1o8_G1caVbQqgJd0B4B174p4IbhQ5j9Mw17iP_5eMCEb24kEjDXNtS7SsX0bSIAp-kwdrCyC4ZGXuHIGsZOWG_xs4V0kW6q-SK862dQ2UQnLyYDJc8w8M-iKhWg9qeDSIO7uwVo5eoTd5zhuJOqHaFD__32qJyVwlaSaXBPXk_GuQv3ufQLN8GwhpNtBQ4LY6zNpFdBmzCGktGC7KZnzr2PYTT_muFNHJ1Ujzqzd59gnZ5gEyPq6hfj7JDaObnews6iSGuf1QNqF_znXuLzc2U2_HYJzgTOYzsugr-nDdwSq1-G5eTIqNCQdXg-9lu722ii9EmNA8b9uI96y9pjTI1ILl7jGDhC1My5vrPHfE5EpBYmT7CFfy9QUipn1Y","id_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsImtpZCI6Ik1yNS1BVWliZkJpaTdOZDFqQmViYXhib1hXMCJ9.eyJhdWQiOiJhZmJhZjA3Yy1kNmJhLTRmMjAtOWZlYS0yMDM5MjA4MGZjYTciLCJpc3MiOiJodHRwczovL2xvZ2luLm1pY3Jvc29mdG9ubGluZS5jb20vYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyL3YyLjAiLCJpYXQiOjE2NDU2MjMxMTYsIm5iZiI6MTY0NTYyMzExNiwiZXhwIjoxNjQ1NjI3MDE2LCJuYW1lIjoiU0RLIFVzZXIiLCJvaWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJTREtVc2VyQGFjc2F1dGh0ZXN0Lm9ubWljcm9zb2Z0LmNvbSIsInJoIjoiMC5BWUVBeV8zenZzdmNxVUd1ZVdTUElxTXRJbnp3dXEtNjFpQlBuLW9nT1NDQV9LZUJBTXcuIiwic3ViIjoicmhraDI0Q2wxR0dQbkhpU3N0dzR4WXhPbV9rRGtVVEVOSWlUazRhLXkwOCIsInRpZCI6ImJlZjNmZGNiLWRjY2ItNDFhOS1hZTc5LTY0OGYyMmEzMmQyMiIsInV0aSI6ImV6aTJ3MXE0NzB1RmtwcDBUbEJUQVEiLCJ2ZXIiOiIyLjAifQ.TTeobVuWPWvaCxIO5P0CkYROSO9ojQ2SeDoAUzupOEMLdLvicigoqG_lTqkCPlSfkUCcEnnBshS0PdTGz3MqVpx_76er0eOaq259EdxNmbldCyIKapQ1UPbN0Mk4HNCTnerEUsxs7ORJPrXRQiE81lNQh4nMykkvpxWiQR-scWC9SfNoiYf7eOgHMcuFkP2pXN46lftEugVW_XUp4SjpRvkNowqC7O42jzRg762Vc2YmjToTsnOlc-pc9v_yjXsGye7WTTERhQHnfV51pOJSiB487j_KcIEcZ7qrtJ8-gfWnt0BLObKOzxg-oWz9fnsR4OhAK_b0nyBTvLv1G1x4LA","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ + .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":3632,"ext_expires_in":3632,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P8WvVkvkPtRYtXHDzu-Esg4zutnxn3wtv4oZHBH3XrrX0VUPgevlJZHAywRslvVtKpA16Itd-BKE1qtAvH_RW4BANRcUq1n41mEptbW-KEhXkV5EK6zAGzYvL9XNU3XZqtMUb-N7YpU0v2plN2j7tDG-81Sx6Jz7GN7bRLKE8A7mxy4FODlLDNj-jkq436NPJ-G2pE86R9ToF1QMK5R4rxsd52GUFWlKLLtMvAUmOg3Szp30SyyAsNBxT2mY4gaFAgM0lIURkvzCkzuQ0Ukv57iJNA7tXMTbua6x_4QxWso8sVsHeFc-hovZRpnkgZqv0qTtcVcQstbbGUMMWhiKWU1_X1_ux0bujMgk9ibttSXqeap8k7hoD1hFXzMn9IZxoPrS3FrqfY-qXVAccCcGZWa_T1tRlT9eUCmP-wTSI3d-I9IFYnaClwAVlYqLVJVA0YWV0-SWlI8Hy_ZJqaYuJeO1KKBVkMUIz-rGjG9N5cU2Lj4QcPgL7kamm5e0XJHl6KnvUKi3lNMdes9cLg8eCx-_IGUgvw5dmjNCCykh2N4AxuSZEF96nU5UikVBHyAsKufqWR0fDX6CYasvDhp_2pNBDcJfqP6xxDL8faboArG4sJr2KVznoAoN_05EttiNmYZyljfwyVnvIbEycwPxfykUyf76_OfFKuVP-B5hNxw3ZxHTktDD2asEmyzoP2W5oDROlYExDbjSY5ubsraCbl44SgySa7cg8cH1zBT9gMyaKQuQyRxUmZGAlhuTqBkrdBnA4jGlsQWZIeXjEM3nfWWu4_ZAP4dlHFVylPK454buuf8whJSWjYcncf3XlYrxVhxax-oOtAlDlcurKOPXWNq793UGFfYA298D-NKLCnVrE69Xpw6z9dF3UBThtfJjpxCXep4GR5GaxPSv-xdHgNxpQpafaMYWvqgthpZWuyl0UU","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -95,19 +95,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AuOoHZawXulBgVaMNRMw-LO4k9TnAQAAAHcvqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AqLftuJjYaxGnqcq3GFHt_-4k9TnAQAAAKI3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:56 GMT', + 'Wed, 23 Feb 2022 14:11:46 GMT', 'Content-Length', - '4648' + '4627' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -131,17 +131,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=An_PkYXp4GtDkg3Resr68JI; expires=Fri, 25-Mar-2022 13:36:56 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Als_EirUFG1PjnuA9CmM1D8; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLwzqnf1oxFC50sqakDgDGU8z51MrFlhL6HsLck64dyU3lDg9cpGhCaHgXiOPpRXL6R2GVWYgOM2aYehHDOIRxPsTIByoySiuksXJL07MQgevszT7V0xX7xgVrlR29zclw-vQbhkSwz1ZBLy4lXQ-x4xMpy4MOpMBPjU18Sv035cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTHznjVRcNu49cF8-tHJxcdgATXTYSBTXBvzVcNgY315H_bBUTH5vw-XnlcZtwmxr8r2mQ_6L58I79pe_hv5YRR0tzV5hMxmtIVe2xXr-_UQi9kBLYUg4vOtPszKVnIvfU9jm5cjFW3LHWWuSytEDBnHlN9BiClWyLfzGjAdlwtggAA; 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, 23 Feb 2022 13:36:56 GMT', + 'Wed, 23 Feb 2022 14:11:46 GMT', 'Content-Length', '980' ]); @@ -166,17 +166,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'Set-Cookie', - 'fpc=Auj5EL2QXW9ElO1eR1rTRGk; expires=Fri, 25-Mar-2022 13:36:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhbML-ZKr11GqOrinjPkTr4; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr_lbKHwW_gGEaxONRJa0QFZon9I1ywmsyZMYNg_MGp655qvVUCDhynCakzVtqGL5LlMri3X-F67nHRDrCZ9XpQJlQHmQuocvk89jKFbg44sBKKd0oURj1T5P8ETRx3jajeAiSHREEAvGvyXF8LevInhXST5JNsSRVgAQk8c2V730gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrS0zI7QJ6a6n_rvDF4q9zUpTW-I_uKiOmOW7kHFC9S52SNHkSzf3HuwAPJ61BdfQPzKP5km1qf6UYPnFSSxkLbaVmMo84MfF_n-q7kwDNZtpED5oySgTGlZ5rUDPJ-5nJm93prSMY23feBPGpIlHckY_lN1Ny3lEbZ2vvij5GbjsgAA; 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, 23 Feb 2022 13:36:56 GMT', + 'Wed, 23 Feb 2022 14:11:46 GMT', 'Content-Length', '1753' ]); @@ -201,17 +201,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ArWqDeJgUHlJtZo_g2oV7ks; expires=Fri, 25-Mar-2022 13:36:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ap5kPND0lYpKhLrwM_188ss; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:56 GMT', + 'Wed, 23 Feb 2022 14:11:46 GMT', 'Content-Length', '1327' ]); @@ -219,7 +219,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T14:43:47.8778237+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:12:18.5383279+00:00"}, [ 'Content-Length', '818', 'Content-Type', @@ -227,7 +227,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'DWrb4HnTVU21OIo87F+bZg.0', + 'PBTIbb6ejkOjBgn8LoDe1g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -235,11 +235,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', 'X-Processing-Time', - '417ms', + '362ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0eTgWYgAAAACryP56XcwvQrbW8chz879UUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0o0AWYgAAAABH5KZ6Oyy/Rq1Y4jf9AnR8UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:57 GMT' + 'Wed, 23 Feb 2022 14:11:47 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js index 31ed03154fa9..93734719f13f 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AnSfkUjs9RlKpru9c9FG8u8; expires=Fri, 25-Mar-2022 13:36:57 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ao-WbQYONz5Mh9kwKgx9npU; expires=Fri, 25-Mar-2022 14:11:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-QV6WCWlXdrCzBhOnzQwvH3k1tJwWinhNRh97ljqzaLgp_9hyxAV7pV0__Nl-h-xJVJuASDZl6a_vt-DLGKXWTrhTWoY5HL-tC3RP1wFSdoIvE1E-I3YHHfZGThP--M3TLqd1gkFCUhD7gr4i7XvUquathcAIXPPEB3TZEELsxMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwQVLNEkAfsmocd5FYXuLq4c7YyWA3N777QRKtt_NgybUMI6dki6ACJHs9N03JVoYF5vYx8VsAZR3rA0nLX-7wGAXbK6ZlT8B0zbyDxDrkycupd4bBZWc_ip-Tlmi3a3VYZMnTOFOVyeyvyzgNFP3tTU48Nww6ty3a0gNE1TUVEQgAA; 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, 23 Feb 2022 13:36:57 GMT', + 'Wed, 23 Feb 2022 14:11:47 GMT', 'Content-Length', '980' ]); @@ -62,15 +62,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AphDkNeavm5BgjatHuxRynE; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Au5YoK-hjqtDraaCrrwqAeI; expires=Fri, 25-Mar-2022 14:11:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8rBQ9Oo-qyyljoJopbHciPbn-T114ntvyr-PS_ck03vd-XahCpjUZ0sfvtct88XMAb2It69Z0b_ahoMH9kJjtanjea6HG4FLzY4cStOqB8MiLV6p_pXik5TD7bHPlDEHKL9K_SXvVC831yT8X9GnezYmmcHSe4RgVX6ImarcALwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrws4-uRBt4AvQ9w4aHg_rf1FVyfvjogLbpjeGSUBTYRDxd8l2MG90noCdV_yh50qHMlsRZU2RREoEZWxlUy3f8SsGlAgF_NJMeDTgp4liaXeqK7scbXhaDUffBPk9uPvDKUUedaMog2eGeWjHVc2CRxUYDC9bSy_uwfdCfHfBbREgAA; 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, 23 Feb 2022 13:36:57 GMT', + 'Wed, 23 Feb 2022 14:11:47 GMT', 'Content-Length', '1753' ]); @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AmP7wEPWlfJFqYFr2QUvxoU; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ai0qTbgJyO9KpPF5BI3u9GAo7iuqAQAAAKM3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:57 GMT', + 'Wed, 23 Feb 2022 14:11:47 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'lMq8DGnN9kCU9waVZ459/Q.0', + '0NzNVJOjnkaJa49BHPyRaw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '25ms', + '16ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0ejgWYgAAAAAn9G+P3cQsTIjJRrqnFqT1UFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0pEAWYgAAAABC4u17tzQmS61y1QrquyOsUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:58 GMT' + 'Wed, 23 Feb 2022 14:11:48 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js index 16d3b1f266cf..c6c7e1066c52 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AtY32BNDXN5IvwMpteu29ZY; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhRdDgR6BQ5Jmwy8-ZeNWak; expires=Fri, 25-Mar-2022 14:11:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-FX6WCRpHkNtaaMDFNAkZKMJV09XByTe4IZKixMbIw5TBjSl67X3IWIUwurYR5DzgfOBP49o44T9o6zcWSD5wN07r2LTRTqEIaL9kwRK7oErMx6w31uIGB5Ibq1t4Ogio6ogPJsdUfPzvbOdssppO7mqk8CBMv9-98n2iy3zUhsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrkT05ajP4sRHMOKYVbmDkVM6uUnDIxq900yQzzfY4x2-9rAcHLTlj03PNASeumhVCK60Y3FzRFaxR4ZjEU4xID7I7A_SiMrWvGCBMdsI4zPqRZm16tUnWg9nP8DreJ0jPcGi7FCwoiFHRRn7E7ss7MvE4Gn_dx0xYjImU-zOK5sgAA; 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, 23 Feb 2022 13:36:58 GMT', + 'Wed, 23 Feb 2022 14:11:48 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AoK2Oo-N4BpNudmRmq9bDuM; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Al31ysae7SlAnIUfY-9NC-w; expires=Fri, 25-Mar-2022 14:11:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAtuFjVEy7Qx9luCZL-u26QaqLdzVaemDMGbIhBPn-duwnOL_0VW_FOyuTlNH6ta8Gpfhs3OqQRWzDdkjaUImkAfRwtULEJPZU70K218tIi93cPhyWTMU_PCeq-LDcxt88a9cogof88Pd_ytMPCUCPUlqyj8BWG-kMWT-SG1eOhMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrjSsSds_6fRpMD6WRnvWFMz3WQ8HYFRT_JTMYdTspInDe7N_uIKDTTRjdMRczFvYp0ojcsgo-Cswv0e9tb_Q9YdltuPh_mecXeO1Tts93F1CCzzXvexrTXlldqh7oV-xBBx7rmwEAIak3niK4LvejyuVL82blquOlkTCewe4p4gUgAA; 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, 23 Feb 2022 13:36:58 GMT', + 'Wed, 23 Feb 2022 14:11:48 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnRkt0XTWzRMlkFHKlakNOQo7iuqAQAAAHovqNkOAAAA; expires=Fri, 25-Mar-2022 13:36:59 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlhMCKZWg2xJvAprzPnpDhwo7iuqAQAAAKQ3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11: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, 23 Feb 2022 13:36:59 GMT', + 'Wed, 23 Feb 2022 14:11:49 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'wfrOxXXTg02LrRhVxNPK9A.0', + 'CzL7gC588EGAS7+lz3UhsA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '38ms', + '33ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0ezgWYgAAAADfYFqODv3wSKmcZiyp0FnkUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0pUAWYgAAAACnKzidnD6XSZpe3Yqmb2PrUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:59 GMT' + 'Wed, 23 Feb 2022 14:11:49 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js index 14efeee51e49..10ef5f5ffb3e 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=As8ueauKkBtIjQCNqV_HXek; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlYLJ7vjctZMjU4uzfisg1k; expires=Fri, 25-Mar-2022 14:11:48 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWMJc7POnnnM3RvyFSwOWEUBh5FJOiYQLE8KNyWwtAwwfkjOhz953NMrHza2OfMhzgpuAmXQ1jPy1XNatPXXOw4CYfprGjw2l1FXIN3_suh_U_htHGN1Ri9K1oltrtP8yuXvvrqHak9nqhz5xQDc1uWEIjwBpFBdMOQ7BYJsPs4sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDvX_Oqv_rx4gAlND8b2265Lf0xeUYY9bBycMyMsotWa5Zmd-_XmQaQ3sivnJeYcSuagzouLAF3L0RBqFn7Obf3rU6iqQhnLCMmDoBagg9Onpe32gMXtYaO7IjLLakwQMYYUwXeC5sSTWgKheEGilbs6UxV6Wzm5Y7wVNOBWnBscgAA; 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, 23 Feb 2022 13:36:58 GMT', + 'Wed, 23 Feb 2022 14:11:47 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AhtHoXUVvV1Np-PGzSZrl4c; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ApX8h_94jwRBoAd6w6tU198; expires=Fri, 25-Mar-2022 14:11:48 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrS5zSIqLmVrw3DcaeT0gN3mCnoEOJR9FqUBqCUsnb9OaB_fFAYq8Jp0bzp694qXxLjEihBj3uSeoy6IJ5qDLspGNBf6OK96FumCsPCSlyrrsYdyCc189v5xMo-Qb-gnPXwRuwH1rN6OZ6xNcIVbITjWv_gNwgXjgM4avifk90u9kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9h8MsqjzGa5wbrmASUw64Av9YNsTQAlE53zw6Rnzcw7fmUQ-sGfUh1LirobtdWnBpMVO4UvBXbq2lRyhV_83CjiAF6ejQQhzV_eEt4-k0jm88OQqyhLMb8hMn3L2IM7bOUJRVXdRYYQDE14pHIhU6QT63NRy1isv6dJt_ZL56a4gAA; 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, 23 Feb 2022 13:36:58 GMT', + 'Wed, 23 Feb 2022 14:11:47 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ArkcpnWDeItHkaiv63zb6kY; expires=Fri, 25-Mar-2022 13:36:58 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ar6PXC1erYFLsaNPjA5DIcU; expires=Fri, 25-Mar-2022 14:11: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', - 'Wed, 23 Feb 2022 13:36:58 GMT', + 'Wed, 23 Feb 2022 14:11:47 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'K3pT7UvSb0yiETkbjAodcg.0', + 'd0WjwwXaHEyclff30poMOw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '16ms', + '15ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0ezgWYgAAAADZDWW2DTHCTqQRgWHxS3LUUFJHMDFFREdFMDYxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0pEAWYgAAAABtBVuHZ9YxTJEZOGfh2cQuUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 13:36:59 GMT' + 'Wed, 23 Feb 2022 14:11:49 GMT' ]); diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index 943b46159d8e..e459771fc066 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -48,6 +48,8 @@ export const environmentSetup: RecorderEnvironmentSetup = { recording.replace(/"token"\s?:\s?"[^"]*"/g, `"token":"sanitized"`), (recording: string): string => recording.replace(/"access_token"\s?:\s?"[^"]*"/g, `"access_token":"sanitized"`), + (recording: string): string => + recording.replace(/"id_token"\s?:\s?"[^"]*"/g, `"id_token":"sanitized"`), (recording: string): string => recording.replace(/(https:\/\/)([^/',]*)/, "$1endpoint"), (recording: string): string => recording.replace(/"id"\s?:\s?"[^"]*"/g, `"id":"sanitized"`), (recording: string): string => { From 54935deecfe5075cca3ba67e1762b22736951468 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 23 Feb 2022 15:35:01 +0100 Subject: [PATCH 22/33] adjusted test recorder --- ...recording_successfully_creates_a_user.json | 8 +-- ..._and_gets_a_token_in_a_single_request.json | 12 ++--- ...successfully_creates_a_user_and_token.json | 10 ++-- ...recording_successfully_deletes_a_user.json | 16 +++--- ...ts_a_token_for_a_user_multiple_scopes.json | 18 +++---- ..._gets_a_token_for_a_user_single_scope.json | 18 +++---- ...ully_revokes_tokens_issued_for_a_user.json | 18 +++---- ...recording_successfully_creates_a_user.json | 14 ++--- ..._and_gets_a_token_in_a_single_request.json | 16 +++--- ...successfully_creates_a_user_and_token.json | 16 +++--- ...recording_successfully_deletes_a_user.json | 22 ++++---- ...ts_a_token_for_a_user_multiple_scopes.json | 24 ++++----- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++---- ...ully_revokes_tokens_issued_for_a_user.json | 24 ++++----- ..._attempting_to_delete_an_invalid_user.json | 12 ++--- ..._to_issue_a_token_for_an_invalid_user.json | 14 ++--- ...g_to_issue_a_token_without_any_scopes.json | 22 ++++---- ...o_revoke_a_token_from_an_invalid_user.json | 14 ++--- ..._attempting_to_delete_an_invalid_user.json | 8 +-- ..._to_issue_a_token_for_an_invalid_user.json | 8 +-- ...g_to_issue_a_token_without_any_scopes.json | 16 +++--- ...o_revoke_a_token_from_an_invalid_user.json | 8 +-- .../recording_successfully_creates_a_user.js | 8 +-- ...er_and_gets_a_token_in_a_single_request.js | 10 ++-- ...g_successfully_creates_a_user_and_token.js | 12 ++--- .../recording_successfully_deletes_a_user.js | 16 +++--- ...gets_a_token_for_a_user_multiple_scopes.js | 18 +++---- ...ly_gets_a_token_for_a_user_single_scope.js | 18 +++---- ...sfully_revokes_tokens_issued_for_a_user.js | 20 +++---- .../recording_successfully_creates_a_user.js | 26 ++++----- ...er_and_gets_a_token_in_a_single_request.js | 34 ++++++------ ...g_successfully_creates_a_user_and_token.js | 32 +++++------ .../recording_successfully_deletes_a_user.js | 36 ++++++------- ...gets_a_token_for_a_user_multiple_scopes.js | 38 ++++++------- ...ly_gets_a_token_for_a_user_single_scope.js | 38 ++++++------- ...sfully_revokes_tokens_issued_for_a_user.js | 40 +++++++------- ...en_attempting_to_delete_an_invalid_user.js | 30 +++++------ ...ng_to_issue_a_token_for_an_invalid_user.js | 28 +++++----- ...ing_to_issue_a_token_without_any_scopes.js | 34 ++++++------ ..._to_revoke_a_token_from_an_invalid_user.js | 28 +++++----- ...en_attempting_to_delete_an_invalid_user.js | 8 +-- ...ng_to_issue_a_token_for_an_invalid_user.js | 6 +-- ...ing_to_issue_a_token_without_any_scopes.js | 16 +++--- ..._to_revoke_a_token_from_an_invalid_user.js | 8 +-- ..._token_for_a_communication_access_token.js | 34 ++++++------ ..._exchange_an_empty_teams_user_aad_token.js | 8 +-- ...xchange_an_expired_teams_user_aad_token.js | 8 +-- ...xchange_an_invalid_teams_user_aad_token.js | 8 +-- ..._token_for_a_communication_access_token.js | 54 +++++++++---------- ..._exchange_an_empty_teams_user_aad_token.js | 28 +++++----- ...xchange_an_expired_teams_user_aad_token.js | 28 +++++----- ...xchange_an_invalid_teams_user_aad_token.js | 30 +++++------ .../test/public/utils/recordedClient.ts | 6 ++- 53 files changed, 525 insertions(+), 523 deletions(-) diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index ab4cdbb6840c..e6d10a49ccb2 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:04 GMT", - "ms-cv": "FrcYpVAEpUCuuDkBGKxzNg.0", + "date": "Wed, 23 Feb 2022 14:34:07 GMT", + "ms-cv": "f7pwMQZ1yEeXwKxStG1lkQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tEAWYgAAAACqGyLB18nKQ63YqA3otYcCUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "030UWYgAAAADYO2unKGh7RIoUynQh8Xd2UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "37ms" + "x-processing-time": "298ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 35e8bdde7aac..9445f1cbabe6 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:06.2197423+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:10.739054+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "927", + "content-length": "926", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:05 GMT", - "ms-cv": "HRtM7U3lvUqOOFp9fIq4BA.0", + "date": "Wed, 23 Feb 2022 14:34:10 GMT", + "ms-cv": "4/jWwDEplkS+EQk9I0X3Bg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tkAWYgAAAABsZh3R7c89TqTO3zcKhBXrUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "04kUWYgAAAABGJWkER59qQ5wgVqVTQ2wpUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "39ms" + "x-processing-time": "287ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 5a6951d74026..1c4a6448ab79 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:05.0888996+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:08.9114914+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "920", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:04 GMT", - "ms-cv": "j20veyanwkOM9576ZqK5/Q.0", + "date": "Wed, 23 Feb 2022 14:34:08 GMT", + "ms-cv": "QFDAtMKmAkOsy1/KOByGig.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tEAWYgAAAABuiHdAIERCQ7zXEHBuNPNcUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "04EUWYgAAAADFGjRWS8dfQZfYqOLsPJXrUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "48ms" + "x-processing-time": "754ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 510c0df0d7cc..0f0744d8b87c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:06 GMT", - "ms-cv": "+B/eRcIzfE+pK+Kmivn4iw.0", + "date": "Wed, 23 Feb 2022 14:34:12 GMT", + "ms-cv": "D09q7QzaC0OnV52Yj3qbog.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0t0AWYgAAAAC77bPho3mDSpiWWqz6Tt4bUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "05EUWYgAAAAD7ESWVaqSrTISK7MxBhXBwUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "25ms" + "x-processing-time": "30ms" } }, { @@ -34,14 +34,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:12:06 GMT", - "ms-cv": "VwLtqU315U28BTJa8iwsUw.0", + "date": "Wed, 23 Feb 2022 14:34:12 GMT", + "ms-cv": "swSpPXO09U2aNnXjCnjH6g.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0t0AWYgAAAAAk/i4xuy7GQbmOhblw5nk6UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "05EUWYgAAAACHuP5ZxA2QQIe2pa8zMMmWUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "143ms" + "x-processing-time": "265ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 25033a0c5cc7..a5c6348f03cd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:04 GMT", - "ms-cv": "y/PJVv94Yky15jUMtobTXA.0", + "date": "Wed, 23 Feb 2022 14:34:09 GMT", + "ms-cv": "/McWEaeH5EqqMM1PfoJLeA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tUAWYgAAAACUZw3ijR05R6APl23jtll/UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "04UUWYgAAAABqvJ/lr1K1SZccoK4cNiRRUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "24ms" + "x-processing-time": "288ms" } }, { @@ -31,19 +31,19 @@ }, "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:05.9890852+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:10.2478445+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "811", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:05 GMT", - "ms-cv": "yL4t+tgKWU+XzmKEcLgk8Q.0", + "date": "Wed, 23 Feb 2022 14:34:09 GMT", + "ms-cv": "UlGkZLCaz0uP4hKFRfVqVg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tUAWYgAAAAAOXe7go1GESbKKCLxFtrrTUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "04kUWYgAAAAAl1V4hB/ztTKN9IJ2CPEr3UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "39ms" + "x-processing-time": "81ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 9014d675f069..c337dd36dd19 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:04 GMT", - "ms-cv": "G0+KMaJ95US3+QyxbFfvRA.0", + "date": "Wed, 23 Feb 2022 14:34:08 GMT", + "ms-cv": "FpTc19MGE0GiFrdE84GQwg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tUAWYgAAAADnR4yXZpuVRKCISu6sQTQJUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "04UUWYgAAAAD6VsMNRneeSJevOt3/x/NsUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "23ms" + "x-processing-time": "90ms" } }, { @@ -31,19 +31,19 @@ }, "requestBody": "{\"scopes\":[\"chat\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:05.5336831+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:09.4588801+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "804", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:04 GMT", - "ms-cv": "qISkCtdjL0iRhCe9TVU/9g.0", + "date": "Wed, 23 Feb 2022 14:34:09 GMT", + "ms-cv": "u0ZgIWC3yUeluwW0tOWjKg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tUAWYgAAAAA9s2zNDTsnTLqAwQjyjc8sUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "04UUWYgAAAABBnQjYKEcsS7CNTgcNsEcmUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "33ms" + "x-processing-time": "36ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 361ce4bef5b8..8b138adc712a 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -8,19 +8,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:06.4467336+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:11.2910428+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:05 GMT", - "ms-cv": "F8f+Qh5r3EePMxsfVozKAQ.0", + "date": "Wed, 23 Feb 2022 14:34:10 GMT", + "ms-cv": "du9CgJSgIkCpIx1ki5m2zw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tkAWYgAAAACx6M4XSNqMSLl+MLNTuz2DUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "04kUWYgAAAACCqGCJC6pYQ7o2XSwlwt1LUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "39ms" + "x-processing-time": "276ms" } }, { @@ -34,14 +34,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:12:06 GMT", - "ms-cv": "+a8C8SJJDEKUJksrXxGCtw.0", + "date": "Wed, 23 Feb 2022 14:34:12 GMT", + "ms-cv": "F1erb7r/rUGND11ZbPhVIg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tkAWYgAAAADlVlcWiwBGR774NW9cOA3PUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "040UWYgAAAABFMhIf5J7VRKtT+7NipqX2UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "593ms" + "x-processing-time": "872ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 9500a781db20..6057f72ed9eb 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:54 GMT", + "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:55 GMT", - "ms-cv": "uHG+soJq+UWA4qUv9/HPig.0", + "date": "Wed, 23 Feb 2022 14:33:57 GMT", + "ms-cv": "pz+AtNU6QE+sMILzFawTIA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0q0AWYgAAAAAxCZz0PM2NQbBYA2al2lMtUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "01EUWYgAAAABAFWOaBhQxR4RjhjiRF7n7UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "407ms" + "x-processing-time": "23ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 7c7ca8fd0ecb..8191fc29b58a 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:58 GMT", + "date": "Wed, 23 Feb 2022 14:34:01 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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:59.1380111+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:02.3249275+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:58 GMT", - "ms-cv": "gZTY1V9yS0uX6q+c48iaIw.0", + "date": "Wed, 23 Feb 2022 14:34:02 GMT", + "ms-cv": "IdE3BN0EI0KO6JI1CPhLJw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0r0AWYgAAAADlNWxzwBMlRYm5kIEhT2C/UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "02kUWYgAAAABq40zbQR8zTqEKJ3qcme8EUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "34ms" + "x-processing-time": "85ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index db2800784f36..bcd22c411d1d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:56 GMT", + "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:57.0343962+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:33:58.0195118+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "920", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:56 GMT", - "ms-cv": "anmCsOkH9ka8OExjR7Bprg.0", + "date": "Wed, 23 Feb 2022 14:33:57 GMT", + "ms-cv": "q/AJcqKzAESAbGfIeSSWow.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0rEAWYgAAAADIe96jvGxNTqoZFdv/lrP0UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "01UUWYgAAAAAMBQEy+9PtTpX9E7y1Mt89UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "35ms" + "x-processing-time": "134ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index a4dcaccdae34..b96ec2ef0246 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:01 GMT", + "date": "Wed, 23 Feb 2022 14:34:03 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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:01 GMT", - "ms-cv": "uBFDSmJY40uCqnlSG9zrsQ.0", + "date": "Wed, 23 Feb 2022 14:34:03 GMT", + "ms-cv": "Eng9Svh1jUSrz9tn769hJw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0skAWYgAAAAB/en8r7+8LRbepcT6D/1ypUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "020UWYgAAAADQ4PPMM8boQKvxVZz7YW2OUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "26ms" + "x-processing-time": "47ms" } }, { @@ -58,14 +58,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:12:01 GMT", - "ms-cv": "F0DDu1ImBkiRxnu9gl36Nw.0", + "date": "Wed, 23 Feb 2022 14:34:04 GMT", + "ms-cv": "I9IBWl2CXUiYoZix+cC0pQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0skAWYgAAAABmpnKL9t90T7WbjALKBV5IUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "03EUWYgAAAAABkEO6ncW+Qbo7oiuhWuOhUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "146ms" + "x-processing-time": "201ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 7c4f3be95478..2c0bee3db07d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:57 GMT", + "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:57 GMT", - "ms-cv": "JPTciQjsqUKiVvRZNFAqtg.0", + "date": "Wed, 23 Feb 2022 14:34:01 GMT", + "ms-cv": "eZBr/mw9/0CHQl7c6ZdTQw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0rkAWYgAAAADlRBAf9WFpR4L2/xufGywjUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "010UWYgAAAABIEtsSJxcXT7NVS3sIublIUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "21ms" + "x-processing-time": "55ms" } }, { @@ -55,19 +55,19 @@ }, "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:58.7235218+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:01.5582147+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "811", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:57 GMT", - "ms-cv": "FiKafyS8PUyAlioogOdR5Q.0", + "date": "Wed, 23 Feb 2022 14:34:01 GMT", + "ms-cv": "l4npDsbt80aYm/SmJMYl5A.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0rkAWYgAAAABPaFkZS2DPSaMXR0mTRKEoUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "02UUWYgAAAAAQhrKKda0OQpwXLy9VwpwcUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "27ms" + "x-processing-time": "77ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 851a1cf31f91..ada7dda09b6e 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -11,13 +11,13 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:57 GMT", + "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:57 GMT", - "ms-cv": "42jqjkjrMU6KMX+n1dO8/A.0", + "date": "Wed, 23 Feb 2022 14:33:58 GMT", + "ms-cv": "E1mXNjC1WU6lzD1zpPMkEA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0rUAWYgAAAADAhKNVSkg5RqbdsI51fuDuUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "01kUWYgAAAABYcv6ydwY0R6fI2BVmJulVUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "20ms" + "x-processing-time": "45ms" } }, { @@ -55,19 +55,19 @@ }, "requestBody": "{\"scopes\":[\"chat\"]}", "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:11:58.0912942+00:00\"}", + "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:33:58.7863334+00:00\"}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "804", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:57 GMT", - "ms-cv": "W2fOXowqEUavMkHIu7R42Q.0", + "date": "Wed, 23 Feb 2022 14:33:58 GMT", + "ms-cv": "b6S9UvPQO0yoM8CTKvzidQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0rUAWYgAAAABJUcMxa0GFTqXFJ3JYXqjIUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "01kUWYgAAAADbSZ139qqTQIv37pdG5O6yUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "29ms" + "x-processing-time": "57ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index d4a3d4c4c314..7f1759ea5a7b 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:11:58 GMT", + "date": "Wed, 23 Feb 2022 14:34:01 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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -32,19 +32,19 @@ }, "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:12:01.2029526+00:00\"}}", + "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:02.7726853+00:00\"}}", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "927", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:00 GMT", - "ms-cv": "2iRV0Yb5XE27X5mdqQaa1A.0", + "date": "Wed, 23 Feb 2022 14:34:02 GMT", + "ms-cv": "omksAq5Nxka9MFH1ki1gcw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0r0AWYgAAAABA2+odaMLtSJcn8OltjmYwUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "02kUWYgAAAAA4oY0L3vkGQaz5WNTWz12wUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "1720ms" + "x-processing-time": "59ms" } }, { @@ -58,14 +58,14 @@ "response": "", "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:12:01 GMT", - "ms-cv": "O9xV/mV1NUmXnLAqSkP00g.0", + "date": "Wed, 23 Feb 2022 14:34:03 GMT", + "ms-cv": "bq5zxgWC4US6YoXtw2HwLA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0sUAWYgAAAADQtuGiInvkSLz+U+3JOdTQUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "02kUWYgAAAABOzw/se6n2R50nOriRNR/CUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "590ms" + "x-processing-time": "683ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index ed6b689827af..8ad4e2fa811c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -11,13 +11,13 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:03 GMT", + "date": "Wed, 23 Feb 2022 14:34: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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", @@ -36,14 +36,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:03 GMT", - "ms-cv": "q8nVsVFWxkGFuRt6GXzD3g.0", + "date": "Wed, 23 Feb 2022 14:34:07 GMT", + "ms-cv": "DPKJViXfqU2nM4YNSM3eMg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tEAWYgAAAAB5yGvUqtc/RqLVc07mqzJFUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "03kUWYgAAAABaNg9Ei27GTJfQD12q04IxUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "26ms" + "x-processing-time": "397ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 389d545ed46f..c0eb6961349c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:02 GMT", + "date": "Wed, 23 Feb 2022 14:34:05 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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - SCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -36,14 +36,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:02 GMT", - "ms-cv": "UxGCgY5XAUaWAWPjGX8WEQ.0", + "date": "Wed, 23 Feb 2022 14:34:05 GMT", + "ms-cv": "IgwmDz97Wk2R+KIjxVB8Jw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0s0AWYgAAAAADfpm0ChnwRJlihEGU7un/UFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "03UUWYgAAAACiCM9qyXUqRaAU0BWUiyIpUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "15ms" + "x-processing-time": "75ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 4203c2f28470..abbded9a7113 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:02 GMT", + "date": "Wed, 23 Feb 2022 14:34:04 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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -37,14 +37,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:02 GMT", - "ms-cv": "F4Mvoa10ok6jvreNHdZn6w.0", + "date": "Wed, 23 Feb 2022 14:34:04 GMT", + "ms-cv": "figrEGlhYE+K9QUfW4ebmg.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0s0AWYgAAAABh4dsnwpCNSKCEteCifI6MUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "03EUWYgAAAADtcYBZYUOdTKaLD6CkwsndUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "25ms" + "x-processing-time": "61ms" } }, { @@ -59,14 +59,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:02 GMT", - "ms-cv": "P9H2pS2xBUa+roP0QUUbBQ.0", + "date": "Wed, 23 Feb 2022 14:34:05 GMT", + "ms-cv": "nCBh55qV302XS5iD5wQtzQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0s0AWYgAAAACAINA7d2hZTolvfIy0DE/uUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "03UUWYgAAAACrZQUJ3WZVRoR3XSSkXWm2UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "21ms" + "x-processing-time": "234ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 8c90111d6f09..8c1442c0fbc3 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -11,16 +11,16 @@ "cache-control": "no-store, no-cache", "content-length": "1327", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:03 GMT", + "date": "Wed, 23 Feb 2022 14:34:05 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://endpoint/api/report?catId=GW+estsfd+ams2\"}]}", + "report-to": "{\"group\":\"network-errors\",\"max_age\":86400,\"endpoints\":[{\"url\":\"https://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", "strict-transport-security": "max-age=31536000; includeSubDomains", "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - NCUS ProdSlices", + "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", "x-ms-request-id": "00000000-0000-0000-0000-000000000000" } }, @@ -36,14 +36,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:03 GMT", - "ms-cv": "H6s8/HHBJEydEtBRIOuZzg.0", + "date": "Wed, 23 Feb 2022 14:34:06 GMT", + "ms-cv": "3o7DGa9NBkuXnWSWKsb4XA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0tEAWYgAAAAD2NUGJdSsiRYrxmnE2a6QDUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "03kUWYgAAAABI3BMi5b/aSK6T18pctsebUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "14ms" + "x-processing-time": "118ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 1be56939662c..f0a6c4acb835 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -12,14 +12,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:08 GMT", - "ms-cv": "JQnIJAngGkmVjbYTxwohmQ.0", + "date": "Wed, 23 Feb 2022 14:34:14 GMT", + "ms-cv": "QknS6bzfyUaic1Cbio6h6g.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0uEAWYgAAAAATy4tBREtZR5PvWh64sWRIUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "05kUWYgAAAAC2XMSxrGYRToPr+imfU9JMUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "18ms" + "x-processing-time": "238ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 19181953ed30..ba303348e206 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -12,14 +12,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:07 GMT", - "ms-cv": "3bs3M1TZdke6NZhcg0iVpg.0", + "date": "Wed, 23 Feb 2022 14:34:13 GMT", + "ms-cv": "TujY3Q7o0kOXwzPVg3/2AA.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0uEAWYgAAAACsu74LeYx/RKwzgkm4x3EHUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "05UUWYgAAAACY7XhYd3xnSo8PbRUT0ylUUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "20ms" + "x-processing-time": "27ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 62396b411d44..cfbee83ff436 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -13,14 +13,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-length": "101", "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:12:07 GMT", - "ms-cv": "Dk5Bpkt8lU6lOiNqoGKxow.0", + "date": "Wed, 23 Feb 2022 14:34:13 GMT", + "ms-cv": "KzKtMqaD5UShr4yz1jEqCw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0t0AWYgAAAAC9B0BXISeXQKj9QZ2I+l2sUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "05UUWYgAAAABuxsvQ+9HVT7vi7lIFOit0UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "26ms" + "x-processing-time": "32ms" } }, { @@ -35,14 +35,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:07 GMT", - "ms-cv": "Np1mK2YSE0eiFE9Xi6ymTg.0", + "date": "Wed, 23 Feb 2022 14:34:13 GMT", + "ms-cv": "zZ5r4OiL0EmM3UtwcJdBFw.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0uEAWYgAAAABohWqY+fVnSaeeplzDQagrUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "05UUWYgAAAACxf5kxwbAJRLbUa8oy7bYvUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "18ms" + "x-processing-time": "28ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index fb75c7228909..ae1a63172fbc 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -12,14 +12,14 @@ "responseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:12:07 GMT", - "ms-cv": "SPGbTMvbH0aJYmF/1qwNqA.0", + "date": "Wed, 23 Feb 2022 14:34:13 GMT", + "ms-cv": "TRl5quKj9UmOU+4hka6EjQ.0", "request-context": "appId=", "strict-transport-security": "max-age=2592000", - "x-azure-ref": "0uEAWYgAAAADv9h3juPWAQpEe/KFGah+KUFJHMDFFREdFMDcyMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "x-azure-ref": "05UUWYgAAAAAlvLe7w5a0S63x0cWSCBBvUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "x-cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "17ms" + "x-processing-time": "49ms" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js index 9aff7bd7e98b..bb9b67edcaba 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'pcrYeXjTskumQPEhpc1nKQ.0', + 'dOoXCp+y8EStiEbF5jtaJg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '188ms', + '27ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nUAWYgAAAACv5L5FsDn+Q5qIruz3pWoPUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0xkUWYgAAAACmHGDtmDgdR7t0ilJsSO6MUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:40 GMT' + 'Wed, 23 Feb 2022 14:33:41 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js index 569aca7a24e5..2e76f1e18bab 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js @@ -7,7 +7,7 @@ module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:43.4928049+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:44.4616372+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'cD+bAxihQkiGT4jJX40oRg.0', + 'lHSNqKHAiEy/JwEqMci7fA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '231ms', + '202ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0n0AWYgAAAACqRsYP0nPXT6+XWr8kGXF0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0yEUWYgAAAAAOMEPP99ROSoX11w/bkP9XUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:43 GMT' + 'Wed, 23 Feb 2022 14:33:43 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js index 8f142d4b3e18..72a7f975a212 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js @@ -7,15 +7,15 @@ module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:41.536654+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:43.0214911+00:00"}}, [ 'Content-Length', - '919', + '920', 'Content-Type', 'application/json; charset=utf-8', 'Request-Context', 'appId=', 'MS-CV', - 'A3VV8f0vOEuZeDHvlLI0Ew.0', + '8Q8E/pE/3EOzIR9DjAe6/Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '70ms', + '42ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nUAWYgAAAADW03xlWOoVTp1/ji9U1OcrUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0xkUWYgAAAACkowfJRsEuQ4kNYZIrgPL+UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:40 GMT' + 'Wed, 23 Feb 2022 14:33:42 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js index 40241d5322ed..6a27c6c99724 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'JAKQZTp7Xk6ZWNrKZeKnDQ.0', + 'xCTRCXY0WEG2Q0zBNLn1gQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,13 +23,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '24ms', + '26ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0oEAWYgAAAADkniQWcZKSQpxkWbRZj5ngUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0yUUWYgAAAADFnWwot4h5QaakdZOQZJ93UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:45 GMT' + 'Wed, 23 Feb 2022 14:33:44 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -39,7 +39,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'k8y6BjGjDk6BHtXQs/2B6g.0', + '/uUdOr5QF0aR1CwWwOVmZg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -47,11 +47,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '141ms', + '149ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0oUAWYgAAAADMAgIy4jLMRYpkqMxZaqaqUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0yUUWYgAAAAAmF7LGsCz+QKCd8MwJ5ckEUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:45 GMT' + 'Wed, 23 Feb 2022 14:33:45 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js index d10bd48faacc..5f9bc8895b77 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'z0VDS1lX50ahYHT56phBNg.0', + 'hlC1TOvRIEqj5ieM/fcENw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,19 +23,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '141ms', + '87ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nkAWYgAAAADF6cKIMqfIToxIogaJ4hkmUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0x0UWYgAAAAAFM8a2rX6STpAHQC1NnxmhUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:42 GMT' + 'Wed, 23 Feb 2022 14:33:42 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:43.0037861+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:44.0636775+00:00"}, [ 'Content-Length', '811', 'Content-Type', @@ -43,7 +43,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '5i5z1N2xiUWuwhgqZKuXcw.0', + '1V3SngCInkiQpZI+GR7wlQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -51,11 +51,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '97ms', + '91ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nkAWYgAAAACpOr5dESqGRpbNr9x4MZTvUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0x0UWYgAAAAAZwkFYorYxTZh2Mw03juv4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:43 GMT' + 'Wed, 23 Feb 2022 14:33:43 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js index cc56a162600e..78921089ac7e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'iOaOZF/rwU+q1YAUH5ZL+w.0', + '5WaOnQHfe0yxaxE3TpVE4A.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,19 +23,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '26ms', + '77ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nUAWYgAAAADhQMi1qcOCTIrVehPWLDBeUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0x0UWYgAAAAD2fMlT9P6lQo4+LIaIaFm4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:40 GMT' + 'Wed, 23 Feb 2022 14:33:42 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:42.2028491+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:43.5047719+00:00"}, [ 'Content-Length', '804', 'Content-Type', @@ -43,7 +43,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '2IzwYODvPE6NZDByJzQzvQ.0', + 'CbPFkOZhXEOdpvP3FoB6rw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -51,11 +51,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '160ms', + '37ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nUAWYgAAAABNarni34JzSYAuWITXHkqGUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0x0UWYgAAAABNIe9BXS/bSqPwGzpzCLmjUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:42 GMT' + 'Wed, 23 Feb 2022 14:33:42 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js index f1fdddcf0789..c8e95b21f2ad 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js @@ -7,15 +7,15 @@ module.exports.testInfo = {"uniqueName":{},"newDate":{}} nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:43.7590929+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:44.70297+00:00"}}, [ 'Content-Length', - '927', + '925', 'Content-Type', 'application/json; charset=utf-8', 'Request-Context', 'appId=', 'MS-CV', - 'dQqQkG8jtEiz0Bm0jKl7mQ.0', + 'wwAzSMQLXU6xa8ZGUKtETg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,13 +23,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '42ms', + '50ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0n0AWYgAAAAC6W1LgFzYPT5rELolTFj2zUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0yEUWYgAAAABPp/z3eI/oSb+Jd9hIwmwmUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:43 GMT' + 'Wed, 23 Feb 2022 14:33:43 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -39,7 +39,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'QH/Z0Pyawkqw3E4gKAFm7Q.0', + 'SYpSWMRBLk2+xlaAcQm42Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -47,11 +47,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '851ms', + '646ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0n0AWYgAAAAD4Uk+Zc4ysTqGSCD4R91ytUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0yEUWYgAAAACgEY/xULq/TbpZZZEpUFbPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:44 GMT' + 'Wed, 23 Feb 2022 14:33:44 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js index e227a54dc5a8..0c6ec3c61ac0 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Au8bU692-4ZDp3g_Qsekb4o; expires=Fri, 25-Mar-2022 14:11:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ApEKOhSR609MjjTqKm2357U; expires=Fri, 25-Mar-2022 14:33:32 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzlYiMRRbLo9Au8AYSumWDNuIP_pI6Ev2HXXh4DfNbMs52qv0iHzyelkuOQbZypvShj7tvZstEePpkEWxc5_Z1xP6KBencsP4nbUG6FOEd71VqhtyzXSwZ7Agul4OOCTmRd45urJHkLy7cC9n7I5lTfExaCGhEfrJWuKdZK5dIYUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNRcvG7mrsBULf2BlsC6xPN-752bn8yD8VTVcVGSjAaTzpdrLtrT7kuYGdwU8VjHDcOWOrmCFtG20D64S1kEhbwSvKNj5bOrH0h_XmqjFPTEHNMMm9IDB_rgSWaeI033hjrRwJinfjPCy2K64NIZuf_ZCAF9eDl-Q_pVF5aNkCsEgAA; 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, 23 Feb 2022 14:11:29 GMT', + 'Wed, 23 Feb 2022 14:33:32 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=AhfNUiuHFvVHrmPgZoRgJtA; expires=Fri, 25-Mar-2022 14:11:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ai5ZzztiLghElHsdg1qslT8; expires=Fri, 25-Mar-2022 14:33:32 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryGZ94O3WIcffvvvxIN9vYNTHKTBCSJN2yrSqVmN5GC3uN73WN4I0UoMPge71VgfKYsm0qNUCpTaQNut2_1rMNn5lz2OpFSGQx5CgsjiLakoNtRUfFWgnGHDwtf0FPVT2BHSLcqA-b4R2vOQ-KUI-U_aNI98luyH9oGiEqj_327ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroWTTTWyHCO2I-nyuXt9EX0i1QRbMW-Hm2kpuuv9xQuy_r3tX0Hv2b0RqzNqEzaRk83N6RBXMAp6rAX4ZvAjQwz0pRWdUXr7ALjeI3V5ztGFSEYxBoaHwBt5DyNhDlka3UApyOx7Ci4GNhLNPtUHcGyr2Y4Lb_IAwBhNhAsDovcsgAA; 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, 23 Feb 2022 14:11:29 GMT', + 'Wed, 23 Feb 2022 14:33:32 GMT', 'Content-Length', '1753' ]); @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ahks_3hBz-BJoQ52pXVJP2Mo7iuqAQAAAJI3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArghIDt2eg1Duly8Qr5rxJMo7iuqAQAAALs8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:32 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, 23 Feb 2022 14:11:30 GMT', + 'Wed, 23 Feb 2022 14:33:32 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'JaCrOEdeXUSPKX3fl+lMRQ.0', + 'yFWZDU4caEynfuirnLNmhg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '161ms', + '213ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0kkAWYgAAAADetDmg5g0tTrF8shY7R3G0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0vUUWYgAAAAA2y6GXfEgMQZjizFFGmDSMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:30 GMT' + 'Wed, 23 Feb 2022 14:33:33 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js index a650335b3098..63be7b96ea4d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', + '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AtS921wlQFZMnR1uBtC5nB0; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AqLBcfA3gFJPvQmokyrTQWk; expires=Fri, 25-Mar-2022 14:33:36 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvnzVEqEPrctzwXXKaGVP2aQk7lBG1L4XLwk4V8sZ47q7ZYInLXgfMAcT5_zZl_GG9EsoIfxDr-ryrIqJ0iWVMblaY0vGf9VzCiAcuSjRcwfxK1Pqa4BYE-Z2MoD1RU8C_TfmON8DWuIpxpZ-Gyv12OiK8rKwDrlQitmaPH86Tu4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsUB635X6EZjj-r3c3mfd0i_1A7zL3anE58XgsjgY4e_6eVewpHN-xYHxX_YE5AoNoX6YHrnTR4jTl17aXDS-96-HJFasN-4OIkZl2SzZPgZGQ4gnq0Qq7xWIKq2tv_oEl_MpV6iPY4CMrz5JFUGPVUGFH3mBTpwrp3ZYVZw-THAgAA; 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, 23 Feb 2022 14:11:33 GMT', + 'Wed, 23 Feb 2022 14:33:36 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=Ail8mNHrGD9Kifybe2yelLQ; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AragOy7hKohNqLh6B593N5g; expires=Fri, 25-Mar-2022 14:33:36 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7YRlCvGuxSx9qfThl649MLtcWPWhUnUPj41o4hR8JrFNOTco-YudXbiVC10wmRHU1K66Umn1WKdHGUoz3T7SdKRC0HbgiqlLJdzG8bmmzIxhu21NYkz7GBw_axH-KEqdKfWtmjpN-azCyEus9zr6NK4-sMYmyBKfly6NUoawNWAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3-ZucddCQOuHR1BjMKNnUfBx8q5ol7boHhyUAIzKG3oidxshtI9rBWSgdw112eHsSnD1DTK1RyoV2AOmg4-CYwtRutovpQLI62HzBxKfYiv8GuT-I7GJl6PcrMhwtDk9MVlk1Lm0c6VF_27Ic0chLBhCG5RiPE7qD_XN2D4Kv2IgAA; 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, 23 Feb 2022 14:11:33 GMT', + 'Wed, 23 Feb 2022 14:33:36 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AtXzZYEcCCJMsZTlrBl0Mc8o7iuqAQAAAJU3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aj0bG-stvRlNuuI5_vl9sFY; expires=Fri, 25-Mar-2022 14:33:36 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, 23 Feb 2022 14:11:33 GMT', + 'Wed, 23 Feb 2022 14:33:36 GMT', 'Content-Length', '1327' ]); @@ -113,15 +113,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:34.451814+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:37.1077119+00:00"}}, [ 'Content-Length', - '926', + '927', 'Content-Type', 'application/json; charset=utf-8', 'Request-Context', 'appId=', 'MS-CV', - 'aVj6Dp04skSxfg2Glx4Edw.0', + '1SGyQ3N6sEK18X4oEHffEw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '35ms', + '42ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0lkAWYgAAAAB6rIPoukNBSrlLu2eSWxblUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0wEUWYgAAAAAgj/4uaWzaRLPzB6j13yuqUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:33 GMT' + 'Wed, 23 Feb 2022 14:33:36 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js index f97668bf9679..4929c9ddf0c0 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AjZxQ10UXf9Mq-HdXwwBoSE; expires=Fri, 25-Mar-2022 14:11:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Au-5ETpxtcZBpt-K2zB5DuQ; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-CLeVPBer_uaNxlsjZwCWXUpAyGoLZfoHY21UaTbJB9Wyy9Y_QPgzwDowxWXbbyiaXC_YJqDGbIqHiLb1qwUPISawn6vsDrWbErNbIvwpBoFerEOO22vvsPmp4QBlGgAVA7Mb7eXUI9WewP_rq3p-SQgBEg9utv2OA3FVo7y7Z4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvcjGjHgigXMreTsa9x79kBX9ZkyMeMDzKGUx4xgHMEqFuVBD6p90FuHpQXP0c5Y7FLwuhnSGDF1jMCCSX5CSJ9tT8IHDCEjGLbOlj9E8MZuIQBhPeK2CH09MGqtNLBv-ytFGXfT7uGAd559onHsH9gBwsLmXF3NHI-Fg0FrSy44gAA; 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, 23 Feb 2022 14:11:31 GMT', + 'Wed, 23 Feb 2022 14:33:33 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AhmG4tGNxK1JjfmVXC5rsWI; expires=Fri, 25-Mar-2022 14:11:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsHmoh_JHolBiqOdPplMeiE; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4UmMO1fZfOx4Fpk51Wac2ZPZCy9F5DVEvc9e0YuJO9kc9ue1aErlBEHgA3UZyIv_teJrCktdLHb-Xxm4_g_c4RCrgyfRGI2ytsWqJ8ra_3ybh1-x2QNvhA3QIV9ImRCAq9o2-WgrPwvpA6LW528Xz0vSdXracF7reJVzQLH_8iEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6m-nMKD7OkVRKvgd8renLeenGRhNmG6q80CHra5qtWe8azjxWHxE5QVBaKZFGLdSSSRSiv7HBNbuzYMC6mE5vx0ri25xCBEYxsJ_kV7nAdAzAVd4h2MiRnzRCK0aBQx6wqgyAyVGldYi4AZlC6UyUIPhKo1bgPdOg9PqHKrDp6wgAA; 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, 23 Feb 2022 14:11:31 GMT', + 'Wed, 23 Feb 2022 14:33:33 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AoZo2uugH1BCkhnqC0D4rO0; expires=Fri, 25-Mar-2022 14:11:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoIx830yuKFAhHqY0yOHouYo7iuqAQAAAL08qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:11:31 GMT', + 'Wed, 23 Feb 2022 14:33:34 GMT', 'Content-Length', '1327' ]); @@ -113,7 +113,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:32.2076703+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:34.6272036+00:00"}}, [ 'Content-Length', '920', 'Content-Type', @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'lUXZ+aeDEk2IF9IsBRa1BA.0', + 'ERy8rPB8YU2tKKzHC4BGmw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '45ms', + '38ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0lEAWYgAAAABHZ9LKTe+1QbZhoEpiMQQsUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0vkUWYgAAAADSvhWK420TR7yCO0qDzR0KUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:31 GMT' + 'Wed, 23 Feb 2022 14:33:33 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js index c11d20223c2f..12f8f0bd7f0a 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AmUXrqa06h1LuuG1FBBJHwk; expires=Fri, 25-Mar-2022 14:11:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Anij9dcTfVxFgIclahPwm3A; expires=Fri, 25-Mar-2022 14:33:38 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1ua-dpsUYI69wjYWaQ0pmHaKaEqwPN_Z6w8pZdHgRmhkQ3195gddpn0FChD_x-j0C6t5DJwMUlXI0R1JeDk7WvavrvalSBAt-gLzURIwLnTG1FO6l28gvhtBJwrfDz_3ycR_kEU9-q8eh2GTb79pEDVr-wmYqI9bfIat6hYQEYwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3qa6ceqRR-EgemAKgATdekn0Vaq_kSMn_PHMA8H031xUO1GMW7GnHhHmDqWfJUZXM69pcTf6A-75aZB45HI_Vfe5htoMUCq4FnHXwX0KnTL_6YyUJ4a0jybsZzAglL5LkSpBrbp6tmakKfUBzxuScVAQEBtMQlAl_efd6LD903wgAA; 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, 23 Feb 2022 14:11:36 GMT', + 'Wed, 23 Feb 2022 14:33:38 GMT', 'Content-Length', '980' ]); @@ -62,15 +62,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=ArGAccn1lbJLsELqakSl-ZE; expires=Fri, 25-Mar-2022 14:11:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AosNaeq0qJBGqyos8d0dHyw; expires=Fri, 25-Mar-2022 14:33:38 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrbd-C0p2Ewi2rWU1q0DR3Z6SPKdH6BX13RPwiSRUCYjQTIKD0SmYLTrbJBgAjU5jlygCQ4jNl29lwPFnMrLvsl-7kPB9wdy7hTzckKfBHt948Kh7w41RcF7eH5LeVr4nanWiLem0zJ0czbAEw1pgYAolYg1tyd3k55XotJATTn74gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5isVMPIzi9t-tc5WUkHqWKGC_zEOZvp-w38ih3RMSTsaj7QpxHvhu-5xM6NF5ijajq6rPss14YrumvzjE5s_Cab7BhOK1Zlk8nq-zSSgD1RDSCvKe8UH1kN_oj-ftcKL7d6RoK0jW63kUahA-hyck-XgHchmr4KL0lRDRt2z6QogAA; 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, 23 Feb 2022 14:11:36 GMT', + 'Wed, 23 Feb 2022 14:33:38 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Aok9HsvOtzpCpSt-vnFMfCwo7iuqAQAAAJg3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Av7roWyaxoFHlk1PUq6kdzk; expires=Fri, 25-Mar-2022 14:33:38 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, 23 Feb 2022 14:11:36 GMT', + 'Wed, 23 Feb 2022 14:33:38 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'fUJYKP+UUkO3ejY7m2f4fQ.0', + 'n6xcuewMc0Sjb3sS5RnWog.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,13 +129,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '88ms', + '43ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0mUAWYgAAAAAdl47Ecf6eSKYcn14JISRXUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0w0UWYgAAAACxJBPcQLyNR7EihOOHLU9BUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:36 GMT' + 'Wed, 23 Feb 2022 14:33:38 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -145,7 +145,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'tHMGM9YkD0CmPjf/gldzVw.0', + '/w6jLD00ikKb+UZ6O9iFPw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -153,11 +153,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '168ms', + '141ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0mUAWYgAAAAChf+bvWB3QSrQZcLTbdD/sUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0w0UWYgAAAABEAIItxYzIQbiWfzc8NU/dUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:37 GMT' + 'Wed, 23 Feb 2022 14:33:38 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js index 2c17c4ffd6fd..6117e9157fa7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Av_vHMEl1MVIs41tea9d7yY; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=At1cCUs6I2tJidcdgTujEb0; expires=Fri, 25-Mar-2022 14:33:35 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrk9kZlEskXas0H0H_rf7BgoOHby0-hOzCqZQZhEF1Pk-l9P30XzwHGTEWm9kSBUEk8tkTX2M46Oil75T5v-HmYxkmxc9CX369xD0WmBIqzBf19PAuODrG0qav3NNa0R2O5adTnmHHRzbTAzDqLFt-9SLzfOiGC7PvKoJAHLOgii0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwDUlQuXkMpkhsf-Ombzis-Q5MV2xOCQ_CUKpMSHWxuUNmoEbTOaQXhd2ac3BeVU1oB8hb4eQbeEGxA-wa8UXORHEE-0x2xIm2TuoGvcNRM3oiHjP7U6nSTxRyD7B8o94Sb3yRhe2c2jos7KwzqdkGWuqlveHvbfpAtRimvE6CVogAA; 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, 23 Feb 2022 14:11:32 GMT', + 'Wed, 23 Feb 2022 14:33:35 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AjwyFfATCu1AiMqbJFzPiIo; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsMDpFKZ5a5Jld9EKvWlEIc; expires=Fri, 25-Mar-2022 14:33:35 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZbBKErYpxtHfXASeOzbSXEiPTuXHxz9bUxVGO6TFFG3kyrzRxECwsESlyveYnLy4qWaeKGqwsVDBX3MfrpTSU7AtOTjhzsf03pz5HfiHF4QX0X2zfCtypVTZJxgiF9a5dtWQXoiJX6IsYQmbVKSu1ferzfD1XTUHJVF-yLNwLssgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrvm6tvA-dYVE6Q8jlnZuFiCCqMXpqh_CaOEtJ2Hs5pp9q5Kk4aOEAnjy7nSJOsIcy8QIP3UsRcxXYxuT6ofQ3y-DTs5DMWajyyJlB_7Ypd0TuyicIp2hfIHZy7tDMmhUaK35V-pNX6bXO4chpJ0sCz63QUfd5iYT2vwMzq-cPXqYgAA; 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, 23 Feb 2022 14:11:32 GMT', + 'Wed, 23 Feb 2022 14:33:35 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ArIKN3sNq7lKsXzYzkdPflko7iuqAQAAAJU3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Armzkaix2KxGjEGNBSw71JMo7iuqAQAAAL88qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:35 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, 23 Feb 2022 14:11:32 GMT', + 'Wed, 23 Feb 2022 14:33:35 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'RtvAoQw8pEq1Gz+jd7ZQ4Q.0', + 'phIrp/MdDECJRfFoewz+Ig.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,19 +129,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '25ms', + '20ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0lUAWYgAAAADufwG/u70bQ5uKQAmTEkl0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0wEUWYgAAAACEVWNbBO2rTpXymbUgwyl7UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:32 GMT' + 'Wed, 23 Feb 2022 14:33:35 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:33.7767596+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:36.4565061+00:00"}, [ 'Content-Length', '811', 'Content-Type', @@ -149,7 +149,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Gd85eYKz/kSPOfaCqACCQg.0', + 'lp5Xc9ZyOkuDOOdSF1VyIA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -157,11 +157,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '29ms', + '166ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0lUAWYgAAAACZNuuWRcEPS7O3dLpXvyknUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0wEUWYgAAAAD85v9UairRQp7vtm+k4/bRUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:32 GMT' + 'Wed, 23 Feb 2022 14:33:35 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js index dac24fa0a06c..7ea2997602a8 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AkENiPAUblVEqrpM9bpDx1E; expires=Fri, 25-Mar-2022 14:11:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsWbNyJNFMpEsaq2Q-vKCIs; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrj-Jv2hKqsF_oTRTkuOBf9SiWoLApIXbWbk5lfN_RJZylD1a4AqRKrSz3pkwk0U1LUC87FqexfWoKd7YcpSsroldhZk35FidORrk083YbXQcxq0jpKM-7m-FCHLa0_z09u4hp44HSglJbvkxMMdTb97OV9i9bvZvEdeLBqkBxVVsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhaE_2q7Hj5cb5JhtH_E4NTwoPW3e5UncLX0gLEgRSRgrDkWB5nPDSL4cEM4cLcbA092Uy-pmOIztMdASx2AVUeu25nBEGzRR2BOyJvStzBBysy8riLwuW0DhztVMd8d2iHga-EijnpbZ4rj7i4s4Ny7WnyouMt3AHQ-l1qhM1D4gAA; 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, 23 Feb 2022 14:11:31 GMT', + 'Wed, 23 Feb 2022 14:33:34 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AoKc8mMcTMVKnZeBsUK3ZD4; expires=Fri, 25-Mar-2022 14:11:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Auot1lbx78ZJnN6iVqezlD8; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSvFct-nJpGUG5-W1blapyZEH4DbzfyOH4WIp1juty_D5B-pa3JARdDG8hWLW3XXwRlEgvZ_OH0oz-1Z0K0kxPl6AKh5jHws_vE8qOWCDl9L-E7aOV-1SbJq9fWkHH2ni-ReK9LAyWLdKcgSPfX6gEf4UiRYatzJmuctm1HGeXZEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1Pr27xz7m8VcI1vmyyojB5QefmTc-Me4hbF59ew81qGmie5zrK4obA4_q-9a8yUn0lbSEK3l6bRhQ-Tr_2KRalksXjk-LgIIzw9imowRz3RU9b7-2bIbfl2vYQ6xCpbNOnFXU2IlMwjXsmhq1L8GxJDbd8R590UmXBrLbeTYMoAgAA; 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, 23 Feb 2022 14:11:31 GMT', + 'Wed, 23 Feb 2022 14:33:34 GMT', 'Content-Length', '1753' ]); @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AnCVwFEd50pFo28pDGxt8cAo7iuqAQAAAJM3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtWfccrCd8lOjZRXPyHJAvco7iuqAQAAAL48qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:35 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, 23 Feb 2022 14:11:32 GMT', + 'Wed, 23 Feb 2022 14:33:34 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'kkAs/QPKlUm1Yz+zwc9dcw.0', + 'QKwwJSBevUyvgC8nAZqxuQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,19 +129,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '23ms', + '21ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0lEAWYgAAAACUOELQi60TQ4Ag5yNombY+UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0v0UWYgAAAAADTrAUdAOAS6Dn6/kGnsBvUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:31 GMT' + 'Wed, 23 Feb 2022 14:33:34 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:11:33.0072924+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:35.4465924+00:00"}, [ 'Content-Length', '804', 'Content-Type', @@ -149,7 +149,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'CsLD5ffAOEO+SV+jWxk8HA.0', + 'nYSYw2aDnkePU9A/EuYNDA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -157,11 +157,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '32ms', + '28ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0lEAWYgAAAADzUVmkaGakQ5sFy8baAXSxUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0v0UWYgAAAAAEtCO6Bo2BRadle3aFW2r/UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:32 GMT' + 'Wed, 23 Feb 2022 14:33:34 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js index 9a7489d8eb9e..043522f00164 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=Amv3JUla2cNLvJ_mAwHQ9O8; expires=Fri, 25-Mar-2022 14:11:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AloANkBTDPFBvwpe9I9MC0g; expires=Fri, 25-Mar-2022 14:33:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsBFbDt8jv9Hwgw65cuiHhzbcQTNZhIEFmQMPELtt0WQHkMWA4KOyKTngSrv-poeMsp6fOU4d9Tk4q4RKfy7lh0m-to4LLAp6nnC7FeEv3zHlC0l4GblsROECrwlwebI36b6EMkwOyqt09POYXiGo7HFIqiygpuGf1xXTYy4zVWMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpJMDzg21tmYHLkT-MukfsX_YDDQSZhOzuv2W7Wu2YdzdeSVwYjWiO-4auAkmNiKVA76oavda3WehW3IOOSOAdr7AVOONQFklxv8Yh_nP9YhzKWnpFUYnpwACOSuEd0ojc9glJgGl-vSfDu4p9lAY4yqgJH_pRqk3nFz3Hrvhlx8gAA; 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, 23 Feb 2022 14:11:33 GMT', + 'Wed, 23 Feb 2022 14:33:36 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=Akw9_3fMaJFJl1XbaiUxLAg; expires=Fri, 25-Mar-2022 14:11:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsElbyhyQJlHi2yP7oGXXnA; expires=Fri, 25-Mar-2022 14:33:37 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-DRBIl7ORik0yK7phhZ3pOGfuYLNIcuVBRlpMENpLe9vmEtDwCEL7lrrrmSnZ-9bNMbUY3xyMj4ZRGSxxziDHTdI0MUhqsDzExbp8bQZErr06p1aDcETpci3jtcT7gV7OBumsL5AeunQMB4a6RjdrqprRbrHyf3wSrlOEZoezI8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrcalc7ZbpL5UFavLhYyPTwJIvPiCx5r9qRGUeGTZl5kjpcav2slqoyyOLJG25cBzXd0n_I0s06y_UTUYWBkxppKb2lhLBxGC42v9S0JiWp5p1sVHlJtZdxx3P8GupvlDjuz3sWk8Ku0U4iWlQdCZLxJxcbDdo2tQXvYCEDJZAPMogAA; 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, 23 Feb 2022 14:11:34 GMT', + 'Wed, 23 Feb 2022 14:33:36 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Aq2WXcMA-BdJvEBaEzoo9i8o7iuqAQAAAJY3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AqU6d9qphiZNpfQ-xxWieC0o7iuqAQAAAMA8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:11:34 GMT', + 'Wed, 23 Feb 2022 14:33:37 GMT', 'Content-Length', '1327' ]); @@ -113,7 +113,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/identities', {"createTokenWithScopes":["chat","voip"]}) .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:11:35.4011886+00:00"}}, [ + .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:37.7578267+00:00"}}, [ 'Content-Length', '927', 'Content-Type', @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'PlLgUIAcm0CjanZzk8VZtw.0', + 'MMZDGA5r6UCWATlTEDR5ug.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,13 +129,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '38ms', + '50ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0l0AWYgAAAABwfDNFuOA5Qok9UiwEorAWUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0wUUWYgAAAAC+8Wy+pXw5TqWMy+xS6L2lUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:34 GMT' + 'Wed, 23 Feb 2022 14:33:36 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -145,7 +145,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'ZoJPGG+OMUyjTifV2rV0/g.0', + 'npSVsArz8UKPWmKWyj8A7g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -153,11 +153,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '686ms', + '593ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0l0AWYgAAAADFaRZYcnVjTZeCkTZ4skxzUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0wUUWYgAAAACIXBdS9QvdRJo1mR4JE+/2UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:35 GMT' + 'Wed, 23 Feb 2022 14:33:37 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js index 0f790b975928..3e401855ae54 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=An2Wi7TyvUlGgQUkkzVA1rk; expires=Fri, 25-Mar-2022 14:11:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Am2Unaa1UbBGsrYkqtNuj9c; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQ6Y5bDleLk7mB1Te3_tm8__Mxw98Xpq8lLWRQJTlNQCdsQYLWqwZgcWo0tjcC-7ECuRJszTsQKMVpb9nMuxJdbgtf-xqXMrkH2giDAQRYuiaBYab7KHkXMZHp1Ex_MDa9g0NXigO_r6nmwhwY3RqR_SoydLHAW8dcYyf3ufmhs0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrn-Kq6lIrmwwHNhbeqHeUvDDzyvMljtj1NWqb4ebFRbPI3Fx1ufSOu0MIPn2OV0s4r5_E24H8MkMMPWdUfVGUZvec-yWFJKRm97Eyg8b-32UCjH-OOg86SkeS3PhJHIvd58KylPK6PeBRrbxlwNGUblnNnttJJ7g-n1B8MRZSe0QgAA; 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, 23 Feb 2022 14:11:39 GMT', + 'Wed, 23 Feb 2022 14:33:41 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=At0McSfom1dKvCupnoAtcHI; expires=Fri, 25-Mar-2022 14:11:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AkS9BS0u8UFPg-LnD_yIYVw; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEhQw9D8dYRw-Tgwc_RqARdTMhaAU5fvMrYgDxxvv8pMaK8VB4Us6gJJWvkK01ADPAt1ogVigMeO7FegExclsyrZZ_lFqpZKMhYdPdy0ketetmsb44kKl-T-NlDb8s8_ZK5z4MuV2C9QzNxiOIKQtKL4ji9eBBMN3jVtvC77sKSwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMweX7Bz-a9NyK8Hf0y3XKWWrUMuLgB7BiikSTzvMpQq8kvvSeiHmqNRPCSUpJ5vS3r0NF42Ro4AdnarWTmgO5V8f-Eg5aULQa1UCMXj85jpRCE5dz88LkWMKUpZYAd8hgs8mF4TiLqwUaROc1ZyO4GzadP8SpX5F_GLPl4LWYQ8gAA; 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, 23 Feb 2022 14:11:39 GMT', + 'Wed, 23 Feb 2022 14:33:41 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ArTVwENQkepPl48vxS6NAFI; expires=Fri, 25-Mar-2022 14:11:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ardy3tKRfaZFjfCiQrd99tM; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:11:40 GMT', + 'Wed, 23 Feb 2022 14:33:41 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'AfcUtQH7XUyv73HjskFQ8g.0', + 'j6iQSA3+ZUuNtWDJNQKGFQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '42ms', + '243ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nEAWYgAAAAAtEmpLkRdGSLyyyJVyygNRUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0xkUWYgAAAAAXpTsoHnDTSItgys7cA8NmUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:39 GMT' + 'Wed, 23 Feb 2022 14:33:41 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js index eea1a2dfed1a..f07fe3ccefcf 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AiGfA49XXtlNu-PBkBgwywc; expires=Fri, 25-Mar-2022 14:11:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuVA6QNhHfZEnXqTpMua25k; expires=Fri, 25-Mar-2022 14:33:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr8xB5OTOrP4729nTB2Zn2TOxzCyFjsSSMzho3qbdb54Y1VsmB57hZhZuSuR7P8o4BGM30jMynjs0pzSMXYlVoZ-4lc_i0bp7SAXdv2xL72Ogz1OZi-uK9Mi32HbgWZMRwu7qk49MMO1FnhHBGwCCuKp8H9ex6mJcoqbwg91Juf3kgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4xLDR_WoiEEIkJ2S1Bi0WR4LucU_MvimLLb1TmDevpP8DgglR3_R1bhCMDETXs9otqZiKHLmFkoLSsu2XK3uqNfjG1ExO5oV-TSsgYtjIBOG20nHA_kcSY7A58dxCNmo2_LViQYrmig9fEaDKaWcRJ3ut-3W43tixO4q6FQvKVsgAA; 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, 23 Feb 2022 14:11:38 GMT', + 'Wed, 23 Feb 2022 14:33:40 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=AvO_RLDuGXNIkJrhOvzgrDY; expires=Fri, 25-Mar-2022 14:11:39 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtRL6EYQaH1BqQP6m44e3mA; expires=Fri, 25-Mar-2022 14:33:40 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr07Dn9h1VAbQ77BnaVPw8wtu0-S28U7QR66-Whd5eTns4BkkxRPNsaABI7ildJbTTV6NyWtvyUEu9WPAuoZXmmmgsejmpdgADqIzG-dIOwv4uvpeIrWZSTQ8AhDOjcqlgx_vtSy5kRhdKgEDdR86fcdAq78AdQB5QRuDAGknsITAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKMF6-Nn6FGAoYh1K6435c4DszVv5b4OoyxJS2NzOP8R2t3qHR3vQYk-iMd4Fu9BwMphLH0ELdWucm7s597txBpzR4cbOeJj1MnxhCUf0CGdTG-QkpEBUZcsCgTDABV6Gvl9EdCYEldLwLkYm5_tg7aeTBXnubySlfIc-ZInwQOwgAA; 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, 23 Feb 2022 14:11:38 GMT', + 'Wed, 23 Feb 2022 14:33:40 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ArHp6CxHg_hDhnBRK-3s5hc; expires=Fri, 25-Mar-2022 14:11:39 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtGCLeaxVw9ErsYkS_UsZLoo7iuqAQAAAMM8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:11:38 GMT', + 'Wed, 23 Feb 2022 14:33:40 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'AvP5o34qdUK9FYSGnvUlng.0', + 'W2EHkp/xZECCisl/nEDJ3w.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '28ms', + '122ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0m0AWYgAAAAA5VH88RWgJSJ+9eg0drOL4UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0xEUWYgAAAACBToMDiknYT6TwQ6W3TNpGUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:38 GMT' + 'Wed, 23 Feb 2022 14:33:40 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js index e740e03c6088..4a95ffb4948e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AtRUKE56j7RGsrgss-tFldM; expires=Fri, 25-Mar-2022 14:11:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Am3kcVN5eT5Kh-p5bfSDEF0; expires=Fri, 25-Mar-2022 14:33:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSIe-71TmFgzBarECdNirzidcBTB1ZdnHhl3lbOdD2AO1OnotlKZSOCeKPj71NCqqMfxyKvoXGh-UVDoZxaaftyKjc7RCRYXfA2NuWt9s0DqZoUvlNANCGmMqj8bjcAArK1-BouzKvLBAai5jpRu8-K9Gwsm7np0ymq-xG2iE0fcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrE-jnP3TxEm5vspYThfMqGINsdcxJ1flk8YEj_k250jYgi8GPcPgjqOLaSp08vGAIWkJFgptrtbO5VK5WD5Lquyr9UKnr2vDcA98Ra72sGNeEmIICJYmbtX2u40N273f0VYCCqPZT_useu8PvxIBXPT0o7i15JJjj59bpJC4HE_wgAA; 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, 23 Feb 2022 14:11:37 GMT', + 'Wed, 23 Feb 2022 14:33:39 GMT', 'Content-Length', '980' ]); @@ -62,15 +62,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=Aqw9AvttYfZGiVkB4FuDZ9o; expires=Fri, 25-Mar-2022 14:11:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnMg4UXG4hZEut8c2Nlmk88; expires=Fri, 25-Mar-2022 14:33:39 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzZ-vCSNtWiiPCN5uaM_bEwDx-gyLC-PKlEZZlWFWVK3Pw9lipfNGwVmSstgaNYTHoRYJ8dEqoStBEgz6XWxCiMv0dPDGutHrcsNTTaV_oDeZMPwvWnwghndU1gDFpXPBg9hq0HV8gSDnaGLfgUbleBb-EGmblb2CDvt1Z4ydMAMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrkhg0hYXGluuklFhQSMaN83nmCLR4Bfv8CAMeS9j_H0Pzx768L4LhLVZUQwQItNWSJ0nDzqvYJOFRCUkyiS0e5dI4aOvwntYPMFsvxlcNQ5LZdjqz2ge_SJHPpRF1mokmU1OcUll7LdKUzvrmyQR7MBlJMbZDfwfx4QnO0a-28okgAA; 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, 23 Feb 2022 14:11:37 GMT', + 'Wed, 23 Feb 2022 14:33:39 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AoQ87anafmZAucgZpejKkIUo7iuqAQAAAJk3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgJa_aSM4CNCtTSyjSLE5XI; expires=Fri, 25-Mar-2022 14:33:39 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, 23 Feb 2022 14:11:37 GMT', + 'Wed, 23 Feb 2022 14:33:39 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'FoZX7clSB0u5PS9L3cHndA.0', + 'qC3A1KLEqEiLI1dGG4XKOA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,13 +129,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '40ms', + '112ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0mkAWYgAAAADON6s31QNBQbbIn7tF2AXWUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0w0UWYgAAAAB0z/vU+frgTK/t++FnTDabUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:37 GMT' + 'Wed, 23 Feb 2022 14:33:39 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -149,7 +149,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Jm7h2zmFRUyieXU6vZ+BSQ.0', + '3h4e7NopZ0KKRfAfs2v9UA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -157,11 +157,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '21ms', + '19ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0mkAWYgAAAADL6Xq4UnxpTIGlv90fR1BKUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0xEUWYgAAAACUZGCM5yg8SojF/XEkwV6XUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:37 GMT' + 'Wed, 23 Feb 2022 14:33:39 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js index e59685abbafc..c7e076500376 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AhdFTr6hkPpLolDH-M5pOPg; expires=Fri, 25-Mar-2022 14:11:39 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AtEGqa1Oz_VDlBhoJ5ahvnU; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrUHOpGEdMlVxDvgmrCebet14oM5fVmpUcUaYlK4ckzQ9wVwfAQMqK3-wwS_HC9fcTog4YqZBhM3_se4g_cTs-leesceKIB821Ypjwc_uLYmvp5FHxQJiMbuNs5FqcUk6HJx1kZ6gT-V9jkBBnKh6UhDxZXuaLHAbgqjSUAXU7LJAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGcEbguMfYdIkaMeM_LZTFtigQ6Hl1oImZO35xqC554HVi2jvSe0S_NPBiHT21w5AohnuAyqTncH9acHfu0btKsHDS2B6KQV6yzCI0Ezk-AiXIz1QPgjX49W4QOL8b7dzoPSQQnyplidYXvIDMRMEfmUJWMoQUQO6a9ThhBqWzmEgAA; 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, 23 Feb 2022 14:11:39 GMT', + 'Wed, 23 Feb 2022 14:33:40 GMT', 'Content-Length', '980' ]); @@ -62,22 +62,22 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=Atx0FjzJ2OtCq_gICBmw6Og; expires=Fri, 25-Mar-2022 14:11:39 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aqi6BFoFaC9Jm8AAHxjAKyE; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrIBs-yifAdfv0cf8MZ_20qyMalIvSGQ8Kb_-A9HZ1iNSzf9O7miNJ9igNqq4Q2xDadNRs8EEReEFO9Uigo6lfdwqz7SK9QS326lgPlGh_TwwwQa6fGQlTeM8TFGalpAWTaaX2GxQrgy1bKJWNy_Sl94-3dOn0yLj8Ldgi34qJ4IsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-YoJOXcV3t_I5Sk1yO5O2ixQHkfV6ZfJ0ky1_USz-9Vk8pfleOfW98M6joH4FNf5mNIY82Q5krebMfs7AtOqoc1aiTs_teu9mZG3jPUC4vRWLDPYnj4qW2BMprxQ-L-Hn9HbW-WqeMSu43pDGlsOJJm2zwONtw3e-qc9uwaYHNEgAA; 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, 23 Feb 2022 14:11:39 GMT', + 'Wed, 23 Feb 2022 14:33:40 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86398,"ext_expires_in":86398,"access_token":"sanitized"}, [ + .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - EUS ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ApLV3vn53nNAm0EdsaPcdNM; expires=Fri, 25-Mar-2022 14:11:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AiIxzpdVmiFLqYKimaRBtsAo7iuqAQAAAMU8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:41 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, 23 Feb 2022 14:11:39 GMT', + 'Wed, 23 Feb 2022 14:33:41 GMT', 'Content-Length', '1327' ]); @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'wwuqmxf6jEme7zPoEUylgA.0', + 'Edlo9bEddEanL7PumxIsPg.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '48ms', + '107ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0nEAWYgAAAAAGmWROyFyrRZworwkHJUXJUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0xUUWYgAAAABRrfCglzHVQ6L6WdCQ5CzdUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:39 GMT' + 'Wed, 23 Feb 2022 14:33:40 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js index 2bf9044e2094..b41bd96615ff 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'mwWmAi2j8EWREeYHOaG7iw.0', + 'nuDla/8sSkmKaR76lJKsXw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '25ms', + '21ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0okAWYgAAAAB7vCwMeo3wRIBVcyh013xQUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0y0UWYgAAAABc87TC3X8hT61HYnACGcwwUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:46 GMT' + 'Wed, 23 Feb 2022 14:33:46 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js index 6720c7052c76..51d04d9b0828 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'zhJWfsR5J0KaePioMVqCQA.0', + 'mfjXk2v+VkmZQqR7E2acww.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -27,7 +27,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0oUAWYgAAAACfiK0EKrpTRaYwKp1OXIg9UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0ykUWYgAAAABNflKenIysSpc5AGTq+96LUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:45 GMT' + 'Wed, 23 Feb 2022 14:33:45 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js index f884dc8bce46..9e37928c1332 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'ZqouB22Uv0KyTQ6i7R43tQ.0', + 'r3WBF16xok+54+98l+9I9Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,13 +23,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '26ms', + '28ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0oUAWYgAAAAAZMlgF4Y5/TLfc61AIe4rmUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0ykUWYgAAAABGrcOtTAdwR69vw1eRPvR5UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:45 GMT' + 'Wed, 23 Feb 2022 14:33:45 GMT' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -43,7 +43,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'iNA7/LAVTECwa5hJ/2C+Xw.0', + 'grxKMWLW6Eqt1pxozpnddA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -51,11 +51,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '18ms', + '21ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0oUAWYgAAAACLeRfBsu2ETpD6BdrJnknrUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0ykUWYgAAAAAs35Ev8MkcQpdxApGc15mFUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:45 GMT' + 'Wed, 23 Feb 2022 14:33:45 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js index 7e37be9eeec3..feed1a56b98b 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js @@ -15,7 +15,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'Ou9VjYYl2EOvlzV56kMt7g.0', + '9pYCq1OzHkqJHz8VtHE6tw.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -23,11 +23,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', 'X-Processing-Time', - '19ms', + '27ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0okAWYgAAAACLaGrP3BUGRLh2vfcCVSzNUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0ykUWYgAAAACxxfZ7C9ekS7vIhEtzvQIYUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:46 GMT' + 'Wed, 23 Feb 2022 14:33:46 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js index d8f61a7896c0..b84970b761b4 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js @@ -27,15 +27,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - NEULR2 ProdSlices', 'Set-Cookie', - 'fpc=ArBhOv66bcJPva2X7MKmONI; expires=Fri, 25-Mar-2022 14:11:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlNvABsTzBZJiTq0asEt6I0; expires=Fri, 25-Mar-2022 14:33:51 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrYeka8fO9n79Zoc2k8pXQtpGQGCPk52KRFQVAuigRP2SYO--43HlJDjNpnZb2hw04CtKOUKDTaRvFr_OT5keSq5tHYoPRm8W9OGQFKd3HeAMEjXq159xFI4P5MN9PJPJF9jX2SEp0PQ-wWeUtUo9F9Qv4GDh_rXkpl2JyvMpgsicgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4uqXjgBT_Xt3gx7-ciO5oLd3Vdrgm55xyV2Y-lJTww9EQDqxbh-RPsULFNSmLrjJRyboiyKKjc8rIqB_GEdsu607CAOOhuYyeGr2C5UcncafmvAN4aQYZkJryB5DGF_3bn8QgF0-k6w4EOROnLWKz4_GocdgvYQVcS1fw0BBpW4gAA; 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, 23 Feb 2022 14:11:49 GMT', + 'Wed, 23 Feb 2022 14:33:50 GMT', 'Content-Length', '980' ]); @@ -60,24 +60,24 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AnsFppRVXt5Cn_IFnMlPlmI; expires=Fri, 25-Mar-2022 14:11:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnZOXzzPgQ5HgXWzp3OyWxA; expires=Fri, 25-Mar-2022 14:33:51 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWBQPgsXqn_NhfdqWC5RTzutIib_tANgLUyE5ijsV0zLA2pAB0SwxPmIRvQHxEGX2uyOC9c3hW-hl1bHxjy3R3LX4XfJZGsbHf0iq8nYWvy2jFSLijlTK1CWMxNHKsty301ePdWxARdsdlRxGomLp3IACYcqggHyHKUC8ZcNga00gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgdHSK6hIkAhwAtwk6rDKBsZKOQHdo4n1i9nYpsqW7WAnu7uzivCoSJ3UbMTBqvl7z6TCNt3-mQ7E7fMki5wO6QqRhP-gYtWhUCJjWSumNs5Lb6rIhM7QZQOIBXyxgZDgh3Ek9__Nf1DQXNc4PxvEpbA1tRqGaecv382QwqH04FwgAA; 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, 23 Feb 2022 14:11:49 GMT', + 'Wed, 23 Feb 2022 14:33:50 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":5282,"ext_expires_in":5282,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P95rlgx0E0Rj9EamuXEFwWg3RRCkqmP1QieDVu8OvDGPxexdoVBu7DEpproFgxTa_6QG8DX_7NgD7mPHNVj84Dc0bBkPCe7LjEIjSG5CmB_-NNH05hM1N7L0nJnTvRhRQwfSalfKu7MEbnEp3HcrsJmONfGNYxNqd5aAJLMjPgkaY4Y3wtIy0RdCa3jX-IUgj5Y-PeLEMzPfw7el98F3GXOYlmbJEZplGEcdO2jzrCLtWGa5X5hzTGdybBQz_zbqfu90V0tJbkd7URwaWVHkcz4vkF5SYsny77JHucqph_p8xv4kDiRiHTdhBkbRcayC_E3pEV0ULSLHk6KIyS1sNp0dogOcGn9jZP1PRkDc_cXkNRXcfBY-tSg8Kdnbm0WkVvWGJB09uhNKOgjbPfKADSjnzzOm0W32PXAVIT50JTvH1-5rK7s6dtjwufb99LEkASnVNApuHg3OaK93hGunDzB3jTbTGM6gUpqdN-c-o8YbpFvSJaom6CPT5ipr5rLku9dXjHV0OidUnGD7Qdg_vH3r5GCvQArjE5EVwEgcX3pxWg6X6pH9V67avfOh0WFXoEjrXIcQwYtn-I3kFRfRS-tgJA5h6mXjhOSAMuW0wiUGviQQ5FKcdMMMu6BI3HUxhhO_rgfbZA_Gb2uWkf21eAErJcSlu2M9eBvHJMQxDsfRiWWXFlp72DaD_8_jUFstx0z2KD8MbBuW_DhFWdOKpDVJ9XYPaajLjZJ2CcqHn-JTIUXh9gxlvQUvCN0Fga0jW2MnFwbeUbOppsvp0jSwUnexXQpaG9nn2v0rP8ANoIOzrKh1dxVHnY-kQJOgzkx54eJgPLm7tBUhCaH-MW_TUbghpA37EnJpEFB07CIJfn7Q-QzANURrPmlaTVUxG8NP2mCNzPArhMXtYYIJqjHhzgZlIrq-duiT9itX_wH7R_IBu8","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ + .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":3849,"ext_expires_in":3849,"access_token":"sanitized","refresh_token":"sanitized","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -95,25 +95,25 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - NEULR1 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Am4npxZyQplBiFC0odF9-z64k9TnAQAAAKU3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aq6xmQ-2ukVGssGbEo5h1SW4k9TnAQAAAM48qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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', - 'Wed, 23 Feb 2022 14:11:49 GMT', + 'Wed, 23 Feb 2022 14:33:50 GMT', 'Content-Length', - '4648' + '4627' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:39:52.6478293+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:38:00.8340366+00:00"}, [ 'Content-Length', '818', 'Content-Type', @@ -121,7 +121,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '7b0Ndpub2kW5FMtPy84k5w.0', + 'ehpx/pG4m0mwLqW/Tk5g4Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -129,11 +129,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', 'X-Processing-Time', - '267ms', + '394ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0pkAWYgAAAABbWyWh10A+QpnwtzGoE0e0UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0z0UWYgAAAABoGm48yEzyR7Hxo0F8CQvcUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:50 GMT' + 'Wed, 23 Feb 2022 14:33:50 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js index b7981f4ec505..86cc45a6ed7c 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'rm3gZqTSM0adEr5hyTEZcQ.0', + 'YuD6nU8IOUmmQuO2MzvB2Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '18ms', + '23ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0pkAWYgAAAAD+mKmHGP2nQLl051ZpM9WfUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0z0UWYgAAAAAME6U8JGelRY4iDdkUez/aUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:50 GMT' + 'Wed, 23 Feb 2022 14:33:51 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js index c44ee5b52354..502aa8217be4 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '1HF/y1Va6E6rXAlCnWja6w.0', + 'CrH9bam1wk21i+lrUt0JHA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '34ms', + '32ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0p0AWYgAAAAA3KGtJd6mZQaMHbFlfdY27UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '00EUWYgAAAAB/joPZtJIsRKCwT0zp47Q2UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:51 GMT' + 'Wed, 23 Feb 2022 14:33:51 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js index b8e0c1a315ac..f39cd4cb58af 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js @@ -15,17 +15,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'V+/kZclpaUSJgOr2ludaXw.0', + 'k/Um/dojyESH2cM2nbVLmQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '28ms', + '22ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0pkAWYgAAAAAo/5XEAaLYToM7DZsl1w9VUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '00EUWYgAAAABq9eUftExQRpch40a3aSXMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:51 GMT' + 'Wed, 23 Feb 2022 14:33:51 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js index c1e93a934ce2..1ba8798de7fe 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=ApYB_ny5iwFAh0monhO2pG4; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhT2rlYGGBRCkcRyWRtOLYY; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr14CjqVRZS6UwkfsUZcN7CrxzcqNNlh2DS-ZZnPmQ-5iE7939-dpn_v3Asd8Dnm_RNH7-yM2tCeMxbXlVq2Tt2H94op5rmMJT8qtMYUiYgMvQsSgWXkkBua1R1W7ZKTgfWQ2XHJjzhyn-LOV3C7CsA485NlwJi8A3Wf8xBhPn524gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrbdy9tNsQud-kM6ponBmRdN2mE9DqgwyLz-bAlot7qGzE_Gx6cJI2979oTgwTit0LkkcvURrtqGJAbIVIjdOb1yPRlGZSgEUYNcpz8iStbMfIAeeYL9jBcZfeyGBmE3gUXBo0MSn_HfXabCu2sYuJjqVB2UQNw5VPiSd6z01BhuwgAA; 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, 23 Feb 2022 14:11:45 GMT', + 'Wed, 23 Feb 2022 14:33:46 GMT', 'Content-Length', '980' ]); @@ -62,22 +62,22 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=AnLG6A8FItFFlZJhy1pw6L0; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ag5lNQA6HgpLkmDaEFO-buw; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1m6Z5V1_0jH1XoQVr-YXvD8-dovZ0_KDraWF_7pn-LC7Q5rlqHlSpRKcLnXdjJjJZStUFo23yx8fgKwhkxZZYDS_J1PM4WAqmlOgt-7CZVXSu91Lx4j8m0q_jGyUGS8FLVvJq8FxQzTQIXvnsu3dpBuD0-CMUlBFtjCRuZSSe8IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPG3W5D4hx9dejfUD5Y42dijwJdHori9S7U4N3vJh47QVO0TiWxX0mJErSrRVzQ6yXe8GhO-9nsWqe7g91IDtXHNwbaLO78PK9QLwNsJ-XYbhz3LOMIDxl4cB3xBJrSsdDbz4EUdCak2cbylMyUUIE-XoqvjyBAXQM9jtlVEyg4IgAA; 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, 23 Feb 2022 14:11:45 GMT', + 'Wed, 23 Feb 2022 14:33:46 GMT', 'Content-Length', '1753' ]); nock('https://endpoint', {"encodedQueryParams":true}) .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":3632,"ext_expires_in":3632,"access_token":"sanitized","refresh_token":"0.AYEAy_3zvsvcqUGueWSPIqMtInzwuq-61iBPn-ogOSCA_KeBAMw.AgABAAAAAAD--DLA3VO7QrddgJg7WevrAgDs_wQA9P8WvVkvkPtRYtXHDzu-Esg4zutnxn3wtv4oZHBH3XrrX0VUPgevlJZHAywRslvVtKpA16Itd-BKE1qtAvH_RW4BANRcUq1n41mEptbW-KEhXkV5EK6zAGzYvL9XNU3XZqtMUb-N7YpU0v2plN2j7tDG-81Sx6Jz7GN7bRLKE8A7mxy4FODlLDNj-jkq436NPJ-G2pE86R9ToF1QMK5R4rxsd52GUFWlKLLtMvAUmOg3Szp30SyyAsNBxT2mY4gaFAgM0lIURkvzCkzuQ0Ukv57iJNA7tXMTbua6x_4QxWso8sVsHeFc-hovZRpnkgZqv0qTtcVcQstbbGUMMWhiKWU1_X1_ux0bujMgk9ibttSXqeap8k7hoD1hFXzMn9IZxoPrS3FrqfY-qXVAccCcGZWa_T1tRlT9eUCmP-wTSI3d-I9IFYnaClwAVlYqLVJVA0YWV0-SWlI8Hy_ZJqaYuJeO1KKBVkMUIz-rGjG9N5cU2Lj4QcPgL7kamm5e0XJHl6KnvUKi3lNMdes9cLg8eCx-_IGUgvw5dmjNCCykh2N4AxuSZEF96nU5UikVBHyAsKufqWR0fDX6CYasvDhp_2pNBDcJfqP6xxDL8faboArG4sJr2KVznoAoN_05EttiNmYZyljfwyVnvIbEycwPxfykUyf76_OfFKuVP-B5hNxw3ZxHTktDD2asEmyzoP2W5oDROlYExDbjSY5ubsraCbl44SgySa7cg8cH1zBT9gMyaKQuQyRxUmZGAlhuTqBkrdBnA4jGlsQWZIeXjEM3nfWWu4_ZAP4dlHFVylPK454buuf8whJSWjYcncf3XlYrxVhxax-oOtAlDlcurKOPXWNq793UGFfYA298D-NKLCnVrE69Xpw6z9dF3UBThtfJjpxCXep4GR5GaxPSv-xdHgNxpQpafaMYWvqgthpZWuyl0UU","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ + .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":4263,"ext_expires_in":4263,"access_token":"sanitized","refresh_token":"sanitized","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', @@ -95,19 +95,19 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AqLftuJjYaxGnqcq3GFHt_-4k9TnAQAAAKI3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ai3D8e16fHhHjEOTUz4kxuK4k9TnAQAAAMo8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:11:46 GMT', + 'Wed, 23 Feb 2022 14:33:47 GMT', 'Content-Length', - '4627' + '4648' ]); nock('https://endpoint', {"encodedQueryParams":true}) @@ -133,15 +133,15 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-ests-server', '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=Als_EirUFG1PjnuA9CmM1D8; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aorgeri7CAxGsubIf2aNi_k; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTHznjVRcNu49cF8-tHJxcdgATXTYSBTXBvzVcNgY315H_bBUTH5vw-XnlcZtwmxr8r2mQ_6L58I79pe_hv5YRR0tzV5hMxmtIVe2xXr-_UQi9kBLYUg4vOtPszKVnIvfU9jm5cjFW3LHWWuSytEDBnHlN9BiClWyLfzGjAdlwtggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7v0kl0o9aqRidN4p-RRCXU39wpAXlUcH_PslvKaQmOdJq6WpUQwLDBt4lzdwrTS89BdZQ3Uj-JQ5HnChDSMc2wZkQF7itYeLp9QLkWmrx1A_m3lQsLPqCPeCHfLBWfNCQaeCFw0yzAk4o6cIVI1v6Ffurn7nlgfRM2-VEohcZx4gAA; 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, 23 Feb 2022 14:11:46 GMT', + 'Wed, 23 Feb 2022 14:33:47 GMT', 'Content-Length', '980' ]); @@ -166,17 +166,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', + '2.1.12470.11 - SCUS ProdSlices', 'Set-Cookie', - 'fpc=AhbML-ZKr11GqOrinjPkTr4; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AiQsubTHQNpKtMnPB5g0FdI; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrS0zI7QJ6a6n_rvDF4q9zUpTW-I_uKiOmOW7kHFC9S52SNHkSzf3HuwAPJ61BdfQPzKP5km1qf6UYPnFSSxkLbaVmMo84MfF_n-q7kwDNZtpED5oySgTGlZ5rUDPJ-5nJm93prSMY23feBPGpIlHckY_lN1Ny3lEbZ2vvij5GbjsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraY1UbpRShX-txCV6tP_6hsFXwGx9wfFRyrG7AADTxzPgv3TfHdDNvloQwQi6hodh80fK9duRQ9l6DOAc5j_f2HsY5Auk1l3wpnShE78IUr7h_8s7D5hlO1NyqqKUoEgyUvb5dIg9aVdDK6j3Ixzj7SvoXeJNUI1obAmeAe3HZrkgAA; 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, 23 Feb 2022 14:11:46 GMT', + 'Wed, 23 Feb 2022 14:33:47 GMT', 'Content-Length', '1753' ]); @@ -201,17 +201,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ap5kPND0lYpKhLrwM_188ss; expires=Fri, 25-Mar-2022 14:11:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ampctv9mT-BOoQebZv71jG0o7iuqAQAAAMs8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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', - 'Wed, 23 Feb 2022 14:11:46 GMT', + 'Wed, 23 Feb 2022 14:33:47 GMT', 'Content-Length', '1327' ]); @@ -219,7 +219,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) nock('https://endpoint', {"encodedQueryParams":true}) .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:12:18.5383279+00:00"}, [ + .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:44:50.0105689+00:00"}, [ 'Content-Length', '818', 'Content-Type', @@ -227,7 +227,7 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'PBTIbb6ejkOjBgn8LoDe1g.0', + 'qQOfRM+taEq4vr7YIUlG7Q.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', @@ -235,11 +235,11 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'api-supported-versions', '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', 'X-Processing-Time', - '362ms', + '780ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0o0AWYgAAAABH5KZ6Oyy/Rq1Y4jf9AnR8UFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0zEUWYgAAAADNzx1ahwaoTIJ2ovqqBg7CUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:47 GMT' + 'Wed, 23 Feb 2022 14:33:48 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js index 93734719f13f..e4be885508e6 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', + '2.1.12470.11 - WEULR2 ProdSlices', 'Set-Cookie', - 'fpc=Ao-WbQYONz5Mh9kwKgx9npU; expires=Fri, 25-Mar-2022 14:11:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ak0ggLeIGCFOixMll5q4Y6E; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwQVLNEkAfsmocd5FYXuLq4c7YyWA3N777QRKtt_NgybUMI6dki6ACJHs9N03JVoYF5vYx8VsAZR3rA0nLX-7wGAXbK6ZlT8B0zbyDxDrkycupd4bBZWc_ip-Tlmi3a3VYZMnTOFOVyeyvyzgNFP3tTU48Nww6ty3a0gNE1TUVEQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrUoKL7aWhFnvbflGgWdT-QPZVbE_-DTdQXqj2fY0kai1AU87a3uDn301wnDUZMoO12bx6Km3jxhpBtXJei1199oOgbBSw6dcbcNUoHZUIoqBan0dbHUZ5AXkeUlmTNCnk5lCN5C05hmd4_d7qZu9OX6IDdSRmDdQdPxXa1-W3dkgAA; 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, 23 Feb 2022 14:11:47 GMT', + 'Wed, 23 Feb 2022 14:33:48 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=Au5YoK-hjqtDraaCrrwqAeI; expires=Fri, 25-Mar-2022 14:11:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ao_pT5bA04VInIflct56kpQ; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrws4-uRBt4AvQ9w4aHg_rf1FVyfvjogLbpjeGSUBTYRDxd8l2MG90noCdV_yh50qHMlsRZU2RREoEZWxlUy3f8SsGlAgF_NJMeDTgp4liaXeqK7scbXhaDUffBPk9uPvDKUUedaMog2eGeWjHVc2CRxUYDC9bSy_uwfdCfHfBbREgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAgEcuGeAba_uS2xMbXph44OP7kZdEOsQEXOC2rf8bwk3EyNq7s8rtl5L2EIN12x-K522txs2nQ1pp8kOK6dchVcwUWwKWmdNGhk7NC3nT8kyr1qefgAPpE76_wYXEbeM0VxKZ2uxr9L5beVTUipDRdbKyATay0NDldS0R_reRDsgAA; 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, 23 Feb 2022 14:11:47 GMT', + 'Wed, 23 Feb 2022 14:33:48 GMT', 'Content-Length', '1753' ]); @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ai0qTbgJyO9KpPF5BI3u9GAo7iuqAQAAAKM3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Amta1776hQ5Hj69vUohzciI; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:11:47 GMT', + 'Wed, 23 Feb 2022 14:33:49 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - '0NzNVJOjnkaJa49BHPyRaw.0', + 'GyXyG7ED90GDS85CSzTdAA.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '16ms', + '26ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0pEAWYgAAAABC4u17tzQmS61y1QrquyOsUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0zUUWYgAAAADC/c+gF6OIRrS8buBGbWTMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:48 GMT' + 'Wed, 23 Feb 2022 14:33:48 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js index c6c7e1066c52..13e523797376 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AhRdDgR6BQ5Jmwy8-ZeNWak; expires=Fri, 25-Mar-2022 14:11:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuVsrV9KHr5NqoW_PojUAS8; expires=Fri, 25-Mar-2022 14:33:50 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrkT05ajP4sRHMOKYVbmDkVM6uUnDIxq900yQzzfY4x2-9rAcHLTlj03PNASeumhVCK60Y3FzRFaxR4ZjEU4xID7I7A_SiMrWvGCBMdsI4zPqRZm16tUnWg9nP8DreJ0jPcGi7FCwoiFHRRn7E7ss7MvE4Gn_dx0xYjImU-zOK5sgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrnYUHOns6zOYsYnCehP_MPfdDv2RQ2Qsm9s3_FzEdamBo63ri_tmiR66FysftQR4h4kA3ZFGe6I1Uu7DlxXgKA1HxbxkTwUmU95yDG--Cy6FMIJh2gTyHdFNgHOsCXTRc78mtK3syOV1qTeyhI1ZOda92ynjzgbOBOallWoacH7ggAA; 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, 23 Feb 2022 14:11:48 GMT', + 'Wed, 23 Feb 2022 14:33:50 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', + '2.1.12470.11 - NCUS ProdSlices', 'Set-Cookie', - 'fpc=Al31ysae7SlAnIUfY-9NC-w; expires=Fri, 25-Mar-2022 14:11:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuXXL026C95Fk4CqXSHYY38; expires=Fri, 25-Mar-2022 14:33:50 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrjSsSds_6fRpMD6WRnvWFMz3WQ8HYFRT_JTMYdTspInDe7N_uIKDTTRjdMRczFvYp0ojcsgo-Cswv0e9tb_Q9YdltuPh_mecXeO1Tts93F1CCzzXvexrTXlldqh7oV-xBBx7rmwEAIak3niK4LvejyuVL82blquOlkTCewe4p4gUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXW-QEjOUkWwZwWARg7M-uk2j4GYVuWRSyliB33tvo_4uut6-aCmncUUH34H3BUnDQ_lRpGmBG_rtE7eYmnipPxdbWiOwBdntzhipi8gW9XCXuuxbiq1CfxkvVSHlA4_Ai_wLbbZ3IyKiRI1UxY9PhWURA_19nomSGJmGJ_iD-fggAA; 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, 23 Feb 2022 14:11:48 GMT', + 'Wed, 23 Feb 2022 14:33:50 GMT', 'Content-Length', '1753' ]); @@ -99,13 +99,13 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AlhMCKZWg2xJvAprzPnpDhwo7iuqAQAAAKQ3qNkOAAAA; expires=Fri, 25-Mar-2022 14:11:49 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AjkCkD3VpP5LiS60VXViAlg; expires=Fri, 25-Mar-2022 14:33:50 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, 23 Feb 2022 14:11:49 GMT', + 'Wed, 23 Feb 2022 14:33:50 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'CzL7gC588EGAS7+lz3UhsA.0', + '4DcpoR5WwEuDpV/VXdjHdQ.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '33ms', + '35ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0pUAWYgAAAACnKzidnD6XSZpe3Yqmb2PrUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0zkUWYgAAAAAv+NXT2X/nTpENqGPdlOVYUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:49 GMT' + 'Wed, 23 Feb 2022 14:33:50 GMT' ]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js index 10ef5f5ffb3e..6d46a9397bad 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js @@ -25,17 +25,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', + '2.1.12470.11 - WEULR1 ProdSlices', 'Set-Cookie', - 'fpc=AlYLJ7vjctZMjU4uzfisg1k; expires=Fri, 25-Mar-2022 14:11:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AooKxfuUEkFDioPZdSPofXw; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrDvX_Oqv_rx4gAlND8b2265Lf0xeUYY9bBycMyMsotWa5Zmd-_XmQaQ3sivnJeYcSuagzouLAF3L0RBqFn7Obf3rU6iqQhnLCMmDoBagg9Onpe32gMXtYaO7IjLLakwQMYYUwXeC5sSTWgKheEGilbs6UxV6Wzm5Y7wVNOBWnBscgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraLfcUfGjVI6U17w7m9t2JC2gdtGwTb3m1ZJ17q5mltuILchgH0uj-f5Am0KtKHaQLnvjb_7dc_MREMMJ8Sg20hpKItfgKAKey9uOfBFywj-8TpXKpbp1AQduvDHm4vdR_w1_4L1lqYw5mr11i3Lq9ew6uVVSHXAgxer7YRybMnkgAA; 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, 23 Feb 2022 14:11:47 GMT', + 'Wed, 23 Feb 2022 14:33:49 GMT', 'Content-Length', '980' ]); @@ -60,17 +60,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'Set-Cookie', - 'fpc=ApX8h_94jwRBoAd6w6tU198; expires=Fri, 25-Mar-2022 14:11:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AmK5-WsOU1FOnOvHpDUMzow; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr9h8MsqjzGa5wbrmASUw64Av9YNsTQAlE53zw6Rnzcw7fmUQ-sGfUh1LirobtdWnBpMVO4UvBXbq2lRyhV_83CjiAF6ejQQhzV_eEt4-k0jm88OQqyhLMb8hMn3L2IM7bOUJRVXdRYYQDE14pHIhU6QT63NRy1isv6dJt_ZL56a4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMxnU2Hnix9HNZWgXI1JPGp7l5w34bBe750ITDI_U8peO4lsX_luhc14RdshDe7AUFQYW1_fRuTD5G1Yx6Rpo5fIE1m_U6zZ2u3r97wnwZPqk8l3hinA2-PwWAxsj5ejgvXgA1cnGjwmYIZ1ieTRmqaWZzGdqJ2HsnOTkVwW3XwEgAA; 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, 23 Feb 2022 14:11:47 GMT', + 'Wed, 23 Feb 2022 14:33:49 GMT', 'Content-Length', '1753' ]); @@ -95,17 +95,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'x-ms-request-id', '00000000-0000-0000-0000-000000000000', 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', + '2.1.12470.11 - WUS2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Ar6PXC1erYFLsaNPjA5DIcU; expires=Fri, 25-Mar-2022 14:11:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnCBK8SoFLRBnBxOYkPSUAs; expires=Fri, 25-Mar-2022 14:33:50 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, 23 Feb 2022 14:11:47 GMT', + 'Wed, 23 Feb 2022 14:33:49 GMT', 'Content-Length', '1327' ]); @@ -121,17 +121,17 @@ nock('https://endpoint', {"encodedQueryParams":true}) 'Request-Context', 'appId=', 'MS-CV', - 'd0WjwwXaHEyclff30poMOw.0', + '5HC1mNpMkk+85x7wNqcg+g.0', 'Strict-Transport-Security', 'max-age=2592000', 'x-ms-client-request-id', '00000000-0000-0000-0000-000000000000', 'X-Processing-Time', - '15ms', + '19ms', 'X-Cache', 'CONFIG_NOCACHE', 'X-Azure-Ref', - '0pEAWYgAAAABtBVuHZ9YxTJEZOGfh2cQuUFJHMDFFREdFMDYxOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', + '0zkUWYgAAAAB3wLsgJxgTSarytodhY8q1UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', 'Date', - 'Wed, 23 Feb 2022 14:11:49 GMT' + 'Wed, 23 Feb 2022 14:33:49 GMT' ]); diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index e459771fc066..abc90224aa8c 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -48,8 +48,10 @@ export const environmentSetup: RecorderEnvironmentSetup = { recording.replace(/"token"\s?:\s?"[^"]*"/g, `"token":"sanitized"`), (recording: string): string => recording.replace(/"access_token"\s?:\s?"[^"]*"/g, `"access_token":"sanitized"`), - (recording: string): string => - recording.replace(/"id_token"\s?:\s?"[^"]*"/g, `"id_token":"sanitized"`), + (recording: string): string => + recording.replace(/"id_token"\s?:\s?"[^"]*"/g, `"id_token":"sanitized"`), + (recording: string): string => + recording.replace(/"refresh_token"\s?:\s?"[^"]*"/g, `"refresh_token":"sanitized"`), (recording: string): string => recording.replace(/(https:\/\/)([^/',]*)/, "$1endpoint"), (recording: string): string => recording.replace(/"id"\s?:\s?"[^"]*"/g, `"id":"sanitized"`), (recording: string): string => { From 784f999757d168edfa77af3e45e4c62435e52e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Thu, 24 Feb 2022 09:50:18 +0100 Subject: [PATCH 23/33] inject xhr client to fix browser tests --- .../test/public/utils/recordedClient.ts | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index abc90224aa8c..cd46c9a81ef6 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -7,12 +7,14 @@ import { Recorder, RecorderEnvironmentSetup, env, + isLiveMode, isPlaybackMode, record, } from "@azure-tools/test-recorder"; import { CommunicationIdentityClient } from "../../../src"; import { Context } from "mocha"; import { TokenCredential } from "@azure/core-auth"; +import { createXhrHttpClient } from "@azure/test-utils"; import { isNode } from "@azure/core-util"; import { parseConnectionString } from "@azure/communication-common"; @@ -25,6 +27,8 @@ export interface RecordedClient { recorder: Recorder; } +const httpClient = isNode || isLiveMode() ? undefined : createXhrHttpClient(); + const replaceableVariables: { [k: string]: string } = { COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING: "endpoint=https://endpoint/;accesskey=banana", INCLUDE_PHONENUMBER_LIVE_TESTS: "false", @@ -84,7 +88,9 @@ export function createRecordedCommunicationIdentityClient( // casting is a workaround to enable min-max testing return { - client: new CommunicationIdentityClient(env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING), + client: new CommunicationIdentityClient(env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING, { + httpClient, + }), recorder, }; } @@ -105,7 +111,10 @@ export function createRecordedCommunicationIdentityClientWithToken( }; // casting is a workaround to enable min-max testing - return { client: new CommunicationIdentityClient(endpoint, credential), recorder }; + return { + client: new CommunicationIdentityClient(endpoint, credential, { httpClient }), + recorder, + }; } if (isNode) { @@ -114,10 +123,14 @@ export function createRecordedCommunicationIdentityClientWithToken( credential = new ClientSecretCredential( env.AZURE_TENANT_ID, env.AZURE_CLIENT_ID, - env.AZURE_CLIENT_SECRET + env.AZURE_CLIENT_SECRET, + { httpClient } ); } // casting is a workaround to enable min-max testing - return { client: new CommunicationIdentityClient(endpoint, credential), recorder }; + return { + client: new CommunicationIdentityClient(endpoint, credential, { httpClient }), + recorder, + }; } From a7bae0da3246cced7c3851914e81c5b55107f516 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Thu, 24 Feb 2022 10:47:35 +0100 Subject: [PATCH 24/33] updated changelog --- sdk/communication/communication-common/CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sdk/communication/communication-common/CHANGELOG.md b/sdk/communication/communication-common/CHANGELOG.md index 8f22f7ccf99e..72f70504ae93 100644 --- a/sdk/communication/communication-common/CHANGELOG.md +++ b/sdk/communication/communication-common/CHANGELOG.md @@ -5,10 +5,12 @@ ### Features Added - Optimization added: When the proactive refreshing is enabled and the token refresher fails to provide a token that's not about to expire soon, the subsequent refresh attempts will be scheduled for when the token reaches half of its remaining lifetime until a token with long enough validity (>10 minutes) is obtained. -- Migrated from using `@azure/core-http` to `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the move. ### Breaking Changes +- Migrated from using `@azure/core-http` to `@azure/core-rest-pipeline` for the handling of HTTP requests. See [Azure Core v1 vs v2](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-rest-pipeline/documentation/core2.md) for more on the difference and benefits of the move. + - `createCommunicationAccessKeyCredentialPolicy` and `createCommunicationAuthPolicy` newly return `PipelinePolicy` instead of `RequestPolicyFactory`. + ### Bugs Fixed ### Other Changes From 60882e3b98d5feb3f54ab98cdd98f16a78d1921b Mon Sep 17 00:00:00 2001 From: Jose Manuel Heredia Hidalgo Date: Thu, 24 Feb 2022 20:48:56 +0000 Subject: [PATCH 25/33] Migrate to new recorder --- .../communication-identity/karma.conf.js | 27 +- .../communication-identity/package.json | 13 +- ...recording_successfully_creates_a_user.json | 80 +++--- ..._and_gets_a_token_in_a_single_request.json | 89 ++++--- ...successfully_creates_a_user_and_token.json | 88 ++++--- ...recording_successfully_deletes_a_user.json | 138 ++++++---- ...ts_a_token_for_a_user_multiple_scopes.json | 152 +++++++---- ..._gets_a_token_for_a_user_single_scope.json | 151 +++++++---- ...ully_revokes_tokens_issued_for_a_user.json | 148 +++++++---- ...recording_successfully_creates_a_user.json | 102 ++++---- ..._and_gets_a_token_in_a_single_request.json | 111 ++++---- ...successfully_creates_a_user_and_token.json | 110 ++++---- ...recording_successfully_deletes_a_user.json | 158 +++++------ ...ts_a_token_for_a_user_multiple_scopes.json | 172 ++++++------ ..._gets_a_token_for_a_user_single_scope.json | 171 ++++++------ ...ully_revokes_tokens_issued_for_a_user.json | 168 ++++++------ ..._attempting_to_delete_an_invalid_user.json | 100 ++++--- ..._to_issue_a_token_for_an_invalid_user.json | 107 ++++---- ...g_to_issue_a_token_without_any_scopes.json | 171 ++++++------ ...o_revoke_a_token_from_an_invalid_user.json | 101 ++++---- ..._attempting_to_delete_an_invalid_user.json | 78 +++--- ..._to_issue_a_token_for_an_invalid_user.json | 85 +++--- ...g_to_issue_a_token_without_any_scopes.json | 151 +++++++---- ...o_revoke_a_token_from_an_invalid_user.json | 79 +++--- .../recording_successfully_creates_a_user.js | 33 --- ...recording_successfully_creates_a_user.json | 41 +++ ...er_and_gets_a_token_in_a_single_request.js | 33 --- ..._and_gets_a_token_in_a_single_request.json | 50 ++++ ...g_successfully_creates_a_user_and_token.js | 33 --- ...successfully_creates_a_user_and_token.json | 49 ++++ .../recording_successfully_deletes_a_user.js | 57 ---- ...recording_successfully_deletes_a_user.json | 69 +++++ ...gets_a_token_for_a_user_multiple_scopes.js | 61 ----- ...ts_a_token_for_a_user_multiple_scopes.json | 81 ++++++ ...ly_gets_a_token_for_a_user_single_scope.js | 61 ----- ..._gets_a_token_for_a_user_single_scope.json | 80 ++++++ ...sfully_revokes_tokens_issued_for_a_user.js | 57 ---- ...ully_revokes_tokens_issued_for_a_user.json | 79 ++++++ .../recording_successfully_creates_a_user.js | 139 ---------- ...recording_successfully_creates_a_user.json | 39 +++ ...er_and_gets_a_token_in_a_single_request.js | 139 ---------- ..._and_gets_a_token_in_a_single_request.json | 48 ++++ ...g_successfully_creates_a_user_and_token.js | 139 ---------- ...successfully_creates_a_user_and_token.json | 47 ++++ .../recording_successfully_deletes_a_user.js | 163 ------------ ...recording_successfully_deletes_a_user.json | 65 +++++ ...gets_a_token_for_a_user_multiple_scopes.js | 167 ------------ ...ts_a_token_for_a_user_multiple_scopes.json | 77 ++++++ ...ly_gets_a_token_for_a_user_single_scope.js | 167 ------------ ..._gets_a_token_for_a_user_single_scope.json | 76 ++++++ ...sfully_revokes_tokens_issued_for_a_user.js | 163 ------------ ...ully_revokes_tokens_issued_for_a_user.json | 75 ++++++ ...en_attempting_to_delete_an_invalid_user.js | 139 ---------- ..._attempting_to_delete_an_invalid_user.json | 38 +++ ...ng_to_issue_a_token_for_an_invalid_user.js | 139 ---------- ..._to_issue_a_token_for_an_invalid_user.json | 45 ++++ ...ing_to_issue_a_token_without_any_scopes.js | 167 ------------ ...g_to_issue_a_token_without_any_scopes.json | 77 ++++++ ..._to_revoke_a_token_from_an_invalid_user.js | 139 ---------- ...o_revoke_a_token_from_an_invalid_user.json | 39 +++ ...en_attempting_to_delete_an_invalid_user.js | 33 --- ..._attempting_to_delete_an_invalid_user.json | 40 +++ ...ng_to_issue_a_token_for_an_invalid_user.js | 33 --- ..._to_issue_a_token_for_an_invalid_user.json | 47 ++++ ...ing_to_issue_a_token_without_any_scopes.js | 61 ----- ...g_to_issue_a_token_without_any_scopes.json | 81 ++++++ ..._to_revoke_a_token_from_an_invalid_user.js | 33 --- ...o_revoke_a_token_from_an_invalid_user.json | 41 +++ ..._token_for_a_communication_access_token.js | 139 ---------- ..._exchange_an_empty_teams_user_aad_token.js | 31 --- ...xchange_an_expired_teams_user_aad_token.js | 31 --- ...xchange_an_invalid_teams_user_aad_token.js | 31 --- ..._token_for_a_communication_access_token.js | 245 ------------------ ..._exchange_an_empty_teams_user_aad_token.js | 137 ---------- ...xchange_an_expired_teams_user_aad_token.js | 137 ---------- ...xchange_an_invalid_teams_user_aad_token.js | 137 ---------- .../communicationIdentityClient.spec.ts | 8 +- .../node/getTokenForTeamsUser.node.spec.ts | 16 +- .../test/public/utils/recordedClient.ts | 149 +++++------ 79 files changed, 2926 insertions(+), 4325 deletions(-) delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json delete mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js create mode 100644 sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js delete mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js diff --git a/sdk/communication/communication-identity/karma.conf.js b/sdk/communication/communication-identity/karma.conf.js index 475fc334b882..41e749fb9c8d 100644 --- a/sdk/communication/communication-identity/karma.conf.js +++ b/sdk/communication/communication-identity/karma.conf.js @@ -1,12 +1,9 @@ // https://github.com/karma-runner/karma-chrome-launcher process.env.CHROME_BIN = require("puppeteer").executablePath(); require("dotenv").config(); -const { - jsonRecordingFilterFunction, - isPlaybackMode, - isSoftRecordMode, - isRecordMode, -} = require("@azure-tools/test-recorder"); +const { relativeRecordingsPath } = require("@azure-tools/test-recorder"); + +process.env.RECORDINGS_RELATIVE_PATH = relativeRecordingsPath(); module.exports = function (config) { config.set({ @@ -28,14 +25,10 @@ module.exports = function (config) { "karma-coverage", "karma-sourcemap-loader", "karma-junit-reporter", - "karma-json-to-file-reporter", - "karma-json-preprocessor", ], // list of files / patterns to load in the browser - files: ["dist-test/index.browser.js"].concat( - isPlaybackMode() || isSoftRecordMode() ? ["recordings/browsers/**/*.json"] : [] - ), + files: ["dist-test/index.browser.js"], // list of files / patterns to exclude exclude: [], @@ -44,7 +37,6 @@ module.exports = function (config) { // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor preprocessors: { "**/*.js": ["sourcemap", "env"], - "recordings/browsers/**/*.json": ["json"], // IMPORTANT: COMMENT following line if you want to debug in your browsers!! // Preprocess source file to calculate code coverage, however this will make source file unreadable //"dist-test/index.browser.js": ["coverage"] @@ -61,12 +53,13 @@ module.exports = function (config) { "AZURE_CLIENT_ID", "AZURE_CLIENT_SECRET", "AZURE_TENANT_ID", + "RECORDINGS_RELATIVE_PATH" ], // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter - reporters: ["mocha", "coverage", "junit", "json-to-file"], + reporters: ["mocha", "coverage", "junit",], coverageReporter: { // specify a common output directory @@ -89,11 +82,6 @@ module.exports = function (config) { properties: {}, // key value pair of properties to add to the section of the report }, - jsonToFileReporter: { - filter: jsonRecordingFilterFunction, - outputPath: ".", - }, - // web server port port: 9876, @@ -130,9 +118,6 @@ module.exports = function (config) { browserNoActivityTimeout: 600000, browserDisconnectTimeout: 10000, browserDisconnectTolerance: 3, - browserConsoleLogOptions: { - terminal: !isRecordMode(), - }, client: { mocha: { diff --git a/sdk/communication/communication-identity/package.json b/sdk/communication/communication-identity/package.json index 7f2ba0e79e22..b7665d781588 100644 --- a/sdk/communication/communication-identity/package.json +++ b/sdk/communication/communication-identity/package.json @@ -22,8 +22,8 @@ "extract-api": "tsc -p . && api-extractor run --local", "format": "prettier --write --config ../../../.prettierrc.json --ignore-path ../../../.prettierignore \"src/**/*.ts\" \"test/**/*.ts\" \"samples-dev/**/*.ts\" \"*.{js,json}\"", "generate:client": "autorest --typescript ./swagger/README.md && rushx format", - "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 --full-trace -t 300000 dist-esm/test/public/*.spec.js dist-esm/test/public/node/*.spec.js", + "integration-test:browser": "dev-tool run test:browser", + "integration-test:node": "dev-tool run test:node-js-input -- --timeout 5000000 --exclude 'dist-esm/test/**/browser/*.spec.js' 'dist-esm/test/**/*.spec.js'", "integration-test": "npm run integration-test:node && npm run integration-test:browser", "lint:fix": "eslint package.json api-extractor.json src test --ext .ts --fix --fix-type [problem,suggestion]", "lint": "eslint package.json api-extractor.json src test --ext .ts", @@ -32,8 +32,8 @@ "test:browser": "npm run build:test && npm run unit-test:browser && npm run integration-test:browser", "test:node": "npm run build:test && npm run unit-test:node && npm run integration-test:node", "test:watch": "npm run test -- --watch --reporter min", - "unit-test:browser": "karma start --single-run", - "unit-test:node": "mocha -r esm -r ts-node/register --reporter ../../../common/tools/mocha-multi-reporter.js --full-trace --exclude \"test/**/browser/*.spec.ts\" \"test/**/*.spec.ts\"", + "unit-test:browser": "dev-tool run test:browser", + "unit-test:node": "dev-tool run test:node-ts-input -- --timeout 1200000 --exclude 'test/**/browser/*.spec.ts' 'test/**/*.spec.ts'", "unit-test": "npm run unit-test:node && npm run unit-test:browser" }, "//metadata": { @@ -104,8 +104,9 @@ "@azure/dev-tool": "^1.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/test-utils": "^1.0.0", - "@azure-tools/test-recorder": "^1.0.0", + "@azure-tools/test-recorder": "^2.0.0", "@azure/identity": "^2.0.1", + "@azure-tools/test-credential": "^1.0.0", "@microsoft/api-extractor": "^7.18.11", "@types/chai": "^4.1.6", "@types/mocha": "^7.0.2", @@ -122,8 +123,6 @@ "karma-env-preprocessor": "^0.1.1", "karma-firefox-launcher": "^1.1.0", "karma-ie-launcher": "^1.0.0", - "karma-json-preprocessor": "^0.3.3", - "karma-json-to-file-reporter": "^1.0.1", "karma-junit-reporter": "^2.0.1", "karma-mocha-reporter": "^2.2.5", "karma-mocha": "^2.0.1", diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index e6d10a49ccb2..72cc5ad12c4b 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -1,32 +1,50 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:07 GMT", - "ms-cv": "f7pwMQZ1yEeXwKxStG1lkQ.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "030UWYgAAAADYO2unKGh7RIoUynQh8Xd2UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "298ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fee82218733f79ddce34d3e1fc489a3c" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:54 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:54 GMT", + "MS-CV": "bEsPRv1cqky3\u002Bnj8HVj2\u002BQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0zu0XYgAAAAA6yhpCFS/4S5DqAe2VyWU2Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "85ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 9445f1cbabe6..9509b5d40d10 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -1,32 +1,59 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:10.739054+00:00\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "926", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:10 GMT", - "ms-cv": "4/jWwDEplkS+EQk9I0X3Bg.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "04kUWYgAAAABGJWkER59qQ5wgVqVTQ2wpUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "287ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6889b0baf9e4a63f8beeac7fe2bfe264" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:55 GMT", + "MS-CV": "S7czQ2ZXW0\u002B1KBK/af3/mg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0z\u002B0XYgAAAAB2CqvHbZIhSLRIgnAa6h/cQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "223ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:55.9895802\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 1c4a6448ab79..4a2700927283 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -1,32 +1,58 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:08.9114914+00:00\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "920", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:08 GMT", - "ms-cv": "QFDAtMKmAkOsy1/KOByGig.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "04EUWYgAAAADFGjRWS8dfQZfYqOLsPJXrUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "754ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "0875eb9b8d2965e53354c7ae16481c86" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "34", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:54 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "createTokenWithScopes": [ + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:54 GMT", + "MS-CV": "YJFD1Iow502bIJPjQ/heRA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0zu0XYgAAAAAQ6ERHbofSQLCGdT22dj\u002BGQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "224ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:55.0664655\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 0f0744d8b87c..c8befad8124b 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -1,53 +1,87 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:12 GMT", - "ms-cv": "D09q7QzaC0OnV52Yj3qbog.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "05EUWYgAAAAD7ESWVaqSrTISK7MxBhXBwUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "30ms" - } - }, - { - "method": "DELETE", - "url": "https://endpoint/identities/sanitized", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:34:12 GMT", - "ms-cv": "swSpPXO09U2aNnXjCnjH6g.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "05EUWYgAAAACHuP5ZxA2QQIe2pa8zMMmWUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "265ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "20b8c3c054fc85be77c68f3962c7f977" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:56 GMT", + "MS-CV": "DRl0OquW5EKc7kMI/2xGXQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "00O0XYgAAAAB6t1A\u002BIl4\u002BQY0KOsPgmxoIQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "83ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:42:56 GMT", + "MS-CV": "fDStFWkFQU6hmjCzGqgDEg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "00O0XYgAAAABcb3PtEgLuT7Qe7l0\u002BzKLMQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "333ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index a5c6348f03cd..6c98df8b4e00 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -1,55 +1,99 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:09 GMT", - "ms-cv": "/McWEaeH5EqqMM1PfoJLeA.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "04UUWYgAAAABqvJ/lr1K1SZccoK4cNiRRUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "288ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", - "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:10.2478445+00:00\"}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "811", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:09 GMT", - "ms-cv": "UlGkZLCaz0uP4hKFRfVqVg.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "04kUWYgAAAAAl1V4hB/ztTKN9IJ2CPEr3UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "81ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c65693e9b048a671a89d9f47969e5b57" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:55 GMT", + "MS-CV": "zCvL64zPy0eZwNyglsUzrw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0z\u002B0XYgAAAABquT701/efTZa68ScoL/kqQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "84ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:55 GMT", + "MS-CV": "17I0JedKckuL8wMmZaObog.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0z\u002B0XYgAAAABi0z1oZcgKSbU9SB5IRDHeQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "153ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:55.6959239\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index c337dd36dd19..90297e27d1a2 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -1,55 +1,98 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:08 GMT", - "ms-cv": "FpTc19MGE0GiFrdE84GQwg.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "04UUWYgAAAAD6VsMNRneeSJevOt3/x/NsUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "90ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[\"chat\"]}", - "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:09.4588801+00:00\"}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "804", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:09 GMT", - "ms-cv": "u0ZgIWC3yUeluwW0tOWjKg.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "04UUWYgAAAABBnQjYKEcsS7CNTgcNsEcmUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "36ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "61385498aabce6e765bac0336b80226d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:55 GMT", + "MS-CV": "Bq9ChehXyk61abWAnDIXog.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0z\u002B0XYgAAAABNpfvQQSZQQ7ba470/Kk/eQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "82ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [ + "chat" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:55 GMT", + "MS-CV": "9MPYAAJBY0ShnCbYwmOIIg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0z\u002B0XYgAAAAD9ZNebIu\u002BvTrn0kWBkbRKlQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "156ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:55.3860697\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 8b138adc712a..74d975031653 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -1,53 +1,97 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:11.2910428+00:00\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "927", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:10 GMT", - "ms-cv": "du9CgJSgIkCpIx1ki5m2zw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "04kUWYgAAAACCqGCJC6pYQ7o2XSwlwt1LUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "276ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:revokeAccessTokens", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:34:12 GMT", - "ms-cv": "F1erb7r/rUGND11ZbPhVIg.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "040UWYgAAAABFMhIf5J7VRKtT+7NipqX2UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "872ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1bf6179be37702d1a62de2d6a0d076a7" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:56 GMT", + "MS-CV": "yHmZ\u002BuZE/Uqupp4jYA4OUA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "00O0XYgAAAADXo/ztZsvbSJvBVe8uDVQWQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "255ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:56.2983435\u002B00:00" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:42:56 GMT", + "MS-CV": "dAHDvU9XEU\u002BKcRHCN6alEA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "00O0XYgAAAABa065j20nkT6VZK8RZ4NdxQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "213ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 6057f72ed9eb..079a01922dca 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -1,56 +1,48 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33:57 GMT", - "ms-cv": "pz+AtNU6QE+sMILzFawTIA.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "01EUWYgAAAABAFWOaBhQxR4RjhjiRF7n7UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "23ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "fee82218733f79ddce34d3e1fc489a3c" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:50 GMT", + "MS-CV": "JhAZdFReNUSpF2xapnETLA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0yu0XYgAAAADOkPXuAP3kRb0ju4zVjbdjQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "283ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 8191fc29b58a..da092dc5ad40 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -1,56 +1,57 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:01 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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:02.3249275+00:00\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "927", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:02 GMT", - "ms-cv": "IdE3BN0EI0KO6JI1CPhLJw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "02kUWYgAAAABq40zbQR8zTqEKJ3qcme8EUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "85ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "6889b0baf9e4a63f8beeac7fe2bfe264" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:51 GMT", + "MS-CV": "ldDLhp5cl0msjCZiimSHOg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0y\u002B0XYgAAAADllwOAVKxDTIg6wX8MAg92Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "220ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:52.1913711\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index bcd22c411d1d..505a0d9c199f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -1,56 +1,56 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"createTokenWithScopes\":[\"voip\"]}", - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:33:58.0195118+00:00\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "920", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33:57 GMT", - "ms-cv": "q/AJcqKzAESAbGfIeSSWow.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "01UUWYgAAAAAMBQEy+9PtTpX9E7y1Mt89UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "134ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "0875eb9b8d2965e53354c7ae16481c86" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "34", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "createTokenWithScopes": [ + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:50 GMT", + "MS-CV": "wW5iU8yX0k2/muoWt0U/vA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0yu0XYgAAAAB1vEogTKQ\u002BT6rDblTNYOM8Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "280ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:51.0089193\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index b96ec2ef0246..696dc1cf79b4 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -1,77 +1,83 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:03 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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:03 GMT", - "ms-cv": "Eng9Svh1jUSrz9tn769hJw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "020UWYgAAAADQ4PPMM8boQKvxVZz7YW2OUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "47ms" - } - }, - { - "method": "DELETE", - "url": "https://endpoint/identities/sanitized", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:34:04 GMT", - "ms-cv": "I9IBWl2CXUiYoZix+cC0pQ.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "03EUWYgAAAAABkEO6ncW+Qbo7oiuhWuOhUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "201ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "20b8c3c054fc85be77c68f3962c7f977" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:53 GMT", + "MS-CV": "Ra2iVzcPKUG6Z5Z2Tgdqog.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0ze0XYgAAAAAJ7VK6c1dES6YVghrbcfDrQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "81ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:42:53 GMT", + "MS-CV": "vT3epOWcCke0EwEjyOXUlg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0ze0XYgAAAABiD/wPPYg1QK\u002BoNt/yLReRQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "200ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 2c0bee3db07d..ccd9ff088bdf 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -1,79 +1,95 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:01 GMT", - "ms-cv": "eZBr/mw9/0CHQl7c6ZdTQw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "010UWYgAAAABIEtsSJxcXT7NVS3sIublIUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "55ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", - "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:01.5582147+00:00\"}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "811", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:01 GMT", - "ms-cv": "l4npDsbt80aYm/SmJMYl5A.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "02UUWYgAAAAAQhrKKda0OQpwXLy9VwpwcUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "77ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "c65693e9b048a671a89d9f47969e5b57" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:51 GMT", + "MS-CV": "PYS/jmoChUO6mOhrXfs/fQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0y\u002B0XYgAAAAA4BdPTL6eNTrdoSV/Iju8IQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "77ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:51 GMT", + "MS-CV": "4DiF6\u002Bb2A0uw444yRCBtUw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0y\u002B0XYgAAAABGZvS2\u002BFEKTa3TljAvreygQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "146ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:51.8163206\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index ada7dda09b6e..2c7a8e6ab024 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -1,79 +1,94 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33: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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33:58 GMT", - "ms-cv": "E1mXNjC1WU6lzD1zpPMkEA.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "01kUWYgAAAABYcv6ydwY0R6fI2BVmJulVUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "45ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[\"chat\"]}", - "status": 200, - "response": "{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:33:58.7863334+00:00\"}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "804", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:33:58 GMT", - "ms-cv": "b6S9UvPQO0yoM8CTKvzidQ.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "01kUWYgAAAADbSZ139qqTQIv37pdG5O6yUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "57ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "61385498aabce6e765bac0336b80226d" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:51 GMT", + "MS-CV": "5MH4cldMckKcKX/BVR5CVw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0y\u002B0XYgAAAAAEdferpIt\u002BTYVAc7lw6Mu3Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "81ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [ + "chat" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:51 GMT", + "MS-CV": "0ISmtOtNf06mz9nqd8MteQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0y\u002B0XYgAAAAA1lm8Cu9XbRqY0r09FFTpNQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "146ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:51.4160072\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index 7f1759ea5a7b..5167f1243bde 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -1,77 +1,93 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:01 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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"createTokenWithScopes\":[\"chat\",\"voip\"]}", - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"},\"accessToken\":{\"token\":\"sanitized\",\"expiresOn\":\"2022-02-24T14:34:02.7726853+00:00\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "927", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:02 GMT", - "ms-cv": "omksAq5Nxka9MFH1ki1gcw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "02kUWYgAAAAA4oY0L3vkGQaz5WNTWz12wUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "59ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:revokeAccessTokens", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 204, - "response": "", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "date": "Wed, 23 Feb 2022 14:34:03 GMT", - "ms-cv": "bq5zxgWC4US6YoXtw2HwLA.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "02kUWYgAAAABOzw/se6n2R50nOriRNR/CUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "683ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "1bf6179be37702d1a62de2d6a0d076a7" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "114", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:52 GMT", + "MS-CV": "GawGhrrqM0C8OJt9J8acwQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0zO0XYgAAAACGdr3CQ2RKS5FmJ/HRij6PQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "224ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:42:52.658701\u002B00:00" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:42:52 GMT", + "MS-CV": "QIJJP3VRbE6I7YrrMWtMHg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0zO0XYgAAAADfOOxgvRSxTpv80onYioa4Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "216ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 8ad4e2fa811c..6f21c9155699 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -1,55 +1,47 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34: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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "DELETE", - "url": "https://endpoint/identities/sanitized", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 401, - "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:07 GMT", - "ms-cv": "DPKJViXfqU2nM4YNSM3eMg.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "03kUWYgAAAABaNg9Ei27GTJfQD12q04IxUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "397ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d4c36d330cf943ffc89cfd00cc968d56" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:54 GMT", + "MS-CV": "KNotPRZoaEap7ANp5gcYRg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0zu0XYgAAAACvehcvu73mR5YIhwZptZAUQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "11ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index c0eb6961349c..0956df3f11df 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -1,55 +1,54 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:05 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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", - "status": 401, - "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:05 GMT", - "ms-cv": "IgwmDz97Wk2R+KIjxVB8Jw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "03UUWYgAAAACiCM9qyXUqRaAU0BWUiyIpUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "75ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "10130256303a888bdac5e1fc0ff89de0" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:54 GMT", + "MS-CV": "RSEMr136mUWQzPl3DQ2HIQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0zu0XYgAAAAAH/9aBxMbETK9A8mqn49cLQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "11ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index abbded9a7113..354bb819f1e3 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -1,78 +1,95 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:04 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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - WUS2 ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:04 GMT", - "ms-cv": "figrEGlhYE+K9QUfW4ebmg.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "03EUWYgAAAADtcYBZYUOdTKaLD6CkwsndUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "61ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[]}", - "status": 400, - "response": "{\"error\":{\"code\":\"ValidationError\",\"message\":\"Invalid scopes - Scopes field is required.\",\"target\":\"scopes\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:05 GMT", - "ms-cv": "nCBh55qV302XS5iD5wQtzQ.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "03UUWYgAAAACrZQUJ3WZVRoR3XSSkXWm2UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "234ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "232c6a275a8bb301c5fb204cd5ea835a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:53 GMT", + "MS-CV": "GdU7iLTybk\u002BLblD3h9ddww.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0ze0XYgAAAAA91xudZ5h7SL/bSnPQP0FvQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "80ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "13", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:53 GMT", + "MS-CV": "Zxw4vPqUSEaxl7FbE9KnfQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0ze0XYgAAAACsY6Pc\u002BKrARqI51Ka/APrgQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "11ms" + }, + "ResponseBody": { + "error": { + "code": "ValidationError", + "message": "Invalid scopes - Scopes field is required.", + "target": "scopes" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 8c1442c0fbc3..59c292107c3f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -1,55 +1,48 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/SomeTenantId/oauth2/v2.0/token", - "query": {}, - "requestBody": "response_type=token&grant_type=client_credentials&client_id=SomeClientId&client_secret=CDr7Q%7EKYoVreBSYmel36eFHlits-iwmAIwPoE&scope=https%3A%2F%2Fsanitized%2F", - "status": 200, - "response": "{\"token_type\":\"Bearer\",\"expires_in\":86399,\"ext_expires_in\":86399,\"access_token\":\"sanitized\"}", - "responseHeaders": { - "cache-control": "no-store, no-cache", - "content-length": "1327", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:05 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://endpoint/api/report?catId=GW+estsfd+dub2\"}]}", - "strict-transport-security": "max-age=31536000; includeSubDomains", - "x-content-type-options": "nosniff", - "x-ms-ests-server": "2.1.12470.11 - EUS ProdSlices", - "x-ms-request-id": "00000000-0000-0000-0000-000000000000" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:revokeAccessTokens", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 401, - "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:06 GMT", - "ms-cv": "3o7DGa9NBkuXnWSWKsb4XA.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "03kUWYgAAAABI3BMi5b/aSK6T18pctsebUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "118ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e538f8ef41e7abb62269601378045374" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:54 GMT", + "MS-CV": "Mmo2R4jp70Wkm2iihSYW1Q.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0zu0XYgAAAACu/3FMuk6MQYEfJDc\u002BWFyiQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "12ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index f0a6c4acb835..920f2483d020 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -1,31 +1,49 @@ { - "recordings": [ - { - "method": "DELETE", - "url": "https://endpoint/identities/sanitized", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 401, - "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:14 GMT", - "ms-cv": "QknS6bzfyUaic1Cbio6h6g.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "05kUWYgAAAAC2XMSxrGYRToPr+imfU9JMUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "238ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "d4c36d330cf943ffc89cfd00cc968d56" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:57 GMT", + "MS-CV": "5OzxtTzmokCpDIL1/L/xHw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "00e0XYgAAAAAzAByN0CImRaQpis\u002BiWgCFQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "14ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index ba303348e206..788b2f5ee5be 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -1,31 +1,56 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[\"chat\",\"voip\"]}", - "status": 401, - "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:13 GMT", - "ms-cv": "TujY3Q7o0kOXwzPVg3/2AA.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "05UUWYgAAAACY7XhYd3xnSo8PbRUT0ylUUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "27ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "10130256303a888bdac5e1fc0ff89de0" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:57 GMT", + "MS-CV": "FTmoJTfb6UC9omIOJwSTEw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "00e0XYgAAAADHJ8XRzj\u002BZRJai8Q8DNbujQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "17ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index cfbee83ff436..e07ec3ead4ec 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -1,54 +1,99 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 201, - "response": "{\"identity\":{\"id\":\"sanitized\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-length": "101", - "content-type": "application/json; charset=utf-8", - "date": "Wed, 23 Feb 2022 14:34:13 GMT", - "ms-cv": "KzKtMqaD5UShr4yz1jEqCw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "05UUWYgAAAABuxsvQ+9HVT7vi7lIFOit0UFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "32ms" - } - }, - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:issueAccessToken", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": "{\"scopes\":[]}", - "status": 400, - "response": "{\"error\":{\"code\":\"ValidationError\",\"message\":\"Invalid scopes - Scopes field is required.\",\"target\":\"scopes\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:13 GMT", - "ms-cv": "zZ5r4OiL0EmM3UtwcJdBFw.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "05UUWYgAAAACxf5kxwbAJRLbUa8oy7bYvUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "28ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "232c6a275a8bb301c5fb204cd5ea835a" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:42:57 GMT", + "MS-CV": "bouo8hM6NEGnlSMKR1NNVQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "00e0XYgAAAADkR40S0JTgQrOSTMwxFlv9Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "86ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "13", + "Content-Type": "application/json", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": { + "scopes": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:57 GMT", + "MS-CV": "\u002BZsWW8F1oUaSl/RDaL5gew.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "00e0XYgAAAAAM3wUTPeuCT6X21AmRkBOjQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "18ms" + }, + "ResponseBody": { + "error": { + "code": "ValidationError", + "message": "Invalid scopes - Scopes field is required.", + "target": "scopes" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index ae1a63172fbc..33a614933d37 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -1,31 +1,50 @@ { - "recordings": [ - { - "method": "POST", - "url": "https://endpoint/identities/sanitized/:revokeAccessTokens", - "query": { - "api-version": "2021-10-31-preview" - }, - "requestBody": null, - "status": 401, - "response": "{\"error\":{\"code\":\"IdentityNotOwned\",\"message\":\"Provided identity doesn't belong to the resource.\"}}", - "responseHeaders": { - "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "content-type": "application/json", - "date": "Wed, 23 Feb 2022 14:34:13 GMT", - "ms-cv": "TRl5quKj9UmOU+4hka6EjQ.0", - "request-context": "appId=", - "strict-transport-security": "max-age=2592000", - "x-azure-ref": "05UUWYgAAAAAlvLe7w5a0S63x0cWSCBBvUFJHMDFFREdFMDkxMQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", - "x-cache": "CONFIG_NOCACHE", - "x-ms-client-request-id": "00000000-0000-0000-0000-000000000000", - "x-processing-time": "49ms" - } - } - ], - "uniqueTestInfo": { - "uniqueName": {}, - "newDate": {} - }, - "hash": "e538f8ef41e7abb62269601378045374" -} \ No newline at end of file + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "en-US", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Referer": "http://localhost:9876/", + "sec-ch-ua": "", + "sec-ch-ua-mobile": "?0", + "sec-ch-ua-platform": "", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "same-site", + "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:42:57 GMT", + "MS-CV": "Sb1SBZTBo0WgSJI18IebiA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "00e0XYgAAAAC3ja8VzZ6PT6BEwKtIB5G\u002BQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "17ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js deleted file mode 100644 index bb9b67edcaba..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.js +++ /dev/null @@ -1,33 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "98092662f37a72be0d363af54bb43e9f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'dOoXCp+y8EStiEbF5jtaJg.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '27ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0xkUWYgAAAACmHGDtmDgdR7t0ilJsSO6MUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:41 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json new file mode 100644 index 000000000000..88274185af2a --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -0,0 +1,41 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:03 GMT", + "MS-CV": "DOg9h6BVrkePvp9cqU6Dzw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0FO4XYgAAAACE\u002BGTVawoIRbvhXuHvp\u002BWCQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "83ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js deleted file mode 100644 index 2e76f1e18bab..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ /dev/null @@ -1,33 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7b68286f78f9d89818bad78659b704c4"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities', {"createTokenWithScopes":["chat","voip"]}) - .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:44.4616372+00:00"}}, [ - 'Content-Length', - '927', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'lHSNqKHAiEy/JwEqMci7fA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '202ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0yEUWYgAAAAAOMEPP99ROSoX11w/bkP9XUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:43 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json new file mode 100644 index 000000000000..4a5294b56311 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -0,0 +1,50 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:04 GMT", + "MS-CV": "Jc5d0qcnGESgQX3j3Z5SKw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Fe4XYgAAAABjgu0UOG4fT4RVmkM70zb0Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "221ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:44:05.2471876\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js deleted file mode 100644 index 72a7f975a212..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.js +++ /dev/null @@ -1,33 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "63bcccdf80ee361af3ac1d54e40a2b37"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities', {"createTokenWithScopes":["voip"]}) - .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:43.0214911+00:00"}}, [ - 'Content-Length', - '920', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - '8Q8E/pE/3EOzIR9DjAe6/Q.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '42ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0xkUWYgAAAACkowfJRsEuQ4kNYZIrgPL+UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:42 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json new file mode 100644 index 000000000000..19d6d2ce3e5d --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -0,0 +1,49 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "34", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + }, + "RequestBody": { + "createTokenWithScopes": [ + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:04 GMT", + "MS-CV": "KktaaW79rk23CVlSTij34w.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0FO4XYgAAAABmpC2WEbHPQ6DymgFr81FpQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "219ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:44:04.3904901\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js deleted file mode 100644 index 6a27c6c99724..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.js +++ /dev/null @@ -1,57 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c43ca28e535afc7fa59c4926d1c1d188"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'xCTRCXY0WEG2Q0zBNLn1gQ.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '26ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0yUUWYgAAAADFnWwot4h5QaakdZOQZJ93UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:44 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .delete('/identities/sanitized') - .query(true) - .reply(204, "", [ - 'Request-Context', - 'appId=', - 'MS-CV', - '/uUdOr5QF0aR1CwWwOVmZg.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '149ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0yUUWYgAAAAAmF7LGsCz+QKCd8MwJ5ckEUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:45 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json new file mode 100644 index 000000000000..efca6979d665 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -0,0 +1,69 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:05 GMT", + "MS-CV": "n5dCZYzUs0qV/jALX8s/eA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Fe4XYgAAAABuRjBIoC3vT7Wg6HVXOoMsQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "91ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:44:05 GMT", + "MS-CV": "/hTVUU57OEie6BNzImU92A.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Fe4XYgAAAAD\u002B8n9g1WsoTrPrBtZj3yZAQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "205ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js deleted file mode 100644 index 5f9bc8895b77..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ /dev/null @@ -1,61 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "68393c8e48c01060a84fe889ce440464"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'hlC1TOvRIEqj5ieM/fcENw.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '87ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0x0UWYgAAAAAFM8a2rX6STpAHQC1NnxmhUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) - .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:44.0636775+00:00"}, [ - 'Content-Length', - '811', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - '1V3SngCInkiQpZI+GR7wlQ.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '91ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0x0UWYgAAAAAZwkFYorYxTZh2Mw03juv4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:43 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json new file mode 100644 index 000000000000..3a44e0615666 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -0,0 +1,81 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:04 GMT", + "MS-CV": "DcFersyjO0mJ8HFoW0/knw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0FO4XYgAAAABD\u002BontgqUHQLcaQC\u002B72o\u002BBQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "86ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:04 GMT", + "MS-CV": "m4mJtmPsDkipXn9Cq3OeHA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0FO4XYgAAAAAf\u002B8Yn\u002BCs6TJ8M4j36jye0Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "154ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:44:04.987961\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js deleted file mode 100644 index 78921089ac7e..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ /dev/null @@ -1,61 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1207564db272a586026ace7fa4fb0f37"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - '5WaOnQHfe0yxaxE3TpVE4A.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '77ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0x0UWYgAAAAD2fMlT9P6lQo4+LIaIaFm4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:42 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) - .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:43.5047719+00:00"}, [ - 'Content-Length', - '804', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'CbPFkOZhXEOdpvP3FoB6rw.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '37ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0x0UWYgAAAABNIe9BXS/bSqPwGzpzCLmjUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:42 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json new file mode 100644 index 000000000000..4ab90cfeabe4 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -0,0 +1,80 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:04 GMT", + "MS-CV": "bai1SDsU4kuv2t1ronPVaA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0FO4XYgAAAAAEMrf9T8hbQpSwuF96XbMSQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "96ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + }, + "RequestBody": { + "scopes": [ + "chat" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:04 GMT", + "MS-CV": "9w\u002BYoOuWfU21T7rzzHo3yw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0FO4XYgAAAAAwlEg4NDpOSpj4PTjdNErLQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "153ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:44:04.6939506\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js deleted file mode 100644 index c8e95b21f2ad..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.js +++ /dev/null @@ -1,57 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b6315c3102987354fe49806f064f6b1b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities', {"createTokenWithScopes":["chat","voip"]}) - .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:44.70297+00:00"}}, [ - 'Content-Length', - '925', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'wwAzSMQLXU6xa8ZGUKtETg.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '50ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0yEUWYgAAAABPp/z3eI/oSb+Jd9hIwmwmUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:43 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:revokeAccessTokens') - .query(true) - .reply(204, "", [ - 'Request-Context', - 'appId=', - 'MS-CV', - 'SYpSWMRBLk2+xlaAcQm42Q.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '646ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0yEUWYgAAAACgEY/xULq/TbpZZZEpUFbPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:44 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json new file mode 100644 index 000000000000..06bd38d0150c --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -0,0 +1,79 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:05 GMT", + "MS-CV": "rAktf9B3zUmLxSbwHFivug.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Fe4XYgAAAACNZnhXWqpnSb\u002BHK\u002B7EDJRjQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "291ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:44:05.5674802\u002B00:00" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:44:05 GMT", + "MS-CV": "HjvOXhjGWUeFdz9ZdH98wA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Fe4XYgAAAAAKGgAOTiW8SZjaZeQ/81eKQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "217ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js deleted file mode 100644 index 0c6ec3c61ac0..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.js +++ /dev/null @@ -1,139 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "98092662f37a72be0d363af54bb43e9f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', - 'Set-Cookie', - 'fpc=ApEKOhSR609MjjTqKm2357U; expires=Fri, 25-Mar-2022 14:33:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNRcvG7mrsBULf2BlsC6xPN-752bn8yD8VTVcVGSjAaTzpdrLtrT7kuYGdwU8VjHDcOWOrmCFtG20D64S1kEhbwSvKNj5bOrH0h_XmqjFPTEHNMMm9IDB_rgSWaeI033hjrRwJinfjPCy2K64NIZuf_ZCAF9eDl-Q_pVF5aNkCsEgAA; 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, 23 Feb 2022 14:33:32 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=Ai5ZzztiLghElHsdg1qslT8; expires=Fri, 25-Mar-2022 14:33:32 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevroWTTTWyHCO2I-nyuXt9EX0i1QRbMW-Hm2kpuuv9xQuy_r3tX0Hv2b0RqzNqEzaRk83N6RBXMAp6rAX4ZvAjQwz0pRWdUXr7ALjeI3V5ztGFSEYxBoaHwBt5DyNhDlka3UApyOx7Ci4GNhLNPtUHcGyr2Y4Lb_IAwBhNhAsDovcsgAA; 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, 23 Feb 2022 14:33:32 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=ArghIDt2eg1Duly8Qr5rxJMo7iuqAQAAALs8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:32 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, 23 Feb 2022 14:33:32 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'yFWZDU4caEynfuirnLNmhg.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '213ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0vUUWYgAAAAA2y6GXfEgMQZjizFFGmDSMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:33 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json new file mode 100644 index 000000000000..4250736878c3 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -0,0 +1,39 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:43:56 GMT", + "MS-CV": "zIsU/CTIKk\u002BZRxazOlrfxA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0DO4XYgAAAAAvPjZ5vNP7Tq1ZCN6anYzYQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "380ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js deleted file mode 100644 index 63be7b96ea4d..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.js +++ /dev/null @@ -1,139 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "7b68286f78f9d89818bad78659b704c4"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', - 'Set-Cookie', - 'fpc=AqLBcfA3gFJPvQmokyrTQWk; expires=Fri, 25-Mar-2022 14:33:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrsUB635X6EZjj-r3c3mfd0i_1A7zL3anE58XgsjgY4e_6eVewpHN-xYHxX_YE5AoNoX6YHrnTR4jTl17aXDS-96-HJFasN-4OIkZl2SzZPgZGQ4gnq0Qq7xWIKq2tv_oEl_MpV6iPY4CMrz5JFUGPVUGFH3mBTpwrp3ZYVZw-THAgAA; 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, 23 Feb 2022 14:33:36 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AragOy7hKohNqLh6B593N5g; expires=Fri, 25-Mar-2022 14:33:36 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3-ZucddCQOuHR1BjMKNnUfBx8q5ol7boHhyUAIzKG3oidxshtI9rBWSgdw112eHsSnD1DTK1RyoV2AOmg4-CYwtRutovpQLI62HzBxKfYiv8GuT-I7GJl6PcrMhwtDk9MVlk1Lm0c6VF_27Ic0chLBhCG5RiPE7qD_XN2D4Kv2IgAA; 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, 23 Feb 2022 14:33:36 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aj0bG-stvRlNuuI5_vl9sFY; expires=Fri, 25-Mar-2022 14:33:36 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, 23 Feb 2022 14:33:36 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities', {"createTokenWithScopes":["chat","voip"]}) - .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:37.1077119+00:00"}}, [ - 'Content-Length', - '927', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - '1SGyQ3N6sEK18X4oEHffEw.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '42ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0wEUWYgAAAAAgj/4uaWzaRLPzB6j13yuqUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:36 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json new file mode 100644 index 000000000000..266f842891aa --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -0,0 +1,48 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:43:59 GMT", + "MS-CV": "35q3Ta0NX0yFb6ZcJZfTfA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0D\u002B4XYgAAAAAiVo097b1OSaSZNZ0YSzCYQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "220ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:44:00.0941236\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js deleted file mode 100644 index 4929c9ddf0c0..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.js +++ /dev/null @@ -1,139 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "63bcccdf80ee361af3ac1d54e40a2b37"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=Au-5ETpxtcZBpt-K2zB5DuQ; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvcjGjHgigXMreTsa9x79kBX9ZkyMeMDzKGUx4xgHMEqFuVBD6p90FuHpQXP0c5Y7FLwuhnSGDF1jMCCSX5CSJ9tT8IHDCEjGLbOlj9E8MZuIQBhPeK2CH09MGqtNLBv-ytFGXfT7uGAd559onHsH9gBwsLmXF3NHI-Fg0FrSy44gAA; 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, 23 Feb 2022 14:33:33 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsHmoh_JHolBiqOdPplMeiE; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6m-nMKD7OkVRKvgd8renLeenGRhNmG6q80CHra5qtWe8azjxWHxE5QVBaKZFGLdSSSRSiv7HBNbuzYMC6mE5vx0ri25xCBEYxsJ_kV7nAdAzAVd4h2MiRnzRCK0aBQx6wqgyAyVGldYi4AZlC6UyUIPhKo1bgPdOg9PqHKrDp6wgAA; 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, 23 Feb 2022 14:33:33 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AoIx830yuKFAhHqY0yOHouYo7iuqAQAAAL08qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:33:34 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities', {"createTokenWithScopes":["voip"]}) - .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:34.6272036+00:00"}}, [ - 'Content-Length', - '920', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'ERy8rPB8YU2tKKzHC4BGmw.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '38ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0vkUWYgAAAADSvhWK420TR7yCO0qDzR0KUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:33 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json new file mode 100644 index 000000000000..51a3c05c2735 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -0,0 +1,47 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "34", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "createTokenWithScopes": [ + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:43:57 GMT", + "MS-CV": "RPldcCA7PUC3XBGiL5zyIQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0De4XYgAAAACpprMbCKJAQKpDYtBBUosfQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "273ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:43:57.7405546\u002B00:00" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js deleted file mode 100644 index 12f8f0bd7f0a..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.js +++ /dev/null @@ -1,163 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "c43ca28e535afc7fa59c4926d1c1d188"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=Anij9dcTfVxFgIclahPwm3A; expires=Fri, 25-Mar-2022 14:33:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3qa6ceqRR-EgemAKgATdekn0Vaq_kSMn_PHMA8H031xUO1GMW7GnHhHmDqWfJUZXM69pcTf6A-75aZB45HI_Vfe5htoMUCq4FnHXwX0KnTL_6YyUJ4a0jybsZzAglL5LkSpBrbp6tmakKfUBzxuScVAQEBtMQlAl_efd6LD903wgAA; 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, 23 Feb 2022 14:33:38 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AosNaeq0qJBGqyos8d0dHyw; expires=Fri, 25-Mar-2022 14:33:38 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr5isVMPIzi9t-tc5WUkHqWKGC_zEOZvp-w38ih3RMSTsaj7QpxHvhu-5xM6NF5ijajq6rPss14YrumvzjE5s_Cab7BhOK1Zlk8nq-zSSgD1RDSCvKe8UH1kN_oj-ftcKL7d6RoK0jW63kUahA-hyck-XgHchmr4KL0lRDRt2z6QogAA; 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, 23 Feb 2022 14:33:38 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Av7roWyaxoFHlk1PUq6kdzk; expires=Fri, 25-Mar-2022 14:33:38 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, 23 Feb 2022 14:33:38 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'n6xcuewMc0Sjb3sS5RnWog.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '43ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0w0UWYgAAAACxJBPcQLyNR7EihOOHLU9BUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:38 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .delete('/identities/sanitized') - .query(true) - .reply(204, "", [ - 'Request-Context', - 'appId=', - 'MS-CV', - '/w6jLD00ikKb+UZ6O9iFPw.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '141ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0w0UWYgAAAABEAIItxYzIQbiWfzc8NU/dUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:38 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json new file mode 100644 index 000000000000..6b6d5262a882 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -0,0 +1,65 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:01 GMT", + "MS-CV": "39DM6R7ya0G379qzRPlTgA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Ee4XYgAAAABVbgwk9Zg1TYFQ6a\u002BenXHrQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "92ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:44:01 GMT", + "MS-CV": "Huch5uo4rEagav6QlZyQNA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Ee4XYgAAAAAiQ564WuvmTaCZHONuWzRdQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "300ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js deleted file mode 100644 index 6117e9157fa7..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.js +++ /dev/null @@ -1,167 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "68393c8e48c01060a84fe889ce440464"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', - 'Set-Cookie', - 'fpc=At1cCUs6I2tJidcdgTujEb0; expires=Fri, 25-Mar-2022 14:33:35 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwDUlQuXkMpkhsf-Ombzis-Q5MV2xOCQ_CUKpMSHWxuUNmoEbTOaQXhd2ac3BeVU1oB8hb4eQbeEGxA-wa8UXORHEE-0x2xIm2TuoGvcNRM3oiHjP7U6nSTxRyD7B8o94Sb3yRhe2c2jos7KwzqdkGWuqlveHvbfpAtRimvE6CVogAA; 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, 23 Feb 2022 14:33:35 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsMDpFKZ5a5Jld9EKvWlEIc; expires=Fri, 25-Mar-2022 14:33:35 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrvm6tvA-dYVE6Q8jlnZuFiCCqMXpqh_CaOEtJ2Hs5pp9q5Kk4aOEAnjy7nSJOsIcy8QIP3UsRcxXYxuT6ofQ3y-DTs5DMWajyyJlB_7Ypd0TuyicIp2hfIHZy7tDMmhUaK35V-pNX6bXO4chpJ0sCz63QUfd5iYT2vwMzq-cPXqYgAA; 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, 23 Feb 2022 14:33:35 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Armzkaix2KxGjEGNBSw71JMo7iuqAQAAAL88qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:35 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, 23 Feb 2022 14:33:35 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'phIrp/MdDECJRfFoewz+Ig.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '20ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0wEUWYgAAAACEVWNbBO2rTpXymbUgwyl7UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:35 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) - .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:36.4565061+00:00"}, [ - 'Content-Length', - '811', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'lp5Xc9ZyOkuDOOdSF1VyIA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '166ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0wEUWYgAAAAD85v9UairRQp7vtm+k4/bRUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:35 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json new file mode 100644 index 000000000000..4d630fa1398f --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -0,0 +1,77 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:43:58 GMT", + "MS-CV": "zWsXbVv/J0KFtM3ZFejRKw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0D\u002B4XYgAAAAClM/CnzYZqRbH\u002BE9CuzYbBQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "80ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:43:58 GMT", + "MS-CV": "T46keophK0m0uYTA1ro0LA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0D\u002B4XYgAAAAC7vn\u002BzbcvyQpvPdyyCA4JPQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "152ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:43:59.2760696\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js deleted file mode 100644 index 7ea2997602a8..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.js +++ /dev/null @@ -1,167 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1207564db272a586026ace7fa4fb0f37"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', - 'Set-Cookie', - 'fpc=AsWbNyJNFMpEsaq2Q-vKCIs; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrhaE_2q7Hj5cb5JhtH_E4NTwoPW3e5UncLX0gLEgRSRgrDkWB5nPDSL4cEM4cLcbA092Uy-pmOIztMdASx2AVUeu25nBEGzRR2BOyJvStzBBysy8riLwuW0DhztVMd8d2iHga-EijnpbZ4rj7i4s4Ny7WnyouMt3AHQ-l1qhM1D4gAA; 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, 23 Feb 2022 14:33:34 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=Auot1lbx78ZJnN6iVqezlD8; expires=Fri, 25-Mar-2022 14:33:34 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1Pr27xz7m8VcI1vmyyojB5QefmTc-Me4hbF59ew81qGmie5zrK4obA4_q-9a8yUn0lbSEK3l6bRhQ-Tr_2KRalksXjk-LgIIzw9imowRz3RU9b7-2bIbfl2vYQ6xCpbNOnFXU2IlMwjXsmhq1L8GxJDbd8R590UmXBrLbeTYMoAgAA; 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, 23 Feb 2022 14:33:34 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AtWfccrCd8lOjZRXPyHJAvco7iuqAQAAAL48qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:35 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, 23 Feb 2022 14:33:34 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'QKwwJSBevUyvgC8nAZqxuQ.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '21ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0v0UWYgAAAAADTrAUdAOAS6Dn6/kGnsBvUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:34 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat"]}) - .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-24T14:33:35.4465924+00:00"}, [ - 'Content-Length', - '804', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'nYSYw2aDnkePU9A/EuYNDA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '28ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0v0UWYgAAAAAEtCO6Bo2BRadle3aFW2r/UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:34 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json new file mode 100644 index 000000000000..340a72b5a7dd --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -0,0 +1,76 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:43:57 GMT", + "MS-CV": "rixjxW64I0G/6FMwa9VT4A.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Du4XYgAAAAAs8WOB8NeSTYhXvznd3oAmQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "81ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "scopes": [ + "chat" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:43:58 GMT", + "MS-CV": "G8gTLVpEsEam3gunUiUKEw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Du4XYgAAAADRnizYoG6PTKQHKt/ekdmvQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "150ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:43:58.4761906\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js deleted file mode 100644 index 043522f00164..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.js +++ /dev/null @@ -1,163 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "b6315c3102987354fe49806f064f6b1b"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=AloANkBTDPFBvwpe9I9MC0g; expires=Fri, 25-Mar-2022 14:33:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpJMDzg21tmYHLkT-MukfsX_YDDQSZhOzuv2W7Wu2YdzdeSVwYjWiO-4auAkmNiKVA76oavda3WehW3IOOSOAdr7AVOONQFklxv8Yh_nP9YhzKWnpFUYnpwACOSuEd0ojc9glJgGl-vSfDu4p9lAY4yqgJH_pRqk3nFz3Hrvhlx8gAA; 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, 23 Feb 2022 14:33:36 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AsElbyhyQJlHi2yP7oGXXnA; expires=Fri, 25-Mar-2022 14:33:37 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrcalc7ZbpL5UFavLhYyPTwJIvPiCx5r9qRGUeGTZl5kjpcav2slqoyyOLJG25cBzXd0n_I0s06y_UTUYWBkxppKb2lhLBxGC42v9S0JiWp5p1sVHlJtZdxx3P8GupvlDjuz3sWk8Ku0U4iWlQdCZLxJxcbDdo2tQXvYCEDJZAPMogAA; 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, 23 Feb 2022 14:33:36 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AqU6d9qphiZNpfQ-xxWieC0o7iuqAQAAAMA8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:33:37 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities', {"createTokenWithScopes":["chat","voip"]}) - .query(true) - .reply(201, {"identity":{"id":"sanitized"},"accessToken":{"token":"sanitized","expiresOn":"2022-02-24T14:33:37.7578267+00:00"}}, [ - 'Content-Length', - '927', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'MMZDGA5r6UCWATlTEDR5ug.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '50ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0wUUWYgAAAAC+8Wy+pXw5TqWMy+xS6L2lUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:36 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:revokeAccessTokens') - .query(true) - .reply(204, "", [ - 'Request-Context', - 'appId=', - 'MS-CV', - 'npSVsArz8UKPWmKWyj8A7g.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '593ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0wUUWYgAAAACIXBdS9QvdRJo1mR4JE+/2UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:37 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json new file mode 100644 index 000000000000..5d407fbf5f40 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -0,0 +1,75 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "41", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "createTokenWithScopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "115", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:00 GMT", + "MS-CV": "N2o\u002BE5LZDkiu0VtqzDglZA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0EO4XYgAAAADga07ajA8ZQY7HaouKMtfDQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "280ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + }, + "accessToken": { + "token": "sanitized", + "expiresOn": "2022-02-25T20:44:00.9013985\u002B00:00" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Date": "Thu, 24 Feb 2022 20:44:00 GMT", + "MS-CV": "bioVxiCa60CXMpFecZYMcA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0EO4XYgAAAACXf7tNb2Q/TZCu\u002BrPjJlooQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "253ms" + }, + "ResponseBody": null + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js deleted file mode 100644 index 3e401855ae54..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ /dev/null @@ -1,139 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "2e1ffc8ba426d43087d961bc22a8b47f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=Am2Unaa1UbBGsrYkqtNuj9c; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrn-Kq6lIrmwwHNhbeqHeUvDDzyvMljtj1NWqb4ebFRbPI3Fx1ufSOu0MIPn2OV0s4r5_E24H8MkMMPWdUfVGUZvec-yWFJKRm97Eyg8b-32UCjH-OOg86SkeS3PhJHIvd58KylPK6PeBRrbxlwNGUblnNnttJJ7g-n1B8MRZSe0QgAA; 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, 23 Feb 2022 14:33:41 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AkS9BS0u8UFPg-LnD_yIYVw; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMweX7Bz-a9NyK8Hf0y3XKWWrUMuLgB7BiikSTzvMpQq8kvvSeiHmqNRPCSUpJ5vS3r0NF42Ro4AdnarWTmgO5V8f-Eg5aULQa1UCMXj85jpRCE5dz88LkWMKUpZYAd8hgs8mF4TiLqwUaROc1ZyO4GzadP8SpX5F_GLPl4LWYQ8gAA; 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, 23 Feb 2022 14:33:41 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ardy3tKRfaZFjfCiQrd99tM; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:33:41 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .delete('/identities/sanitized') - .query(true) - .reply(401, {"error":{"code":"IdentityNotOwned","message":"Provided identity doesn't belong to the resource."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'j6iQSA3+ZUuNtWDJNQKGFQ.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '243ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0xkUWYgAAAAAXpTsoHnDTSItgys7cA8NmUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:41 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json new file mode 100644 index 000000000000..6ed8ae3f4cce --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -0,0 +1,38 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:03 GMT", + "MS-CV": "VDViAzqEG0KI0tj5QFOvkg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0FO4XYgAAAACSEZr70DKQR4zA0bcOc7NLQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "12ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js deleted file mode 100644 index f07fe3ccefcf..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ /dev/null @@ -1,139 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d21de0279490ba9ac47f977f9c015c11"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=AuVA6QNhHfZEnXqTpMua25k; expires=Fri, 25-Mar-2022 14:33:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4xLDR_WoiEEIkJ2S1Bi0WR4LucU_MvimLLb1TmDevpP8DgglR3_R1bhCMDETXs9otqZiKHLmFkoLSsu2XK3uqNfjG1ExO5oV-TSsgYtjIBOG20nHA_kcSY7A58dxCNmo2_LViQYrmig9fEaDKaWcRJ3ut-3W43tixO4q6FQvKVsgAA; 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, 23 Feb 2022 14:33:40 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AtRL6EYQaH1BqQP6m44e3mA; expires=Fri, 25-Mar-2022 14:33:40 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKMF6-Nn6FGAoYh1K6435c4DszVv5b4OoyxJS2NzOP8R2t3qHR3vQYk-iMd4Fu9BwMphLH0ELdWucm7s597txBpzR4cbOeJj1MnxhCUf0CGdTG-QkpEBUZcsCgTDABV6Gvl9EdCYEldLwLkYm5_tg7aeTBXnubySlfIc-ZInwQOwgAA; 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, 23 Feb 2022 14:33:40 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AtGCLeaxVw9ErsYkS_UsZLoo7iuqAQAAAMM8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:33:40 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) - .query(true) - .reply(401, {"error":{"code":"IdentityNotOwned","message":"Provided identity doesn't belong to the resource."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'W2EHkp/xZECCisl/nEDJ3w.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '122ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0xEUWYgAAAACBToMDiknYT6TwQ6W3TNpGUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:40 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json new file mode 100644 index 000000000000..ec08303ef7e3 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -0,0 +1,45 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:02 GMT", + "MS-CV": "3nT81vL5nkO9O6w0gDU/uQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0E\u002B4XYgAAAAB/ydbAE5oCQZUOnbtwP2QYQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "12ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js deleted file mode 100644 index 4a95ffb4948e..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ /dev/null @@ -1,167 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "46e08f51f4817e0c122d262206cbc361"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=Am3kcVN5eT5Kh-p5bfSDEF0; expires=Fri, 25-Mar-2022 14:33:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrE-jnP3TxEm5vspYThfMqGINsdcxJ1flk8YEj_k250jYgi8GPcPgjqOLaSp08vGAIWkJFgptrtbO5VK5WD5Lquyr9UKnr2vDcA98Ra72sGNeEmIICJYmbtX2u40N273f0VYCCqPZT_useu8PvxIBXPT0o7i15JJjj59bpJC4HE_wgAA; 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, 23 Feb 2022 14:33:39 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AnMg4UXG4hZEut8c2Nlmk88; expires=Fri, 25-Mar-2022 14:33:39 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrkhg0hYXGluuklFhQSMaN83nmCLR4Bfv8CAMeS9j_H0Pzx768L4LhLVZUQwQItNWSJ0nDzqvYJOFRCUkyiS0e5dI4aOvwntYPMFsvxlcNQ5LZdjqz2ge_SJHPpRF1mokmU1OcUll7LdKUzvrmyQR7MBlJMbZDfwfx4QnO0a-28okgAA; 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, 23 Feb 2022 14:33:39 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AgJa_aSM4CNCtTSyjSLE5XI; expires=Fri, 25-Mar-2022 14:33:39 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, 23 Feb 2022 14:33:39 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'qC3A1KLEqEiLI1dGG4XKOA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '112ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0w0UWYgAAAAB0z/vU+frgTK/t++FnTDabUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:39 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":[]}) - .query(true) - .reply(400, {"error":{"code":"ValidationError","message":"Invalid scopes - Scopes field is required.","target":"scopes"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - '3h4e7NopZ0KKRfAfs2v9UA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '19ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0xEUWYgAAAACUZGCM5yg8SojF/XEkwV6XUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:39 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json new file mode 100644 index 000000000000..bca0759eeea3 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -0,0 +1,77 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:02 GMT", + "MS-CV": "Jlb0BDXY5kydJ2fq9z5bbA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Eu4XYgAAAACRvlgINhJxRItQZDcCLS\u002BHQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "84ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "13", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "scopes": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:02 GMT", + "MS-CV": "Y9qxpT96mUqIK\u002BvjayanhA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0Eu4XYgAAAACVvU8ChfyASLYTmLM/iGFuQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "11ms" + }, + "ResponseBody": { + "error": { + "code": "ValidationError", + "message": "Invalid scopes - Scopes field is required.", + "target": "scopes" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js deleted file mode 100644 index c7e076500376..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ /dev/null @@ -1,139 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1deb352058fce6a67642ca47cdba883f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=AtEGqa1Oz_VDlBhoJ5ahvnU; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrGcEbguMfYdIkaMeM_LZTFtigQ6Hl1oImZO35xqC554HVi2jvSe0S_NPBiHT21w5AohnuAyqTncH9acHfu0btKsHDS2B6KQV6yzCI0Ezk-AiXIz1QPgjX49W4QOL8b7dzoPSQQnyplidYXvIDMRMEfmUJWMoQUQO6a9ThhBqWzmEgAA; 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, 23 Feb 2022 14:33:40 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Aqi6BFoFaC9Jm8AAHxjAKyE; expires=Fri, 25-Mar-2022 14:33:41 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-YoJOXcV3t_I5Sk1yO5O2ixQHkfV6ZfJ0ky1_USz-9Vk8pfleOfW98M6joH4FNf5mNIY82Q5krebMfs7AtOqoc1aiTs_teu9mZG3jPUC4vRWLDPYnj4qW2BMprxQ-L-Hn9HbW-WqeMSu43pDGlsOJJm2zwONtw3e-qc9uwaYHNEgAA; 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, 23 Feb 2022 14:33:40 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - EUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AiIxzpdVmiFLqYKimaRBtsAo7iuqAQAAAMU8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33:41 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, 23 Feb 2022 14:33:41 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:revokeAccessTokens') - .query(true) - .reply(401, {"error":{"code":"IdentityNotOwned","message":"Provided identity doesn't belong to the resource."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'Edlo9bEddEanL7PumxIsPg.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '107ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0xUUWYgAAAABRrfCglzHVQ6L6WdCQ5CzdUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:40 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json new file mode 100644 index 000000000000..7330782b6b8a --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -0,0 +1,39 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:03 GMT", + "MS-CV": "o\u002Bp/SMZkxUu86JlopCRk2g.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0E\u002B4XYgAAAABWRzW45JJzRLUNBYeuBPXoQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "13ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js deleted file mode 100644 index b41bd96615ff..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.js +++ /dev/null @@ -1,33 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "2e1ffc8ba426d43087d961bc22a8b47f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .delete('/identities/sanitized') - .query(true) - .reply(401, {"error":{"code":"IdentityNotOwned","message":"Provided identity doesn't belong to the resource."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'nuDla/8sSkmKaR76lJKsXw.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '21ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0y0UWYgAAAABc87TC3X8hT61HYnACGcwwUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:46 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json new file mode 100644 index 000000000000..85b684d006ac --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -0,0 +1,40 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:06 GMT", + "MS-CV": "47QkCXAqL0yaokBNWASPPQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0Fu4XYgAAAACvPKEMH9hJTJAErDS\u002Bp/Y4Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "17ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js deleted file mode 100644 index 51d04d9b0828..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.js +++ /dev/null @@ -1,33 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "d21de0279490ba9ac47f977f9c015c11"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":["chat","voip"]}) - .query(true) - .reply(401, {"error":{"code":"IdentityNotOwned","message":"Provided identity doesn't belong to the resource."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'mfjXk2v+VkmZQqR7E2acww.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '22ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0ykUWYgAAAABNflKenIysSpc5AGTq+96LUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:45 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json new file mode 100644 index 000000000000..e613e6a8e60c --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -0,0 +1,47 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "26", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + }, + "RequestBody": { + "scopes": [ + "chat", + "voip" + ] + }, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:06 GMT", + "MS-CV": "U//NFyY8tE\u002BAF6dZwGMRCw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0Fu4XYgAAAACGReSv9AXcTbi4nlFkIwN5Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "16ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js deleted file mode 100644 index 9e37928c1332..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.js +++ /dev/null @@ -1,61 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "46e08f51f4817e0c122d262206cbc361"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities') - .query(true) - .reply(201, {"identity":{"id":"sanitized"}}, [ - 'Content-Length', - '101', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'r3WBF16xok+54+98l+9I9Q.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '28ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0ykUWYgAAAABGrcOtTAdwR69vw1eRPvR5UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:45 GMT' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:issueAccessToken', {"scopes":[]}) - .query(true) - .reply(400, {"error":{"code":"ValidationError","message":"Invalid scopes - Scopes field is required.","target":"scopes"}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'grxKMWLW6Eqt1pxozpnddA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '21ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0ykUWYgAAAAAs35Ev8MkcQpdxApGc15mFUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:45 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json new file mode 100644 index 000000000000..9700c0392637 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -0,0 +1,81 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + }, + "RequestBody": null, + "StatusCode": 201, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Length": "31", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 24 Feb 2022 20:44:05 GMT", + "MS-CV": "11eYntUtfUWdT8sRbq49qw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0Fu4XYgAAAAC7g9WuusBxRaT6csfURr1qQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "85ms" + }, + "ResponseBody": { + "identity": { + "id": "sanitized" + } + } + }, + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "13", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + }, + "RequestBody": { + "scopes": [] + }, + "StatusCode": 400, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:05 GMT", + "MS-CV": "OryDVxbpjkeQYgOtpI/jyQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0Fu4XYgAAAADX2RBm6y9wSYq6itEjSG07Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "16ms" + }, + "ResponseBody": { + "error": { + "code": "ValidationError", + "message": "Invalid scopes - Scopes field is required.", + "target": "scopes" + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js deleted file mode 100644 index feed1a56b98b..000000000000 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.js +++ /dev/null @@ -1,33 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "1deb352058fce6a67642ca47cdba883f"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/identities/sanitized/:revokeAccessTokens') - .query(true) - .reply(401, {"error":{"code":"IdentityNotOwned","message":"Provided identity doesn't belong to the resource."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - '9pYCq1OzHkqJHz8VtHE6tw.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01', - 'X-Processing-Time', - '27ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0ykUWYgAAAACxxfZ7C9ekS7vIhEtzvQIYUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:46 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json new file mode 100644 index 000000000000..b92fb3d1c3c8 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -0,0 +1,41 @@ +{ + "Entries": [ + { + "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", + "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + }, + "RequestBody": null, + "StatusCode": 401, + "ResponseHeaders": { + "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", + "Content-Type": "application/json", + "Date": "Thu, 24 Feb 2022 20:44:06 GMT", + "MS-CV": "pdEEYz0y5E23dnyKK32gHA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0Fu4XYgAAAABcJxb4yW72QYVrFVGS8\u002BU8Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "15ms" + }, + "ResponseBody": { + "error": { + "code": "IdentityNotOwned", + "message": "Provided identity doesn\u0027t belong to the resource." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js deleted file mode 100644 index b84970b761b4..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ /dev/null @@ -1,139 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e34b7a3168d3718ee63cf7d04caaed57"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR2 ProdSlices', - 'Set-Cookie', - 'fpc=AlNvABsTzBZJiTq0asEt6I0; expires=Fri, 25-Mar-2022 14:33:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4uqXjgBT_Xt3gx7-ciO5oLd3Vdrgm55xyV2Y-lJTww9EQDqxbh-RPsULFNSmLrjJRyboiyKKjc8rIqB_GEdsu607CAOOhuYyeGr2C5UcncafmvAN4aQYZkJryB5DGF_3bn8QgF0-k6w4EOROnLWKz4_GocdgvYQVcS1fw0BBpW4gAA; 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, 23 Feb 2022 14:33:50 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/kerberos","tenant_region_scope":"EU","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=AnZOXzzPgQ5HgXWzp3OyWxA; expires=Fri, 25-Mar-2022 14:33:51 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgdHSK6hIkAhwAtwk6rDKBsZKOQHdo4n1i9nYpsqW7WAnu7uzivCoSJ3UbMTBqvl7z6TCNt3-mQ7E7fMki5wO6QqRhP-gYtWhUCJjWSumNs5Lb6rIhM7QZQOIBXyxgZDgh3Ek9__Nf1DQXNc4PxvEpbA1tRqGaecv382QwqH04FwgAA; 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, 23 Feb 2022 14:33:50 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":3849,"ext_expires_in":3849,"access_token":"sanitized","refresh_token":"sanitized","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NEULR1 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Aq6xmQ-2ukVGssGbEo5h1SW4k9TnAQAAAM48qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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', - 'Wed, 23 Feb 2022 14:33:50 GMT', - 'Content-Length', - '4627' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:38:00.8340366+00:00"}, [ - 'Content-Length', - '818', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'ehpx/pG4m0mwLqW/Tk5g4Q.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', - 'X-Processing-Time', - '394ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0z0UWYgAAAABoGm48yEzyR7Hxo0F8CQvcUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:50 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js deleted file mode 100644 index 86cc45a6ed7c..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ /dev/null @@ -1,31 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "717a80a7fe666217ddc3af4511a23d24"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(401, {"error":{"code":"InvalidAccessToken","message":"Provided access token is not valid."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'YuD6nU8IOUmmQuO2MzvB2Q.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'X-Processing-Time', - '23ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0z0UWYgAAAAAME6U8JGelRY4iDdkUez/aUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:51 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js deleted file mode 100644 index 502aa8217be4..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ /dev/null @@ -1,31 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "89176238df03483b3c933fed336aade5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(401, {"error":{"code":"InvalidAccessToken","message":"Provided access token is not valid."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'CrH9bam1wk21i+lrUt0JHA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'X-Processing-Time', - '32ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '00EUWYgAAAAB/joPZtJIsRKCwT0zp47Q2UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:51 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js deleted file mode 100644 index f39cd4cb58af..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ /dev/null @@ -1,31 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "74651041d8bd51a04deddea2d0f12fd9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(401, {"error":{"code":"InvalidAccessToken","message":"Provided access token is not valid."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'k/Um/dojyESH2cM2nbVLmQ.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'X-Processing-Time', - '22ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '00EUWYgAAAABq9eUftExQRpch40a3aSXMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:51 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js deleted file mode 100644 index 1ba8798de7fe..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.js +++ /dev/null @@ -1,245 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "e34b7a3168d3718ee63cf7d04caaed57"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=AhT2rlYGGBRCkcRyWRtOLYY; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrbdy9tNsQud-kM6ponBmRdN2mE9DqgwyLz-bAlot7qGzE_Gx6cJI2979oTgwTit0LkkcvURrtqGJAbIVIjdOb1yPRlGZSgEUYNcpz8iStbMfIAeeYL9jBcZfeyGBmE3gUXBo0MSn_HfXabCu2sYuJjqVB2UQNw5VPiSd6z01BhuwgAA; 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, 23 Feb 2022 14:33:46 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/kerberos","tenant_region_scope":"EU","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', - 'Set-Cookie', - 'fpc=Ag5lNQA6HgpLkmDaEFO-buw; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPG3W5D4hx9dejfUD5Y42dijwJdHori9S7U4N3vJh47QVO0TiWxX0mJErSrRVzQ6yXe8GhO-9nsWqe7g91IDtXHNwbaLO78PK9QLwNsJ-XYbhz3LOMIDxl4cB3xBJrSsdDbz4EUdCak2cbylMyUUIE-XoqvjyBAXQM9jtlVEyg4IgAA; 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, 23 Feb 2022 14:33:46 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token', "client_id=00000000-0000-0000-0000-000000000000&username=MSALUsername&password=MSALPassword&scope=M365Scope%20openid%20profile%20offline_access&grant_type=password&client_info=1&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|371,0,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","scope":"https://auth.msft.communication.azure.com/Teams.ManageCalls https://auth.msft.communication.azure.com/VoIP M365Scope","expires_in":4263,"ext_expires_in":4263,"access_token":"sanitized","refresh_token":"sanitized","id_token":"sanitized","client_info":"eyJ1aWQiOiI4MWU3OGNhOC1hZGU1LTQ5OTgtOWMwNS0xZTE3Zjg1MGZjZmUiLCJ1dGlkIjoiYmVmM2ZkY2ItZGNjYi00MWE5LWFlNzktNjQ4ZjIyYTMyZDIyIn0"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ai3D8e16fHhHjEOTUz4kxuK4k9TnAQAAAMo8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:33:47 GMT', - 'Content-Length', - '4648' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=Aorgeri7CAxGsubIf2aNi_k; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7v0kl0o9aqRidN4p-RRCXU39wpAXlUcH_PslvKaQmOdJq6WpUQwLDBt4lzdwrTS89BdZQ3Uj-JQ5HnChDSMc2wZkQF7itYeLp9QLkWmrx1A_m3lQsLPqCPeCHfLBWfNCQaeCFw0yzAk4o6cIVI1v6Ffurn7nlgfRM2-VEohcZx4gAA; 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, 23 Feb 2022 14:33:47 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'Set-Cookie', - 'fpc=AiQsubTHQNpKtMnPB5g0FdI; expires=Fri, 25-Mar-2022 14:33:47 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraY1UbpRShX-txCV6tP_6hsFXwGx9wfFRyrG7AADTxzPgv3TfHdDNvloQwQi6hodh80fK9duRQ9l6DOAc5j_f2HsY5Auk1l3wpnShE78IUr7h_8s7D5hlO1NyqqKUoEgyUvb5dIg9aVdDK6j3Ixzj7SvoXeJNUI1obAmeAe3HZrkgAA; 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, 23 Feb 2022 14:33:47 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Ampctv9mT-BOoQebZv71jG0o7iuqAQAAAMs8qNkOAAAA; expires=Fri, 25-Mar-2022 14:33: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', - 'Wed, 23 Feb 2022 14:33:47 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(200, {"token":"sanitized","expiresOn":"2022-02-23T15:44:50.0105689+00:00"}, [ - 'Content-Length', - '818', - 'Content-Type', - 'application/json; charset=utf-8', - 'Request-Context', - 'appId=', - 'MS-CV', - 'qQOfRM+taEq4vr7YIUlG7Q.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'api-supported-versions', - '2021-03-31-preview1, 2021-10-31-preview, 2022-06-01', - 'X-Processing-Time', - '780ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0zEUWYgAAAADNzx1ahwaoTIJ2ovqqBg7CUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:48 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js deleted file mode 100644 index e4be885508e6..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.js +++ /dev/null @@ -1,137 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "717a80a7fe666217ddc3af4511a23d24"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR2 ProdSlices', - 'Set-Cookie', - 'fpc=Ak0ggLeIGCFOixMll5q4Y6E; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrUoKL7aWhFnvbflGgWdT-QPZVbE_-DTdQXqj2fY0kai1AU87a3uDn301wnDUZMoO12bx6Km3jxhpBtXJei1199oOgbBSw6dcbcNUoHZUIoqBan0dbHUZ5AXkeUlmTNCnk5lCN5C05hmd4_d7qZu9OX6IDdSRmDdQdPxXa1-W3dkgAA; 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, 23 Feb 2022 14:33:48 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=Ao_pT5bA04VInIflct56kpQ; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAgEcuGeAba_uS2xMbXph44OP7kZdEOsQEXOC2rf8bwk3EyNq7s8rtl5L2EIN12x-K522txs2nQ1pp8kOK6dchVcwUWwKWmdNGhk7NC3nT8kyr1qefgAPpE76_wYXEbeM0VxKZ2uxr9L5beVTUipDRdbKyATay0NDldS0R_reRDsgAA; 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, 23 Feb 2022 14:33:48 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - SCUS ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=Amta1776hQ5Hj69vUohzciI; expires=Fri, 25-Mar-2022 14:33: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, 23 Feb 2022 14:33:49 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(401, {"error":{"code":"InvalidAccessToken","message":"Provided access token is not valid."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - 'GyXyG7ED90GDS85CSzTdAA.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'X-Processing-Time', - '26ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0zUUWYgAAAADC/c+gF6OIRrS8buBGbWTMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:48 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js deleted file mode 100644 index 13e523797376..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.js +++ /dev/null @@ -1,137 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "89176238df03483b3c933fed336aade5"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=AuVsrV9KHr5NqoW_PojUAS8; expires=Fri, 25-Mar-2022 14:33:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrnYUHOns6zOYsYnCehP_MPfdDv2RQ2Qsm9s3_FzEdamBo63ri_tmiR66FysftQR4h4kA3ZFGe6I1Uu7DlxXgKA1HxbxkTwUmU95yDG--Cy6FMIJh2gTyHdFNgHOsCXTRc78mtK3syOV1qTeyhI1ZOda92ynjzgbOBOallWoacH7ggAA; 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, 23 Feb 2022 14:33:50 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - NCUS ProdSlices', - 'Set-Cookie', - 'fpc=AuXXL026C95Fk4CqXSHYY38; expires=Fri, 25-Mar-2022 14:33:50 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrXW-QEjOUkWwZwWARg7M-uk2j4GYVuWRSyliB33tvo_4uut6-aCmncUUH34H3BUnDQ_lRpGmBG_rtE7eYmnipPxdbWiOwBdntzhipi8gW9XCXuuxbiq1CfxkvVSHlA4_Ai_wLbbZ3IyKiRI1UxY9PhWURA_19nomSGJmGJ_iD-fggAA; 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, 23 Feb 2022 14:33:50 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AjkCkD3VpP5LiS60VXViAlg; expires=Fri, 25-Mar-2022 14:33:50 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, 23 Feb 2022 14:33:50 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(401, {"error":{"code":"InvalidAccessToken","message":"Provided access token is not valid."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - '4DcpoR5WwEuDpV/VXdjHdQ.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'X-Processing-Time', - '35ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0zkUWYgAAAAAv+NXT2X/nTpENqGPdlOVYUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:50 GMT' -]); diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js deleted file mode 100644 index 6d46a9397bad..000000000000 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.js +++ /dev/null @@ -1,137 +0,0 @@ -let nock = require('nock'); - -module.exports.hash = "74651041d8bd51a04deddea2d0f12fd9"; - -module.exports.testInfo = {"uniqueName":{},"newDate":{}} - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/common/discovery/instance') - .query(true) - .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/SomeTenantId/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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WEULR1 ProdSlices', - 'Set-Cookie', - 'fpc=AooKxfuUEkFDioPZdSPofXw; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevraLfcUfGjVI6U17w7m9t2JC2gdtGwTb3m1ZJ17q5mltuILchgH0uj-f5Am0KtKHaQLnvjb_7dc_MREMMJ8Sg20hpKItfgKAKey9uOfBFywj-8TpXKpbp1AQduvDHm4vdR_w1_4L1lqYw5mr11i3Lq9ew6uVVSHXAgxer7YRybMnkgAA; 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, 23 Feb 2022 14:33:49 GMT', - 'Content-Length', - '980' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .get('/SomeTenantId/v2.0/.well-known/openid-configuration') - .reply(200, {"token_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/SomeTenantId/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/SomeTenantId/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/SomeTenantId/kerberos","tenant_region_scope":"NA","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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'Set-Cookie', - 'fpc=AmK5-WsOU1FOnOvHpDUMzow; expires=Fri, 25-Mar-2022 14:33:49 GMT; path=/; secure; HttpOnly; SameSite=None', - 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMxnU2Hnix9HNZWgXI1JPGp7l5w34bBe750ITDI_U8peO4lsX_luhc14RdshDe7AUFQYW1_fRuTD5G1Yx6Rpo5fIE1m_U6zZ2u3r97wnwZPqk8l3hinA2-PwWAxsj5ejgvXgA1cnGjwmYIZ1ieTRmqaWZzGdqJ2HsnOTkVwW3XwEgAA; 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, 23 Feb 2022 14:33:49 GMT', - 'Content-Length', - '1753' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/SomeTenantId/oauth2/v2.0/token', "client_id=SomeClientId&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.5.0&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=00000000-0000-0000-0000-000000000000&client_secret=azure_client_secret&claims=%7B%22access_token%22%3A%7B%22xms_cc%22%3A%7B%22values%22%3A%5B%22cp1%22%5D%7D%7D%7D") - .reply(200, {"token_type":"Bearer","expires_in":86399,"ext_expires_in":86399,"access_token":"sanitized"}, [ - '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', - '00000000-0000-0000-0000-000000000000', - 'x-ms-ests-server', - '2.1.12470.11 - WUS2 ProdSlices', - 'x-ms-clitelem', - '1,0,0,,', - 'Set-Cookie', - 'fpc=AnCBK8SoFLRBnBxOYkPSUAs; expires=Fri, 25-Mar-2022 14:33:50 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, 23 Feb 2022 14:33:49 GMT', - 'Content-Length', - '1327' -]); - -nock('https://endpoint', {"encodedQueryParams":true}) - .post('/teamsUser/:exchangeAccessToken', {"token":"sanitized"}) - .query(true) - .reply(401, {"error":{"code":"InvalidAccessToken","message":"Provided access token is not valid."}}, [ - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json', - 'Request-Context', - 'appId=', - 'MS-CV', - '5HC1mNpMkk+85x7wNqcg+g.0', - 'Strict-Transport-Security', - 'max-age=2592000', - 'x-ms-client-request-id', - '00000000-0000-0000-0000-000000000000', - 'X-Processing-Time', - '19ms', - 'X-Cache', - 'CONFIG_NOCACHE', - 'X-Azure-Ref', - '0zkUWYgAAAAB3wLsgJxgTSarytodhY8q1UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=', - 'Date', - 'Wed, 23 Feb 2022 14:33:49 GMT' -]); diff --git a/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts b/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts index cfa3c42eda93..0ff2d3e13907 100644 --- a/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts +++ b/sdk/communication/communication-identity/test/public/communicationIdentityClient.spec.ts @@ -15,16 +15,16 @@ import { Context } from "mocha"; import { assert } from "chai"; import { matrix } from "@azure/test-utils"; -matrix([[true, false]], async function (useAad) { +matrix([[true, false]], async function (useAad: boolean) { describe(`CommunicationIdentityClient [Playback/Live]${useAad ? " [AAD]" : ""}`, function () { let recorder: Recorder; let client: CommunicationIdentityClient; - beforeEach(function (this: Context) { + beforeEach(async function (this: Context) { if (useAad) { - ({ client, recorder } = createRecordedCommunicationIdentityClientWithToken(this)); + ({ client, recorder } = await createRecordedCommunicationIdentityClientWithToken(this)); } else { - ({ client, recorder } = createRecordedCommunicationIdentityClient(this)); + ({ client, recorder } = await createRecordedCommunicationIdentityClient(this)); } }); diff --git a/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts b/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts index acdf9a851186..4942ec214ab5 100644 --- a/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts +++ b/sdk/communication/communication-identity/test/public/node/getTokenForTeamsUser.node.spec.ts @@ -26,9 +26,9 @@ matrix([[true, false]], async function (useAad) { beforeEach(async function (this: Context) { if (useAad) { - ({ client, recorder } = createRecordedCommunicationIdentityClientWithToken(this)); + ({ client, recorder } = await createRecordedCommunicationIdentityClientWithToken(this)); } else { - ({ client, recorder } = createRecordedCommunicationIdentityClient(this)); + ({ client, recorder } = await createRecordedCommunicationIdentityClient(this)); } }); @@ -44,13 +44,13 @@ matrix([[true, false]], async function (useAad) { teamsToken = "sanitized"; } else { const credential = new UsernamePasswordCredential( - env.COMMUNICATION_M365_AAD_TENANT, - env.COMMUNICATION_M365_APP_ID, - env.COMMUNICATION_MSAL_USERNAME, - env.COMMUNICATION_MSAL_PASSWORD + env.COMMUNICATION_M365_AAD_TENANT ?? "", + env.COMMUNICATION_M365_APP_ID ?? "", + env.COMMUNICATION_MSAL_USERNAME ?? "", + env.COMMUNICATION_MSAL_PASSWORD ?? "" ); - const response = await credential.getToken([env.COMMUNICATION_M365_SCOPE]); + const response = await credential.getToken([env.COMMUNICATION_M365_SCOPE ?? ""]); assert.isNotNull(response); teamsToken = response!.token; } @@ -93,7 +93,7 @@ matrix([[true, false]], async function (useAad) { it("throws an error when attempting to exchange an expired Teams User AAD token", async function () { try { - let expiredToken = env.COMMUNICATION_EXPIRED_TEAMS_TOKEN; + let expiredToken = env.COMMUNICATION_EXPIRED_TEAMS_TOKEN ?? ""; if (isPlaybackMode()) { expiredToken = "sanitized"; } diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index cd46c9a81ef6..3c7689dc73ac 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -1,38 +1,22 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import * as dotenv from "dotenv"; -import { ClientSecretCredential, DefaultAzureCredential } from "@azure/identity"; -import { - Recorder, - RecorderEnvironmentSetup, - env, - isLiveMode, - isPlaybackMode, - record, -} from "@azure-tools/test-recorder"; +import { Recorder, SanitizerOptions, env, isPlaybackMode } from "@azure-tools/test-recorder"; + import { CommunicationIdentityClient } from "../../../src"; import { Context } from "mocha"; import { TokenCredential } from "@azure/core-auth"; -import { createXhrHttpClient } from "@azure/test-utils"; -import { isNode } from "@azure/core-util"; +import { createTestCredential } from "@azure-tools/test-credential"; import { parseConnectionString } from "@azure/communication-common"; -if (isNode) { - dotenv.config(); -} - export interface RecordedClient { client: T; recorder: Recorder; } -const httpClient = isNode || isLiveMode() ? undefined : createXhrHttpClient(); - const replaceableVariables: { [k: string]: string } = { - COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING: "endpoint=https://endpoint/;accesskey=banana", INCLUDE_PHONENUMBER_LIVE_TESTS: "false", - COMMUNICATION_ENDPOINT: "https://endpoint/", + COMMUNICATION_ENDPOINT: "https://joheredicoms.communication.azure.com/", AZURE_CLIENT_ID: "SomeClientId", AZURE_CLIENT_SECRET: "azure_client_secret", AZURE_TENANT_ID: "SomeTenantId", @@ -45,92 +29,95 @@ const replaceableVariables: { [k: string]: string } = { SKIP_INT_IDENTITY_EXCHANGE_TOKEN_TEST: "false", }; -export const environmentSetup: RecorderEnvironmentSetup = { - replaceableVariables, - customizationsOnRecordings: [ - (recording: string): string => - recording.replace(/"token"\s?:\s?"[^"]*"/g, `"token":"sanitized"`), - (recording: string): string => - recording.replace(/"access_token"\s?:\s?"[^"]*"/g, `"access_token":"sanitized"`), - (recording: string): string => - recording.replace(/"id_token"\s?:\s?"[^"]*"/g, `"id_token":"sanitized"`), - (recording: string): string => - recording.replace(/"refresh_token"\s?:\s?"[^"]*"/g, `"refresh_token":"sanitized"`), - (recording: string): string => recording.replace(/(https:\/\/)([^/',]*)/, "$1endpoint"), - (recording: string): string => recording.replace(/"id"\s?:\s?"[^"]*"/g, `"id":"sanitized"`), - (recording: string): string => { - return recording.replace( - /(https:\/\/[^/',]*\/identities\/)[^/',]*(\/token)/, - "$1sanitized$2" - ); +const sanitizerOptions: SanitizerOptions = { + connectionStringSanitizers: [ + { + actualConnString: env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING, + fakeConnString: "endpoint=https://joheredicoms.communication.azure.com/;accesskey=banana", + }, + ], + uriSanitizers: [ + { + regex: true, + target: `https:\/\/(?.*)\.communication\.azure\.com\/(.*)`, + value: "joheredicoms", + groupForReplace: "host_name", + }, + { + regex: true, + target: `(.*)\/identities\/(?.*?)[\/|?](.*)`, + value: "sanitized", + groupForReplace: "secret_content", + }, + ], + generalSanitizers: [ + { regex: true, target: `"access_token"\s?:\s?"[^"]*"`, value: `"access_token":"sanitized"` }, + { regex: true, target: `"token"\s?:\s?"[^"]*"`, value: `"token":"sanitized"` }, + { regex: true, target: `"id_token"\s?:\s?"[^"]*"`, value: `"id_token":"sanitized"` }, + { regex: true, target: `"refresh_token"\s?:\s?"[^"]*"`, value: `"refresh_token":"sanitized"` }, + { regex: true, target: `"id"\s?:\s?"[^"]*"`, value: `"id":"sanitized"` }, + { + regex: true, + target: `[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}`, + value: `sanitized`, }, - (recording: string): string => - recording.replace(/\/identities\/[^/'",]*/, "/identities/sanitized"), - (recording: string): string => recording.replace(/\+\d{1}\d{3}\d{3}\d{4}/g, "+18005551234"), - (recording: string): string => - recording.replace( - /[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}/gi, - "00000000-0000-0000-0000-000000000000" - ), ], - queryParametersToSkip: [], }; -export function createRecorder(context: Context): Recorder { - const recorder = record(context, environmentSetup); - return recorder; -} - -export function createRecordedCommunicationIdentityClient( +export async function createRecordedCommunicationIdentityClient( context: Context -): RecordedClient { - const recorder = record(context, environmentSetup); +): Promise> { + const recorder = new Recorder(context.currentTest); + await recorder.start({ envSetupForPlayback: replaceableVariables }); + recorder.addSanitizers(sanitizerOptions); + + const client = new CommunicationIdentityClient( + env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING ?? "", + recorder.configureClientOptions({}) + ); // casting is a workaround to enable min-max testing return { - client: new CommunicationIdentityClient(env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING, { - httpClient, - }), + client, recorder, }; } -export function createRecordedCommunicationIdentityClientWithToken( +export async function createRecordedCommunicationIdentityClientWithToken( context: Context -): RecordedClient { - const recorder = record(context, environmentSetup); +): Promise> { + const recorder = new Recorder(context.currentTest); + await recorder.start({ envSetupForPlayback: replaceableVariables }); + recorder.addSanitizers(sanitizerOptions); + let credential: TokenCredential; const endpoint = parseConnectionString( - env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING + env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING ?? "" ).endpoint; if (isPlaybackMode()) { credential = { - getToken: async (_scopes) => { + getToken: async (_scopes: any) => { return { token: "testToken", expiresOnTimestamp: 11111 }; }, }; + const client = new CommunicationIdentityClient( + endpoint, + credential, + recorder.configureClientOptions({}) + ); + // casting is a workaround to enable min-max testing - return { - client: new CommunicationIdentityClient(endpoint, credential, { httpClient }), - recorder, - }; + return { client, recorder }; } - if (isNode) { - credential = new DefaultAzureCredential(); - } else { - credential = new ClientSecretCredential( - env.AZURE_TENANT_ID, - env.AZURE_CLIENT_ID, - env.AZURE_CLIENT_SECRET, - { httpClient } - ); - } + credential = createTestCredential(); + const client = new CommunicationIdentityClient( + endpoint, + credential, + recorder.configureClientOptions({}) + ); // casting is a workaround to enable min-max testing - return { - client: new CommunicationIdentityClient(endpoint, credential, { httpClient }), - recorder, - }; + return { client, recorder }; } From b8b3c36e3afa7a75141a2bd1681ff0959c1e06a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 9 Mar 2022 10:07:58 +0100 Subject: [PATCH 26/33] fixed most of the tests --- .../communication-identity/karma.conf.js | 4 +- ...recording_successfully_creates_a_user.json | 17 ++++---- ..._and_gets_a_token_in_a_single_request.json | 19 ++++---- ...successfully_creates_a_user_and_token.json | 19 ++++---- ...recording_successfully_deletes_a_user.json | 34 +++++++-------- ...ts_a_token_for_a_user_multiple_scopes.json | 36 ++++++++-------- ..._gets_a_token_for_a_user_single_scope.json | 36 ++++++++-------- ...ully_revokes_tokens_issued_for_a_user.json | 38 ++++++++-------- ...recording_successfully_creates_a_user.json | 15 +++---- ..._and_gets_a_token_in_a_single_request.json | 17 ++++---- ...successfully_creates_a_user_and_token.json | 17 ++++---- ...recording_successfully_deletes_a_user.json | 30 ++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 32 +++++++------- ..._gets_a_token_for_a_user_single_scope.json | 32 +++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 34 +++++++-------- ..._attempting_to_delete_an_invalid_user.json | 15 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 15 +++---- ...g_to_issue_a_token_without_any_scopes.json | 30 ++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 15 +++---- ..._attempting_to_delete_an_invalid_user.json | 17 ++++---- ..._to_issue_a_token_for_an_invalid_user.json | 17 ++++---- ...g_to_issue_a_token_without_any_scopes.json | 34 +++++++-------- ...o_revoke_a_token_from_an_invalid_user.json | 17 ++++---- ...recording_successfully_creates_a_user.json | 14 +++--- ..._and_gets_a_token_in_a_single_request.json | 16 +++---- ...successfully_creates_a_user_and_token.json | 16 +++---- ...recording_successfully_deletes_a_user.json | 28 ++++++------ ...ts_a_token_for_a_user_multiple_scopes.json | 32 +++++++------- ..._gets_a_token_for_a_user_single_scope.json | 30 ++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 30 ++++++------- ...recording_successfully_creates_a_user.json | 12 +++--- ..._and_gets_a_token_in_a_single_request.json | 14 +++--- ...successfully_creates_a_user_and_token.json | 14 +++--- ...recording_successfully_deletes_a_user.json | 24 +++++------ ...ts_a_token_for_a_user_multiple_scopes.json | 26 +++++------ ..._gets_a_token_for_a_user_single_scope.json | 28 ++++++------ ...ully_revokes_tokens_issued_for_a_user.json | 26 +++++------ ..._attempting_to_delete_an_invalid_user.json | 12 +++--- ..._to_issue_a_token_for_an_invalid_user.json | 12 +++--- ...g_to_issue_a_token_without_any_scopes.json | 24 +++++------ ...o_revoke_a_token_from_an_invalid_user.json | 12 +++--- ..._attempting_to_delete_an_invalid_user.json | 14 +++--- ..._to_issue_a_token_for_an_invalid_user.json | 14 +++--- ...g_to_issue_a_token_without_any_scopes.json | 28 ++++++------ ...o_revoke_a_token_from_an_invalid_user.json | 14 +++--- ...oken_for_a_communication_access_token.json | 42 ++++++++++++++++++ ...xchange_an_empty_teams_user_aad_token.json | 43 +++++++++++++++++++ ...hange_an_expired_teams_user_aad_token.json | 43 +++++++++++++++++++ ...hange_an_invalid_teams_user_aad_token.json | 43 +++++++++++++++++++ ...oken_for_a_communication_access_token.json | 40 +++++++++++++++++ ...xchange_an_empty_teams_user_aad_token.json | 41 ++++++++++++++++++ ...hange_an_expired_teams_user_aad_token.json | 41 ++++++++++++++++++ ...hange_an_invalid_teams_user_aad_token.json | 41 ++++++++++++++++++ .../test/public/utils/recordedClient.ts | 43 ++++++++++--------- 54 files changed, 831 insertions(+), 526 deletions(-) create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json create mode 100644 sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json diff --git a/sdk/communication/communication-identity/karma.conf.js b/sdk/communication/communication-identity/karma.conf.js index 41e749fb9c8d..1e29c6ae8b8b 100644 --- a/sdk/communication/communication-identity/karma.conf.js +++ b/sdk/communication/communication-identity/karma.conf.js @@ -53,13 +53,13 @@ module.exports = function (config) { "AZURE_CLIENT_ID", "AZURE_CLIENT_SECRET", "AZURE_TENANT_ID", - "RECORDINGS_RELATIVE_PATH" + "RECORDINGS_RELATIVE_PATH", ], // test results reporter to use // possible values: 'dots', 'progress' // available reporters: https://npmjs.org/browse/keyword/karma-reporter - reporters: ["mocha", "coverage", "junit",], + reporters: ["mocha", "coverage", "junit"], coverageReporter: { // specify a common output directory diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index 72cc5ad12c4b..1b577d46a589 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:54 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:29 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +29,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:54 GMT", - "MS-CV": "bEsPRv1cqky3\u002Bnj8HVj2\u002BQ.0", + "Date": "Wed, 09 Mar 2022 09:04:29 GMT", + "MS-CV": "/V\u002BKh\u002B0Dh0WMND9NWFkUEg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0zu0XYgAAAAA6yhpCFS/4S5DqAe2VyWU2Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nW0oYgAAAADW0HUzOL8DSo4y0RHHDJcBUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "85ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 9509b5d40d10..e2740ce429ef 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -35,14 +34,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:55 GMT", - "MS-CV": "S7czQ2ZXW0\u002B1KBK/af3/mg.0", + "Date": "Wed, 09 Mar 2022 09:04:30 GMT", + "MS-CV": "cmMSl9SbxkauzMXC7blxFg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0z\u002B0XYgAAAAB2CqvHbZIhSLRIgnAa6h/cQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0n20oYgAAAAD1GpnbdtJ9TaCiSF5HA1DpUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "223ms" + "X-Processing-Time": "53ms" }, "ResponseBody": { "identity": { @@ -50,7 +49,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:55.9895802\u002B00:00" + "expiresOn": "2022-03-10T09:04:31.1488492\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 4a2700927283..8238db1e32f2 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "34", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:54 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:29 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -34,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:54 GMT", - "MS-CV": "YJFD1Iow502bIJPjQ/heRA.0", + "Date": "Wed, 09 Mar 2022 09:04:29 GMT", + "MS-CV": "dhlXFP52W0KB3OZMBoNuVg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0zu0XYgAAAAAQ6ERHbofSQLCGdT22dj\u002BGQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nW0oYgAAAAASQjpsqz8DT65OY866n73RUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "224ms" + "X-Processing-Time": "43ms" }, "ResponseBody": { "identity": { @@ -49,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:55.0664655\u002B00:00" + "expiresOn": "2022-03-10T09:04:29.9349256\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index c8befad8124b..9e4ffd2f6ff8 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +29,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:56 GMT", - "MS-CV": "DRl0OquW5EKc7kMI/2xGXQ.0", + "Date": "Wed, 09 Mar 2022 09:04:31 GMT", + "MS-CV": "7r0u1zm5GkKZuk\u002B3h/V1LQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "00O0XYgAAAAB6t1A\u002BIl4\u002BQY0KOsPgmxoIQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0n20oYgAAAACWf4GglXqDTqdWwfoBsPtRUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "83ms" + "X-Processing-Time": "36ms" }, "ResponseBody": { "identity": { @@ -46,12 +45,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -61,24 +59,24 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:42:56 GMT", - "MS-CV": "fDStFWkFQU6hmjCzGqgDEg.0", + "Date": "Wed, 09 Mar 2022 09:04:31 GMT", + "MS-CV": "HkW\u002Bp7PRfkuAqRfparFfng.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "00O0XYgAAAABcb3PtEgLuT7Qe7l0\u002BzKLMQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0oG0oYgAAAAD7IeDpANGnQ7ACJmR6oIbnUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "333ms" + "X-Processing-Time": "149ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 6c98df8b4e00..a502e2869ef1 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +29,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:55 GMT", - "MS-CV": "zCvL64zPy0eZwNyglsUzrw.0", + "Date": "Wed, 09 Mar 2022 09:04:30 GMT", + "MS-CV": "V1lGE\u002BGPgku0a3b9pYjBkA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0z\u002B0XYgAAAABquT701/efTZa68ScoL/kqQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nm0oYgAAAADOGhZYV9/FTbyT/XVyVDuaUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "84ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -46,12 +45,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -63,11 +61,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -80,18 +78,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:55 GMT", - "MS-CV": "17I0JedKckuL8wMmZaObog.0", + "Date": "Wed, 09 Mar 2022 09:04:30 GMT", + "MS-CV": "yuk2yu3e6kaevj5eRrbHYg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0z\u002B0XYgAAAABi0z1oZcgKSbU9SB5IRDHeQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nm0oYgAAAABh3QSEbZGeTIGay9hyAJvnUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "153ms" + "X-Processing-Time": "35ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:55.6959239\u002B00:00" + "expiresOn": "2022-03-10T09:04:30.8763194\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 90297e27d1a2..2768fa428096 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +29,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:55 GMT", - "MS-CV": "Bq9ChehXyk61abWAnDIXog.0", + "Date": "Wed, 09 Mar 2022 09:04:29 GMT", + "MS-CV": "drEnHfH9BkuDQtaCmEEPMg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0z\u002B0XYgAAAABNpfvQQSZQQ7ba470/Kk/eQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nm0oYgAAAAB0z4cdIFqESZVEkI\u002BmKeBfUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "82ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { @@ -46,12 +45,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "19", @@ -63,11 +61,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:55 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -79,18 +77,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:55 GMT", - "MS-CV": "9MPYAAJBY0ShnCbYwmOIIg.0", + "Date": "Wed, 09 Mar 2022 09:04:29 GMT", + "MS-CV": "D\u002B5n8D6pVEaOBfKSSz\u002BgIA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0z\u002B0XYgAAAAD9ZNebIu\u002BvTrn0kWBkbRKlQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nm0oYgAAAAApivePt/\u002B4SJyUpORKFUGgUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "156ms" + "X-Processing-Time": "35ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:55.3860697\u002B00:00" + "expiresOn": "2022-03-10T09:04:30.4055673\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 74d975031653..365d51e8a3b3 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -33,16 +32,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "115", + "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:56 GMT", - "MS-CV": "yHmZ\u002BuZE/Uqupp4jYA4OUA.0", + "Date": "Wed, 09 Mar 2022 09:04:30 GMT", + "MS-CV": "Dlb3jamOU0ek5YurT70LOQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "00O0XYgAAAADXo/ztZsvbSJvBVe8uDVQWQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0n20oYgAAAACuenDDNI52T5X5mhjKpnZVUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "255ms" + "X-Processing-Time": "44ms" }, "ResponseBody": { "identity": { @@ -50,17 +49,16 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:56.2983435\u002B00:00" + "expiresOn": "2022-03-10T09:04:31.413281\u002B00:00" } } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -71,24 +69,24 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:56 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:42:56 GMT", - "MS-CV": "dAHDvU9XEU\u002BKcRHCN6alEA.0", + "Date": "Wed, 09 Mar 2022 09:04:31 GMT", + "MS-CV": "IGsPcaKSaUiLCH4SxIdFfA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "00O0XYgAAAABa065j20nkT6VZK8RZ4NdxQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0n20oYgAAAABjB3QWKltaSa60bididGa3UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "213ms" + "X-Processing-Time": "103ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 079a01922dca..9f9f72f135c3 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +27,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:50 GMT", - "MS-CV": "JhAZdFReNUSpF2xapnETLA.0", + "Date": "Wed, 09 Mar 2022 09:04:23 GMT", + "MS-CV": "oEYX1cgLVUqvHlaB4Zgn8w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0yu0XYgAAAADOkPXuAP3kRb0ju4zVjbdjQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0l20oYgAAAADguwzdQi\u002BBQLnGyOuB7PP9UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "283ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index da092dc5ad40..a31dc0021583 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -33,14 +32,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:51 GMT", - "MS-CV": "ldDLhp5cl0msjCZiimSHOg.0", + "Date": "Wed, 09 Mar 2022 09:04:25 GMT", + "MS-CV": "VsZp6SRLm0y0zdd2UnjnPw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0y\u002B0XYgAAAADllwOAVKxDTIg6wX8MAg92Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0mW0oYgAAAABdLRUSo9\u002BHSYODhT3TlLRPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "220ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "identity": { @@ -48,7 +47,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:52.1913711\u002B00:00" + "expiresOn": "2022-03-10T09:04:25.7676156\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index 505a0d9c199f..a669c6c9fee4 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "34", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -32,14 +31,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:50 GMT", - "MS-CV": "wW5iU8yX0k2/muoWt0U/vA.0", + "Date": "Wed, 09 Mar 2022 09:04:23 GMT", + "MS-CV": "0GMf84wgC0iBFakRP8mddw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0yu0XYgAAAAB1vEogTKQ\u002BT6rDblTNYOM8Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0l20oYgAAAAC0VWznhmAcSIAGruizixc0UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "280ms" + "X-Processing-Time": "38ms" }, "ResponseBody": { "identity": { @@ -47,7 +46,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:51.0089193\u002B00:00" + "expiresOn": "2022-03-10T09:04:23.9665839\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 696dc1cf79b4..4fb580d34194 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +27,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:53 GMT", - "MS-CV": "Ra2iVzcPKUG6Z5Z2Tgdqog.0", + "Date": "Wed, 09 Mar 2022 09:04:26 GMT", + "MS-CV": "hbJoNc3kr0uZW1vCLuKyDA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0ze0XYgAAAAAJ7VK6c1dES6YVghrbcfDrQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0m20oYgAAAACEHMDzsuEmQZYcJZ0OCWcvUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "81ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -44,12 +43,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -59,22 +57,22 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:42:53 GMT", - "MS-CV": "vT3epOWcCke0EwEjyOXUlg.0", + "Date": "Wed, 09 Mar 2022 09:04:27 GMT", + "MS-CV": "4d\u002Be/K0vwkqwvGVHI1S8jA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0ze0XYgAAAABiD/wPPYg1QK\u002BoNt/yLReRQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0m20oYgAAAAB8VwLnPLX8SI2OrQPwOFlHUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "200ms" + "X-Processing-Time": "140ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index ccd9ff088bdf..354f93b69281 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +27,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:51 GMT", - "MS-CV": "PYS/jmoChUO6mOhrXfs/fQ.0", + "Date": "Wed, 09 Mar 2022 09:04:24 GMT", + "MS-CV": "a4GeAaSKG0i6wBKx/8Z4gA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0y\u002B0XYgAAAAA4BdPTL6eNTrdoSV/Iju8IQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0mG0oYgAAAABK9H43ZpFIQbUcaByIAQizUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "77ms" + "X-Processing-Time": "32ms" }, "ResponseBody": { "identity": { @@ -44,12 +43,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -61,9 +59,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -76,18 +74,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:51 GMT", - "MS-CV": "4DiF6\u002Bb2A0uw444yRCBtUw.0", + "Date": "Wed, 09 Mar 2022 09:04:24 GMT", + "MS-CV": "x0D1gd9g/0e5MkNra9cPFw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0y\u002B0XYgAAAABGZvS2\u002BFEKTa3TljAvreygQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0mW0oYgAAAABl6wLYcKl2QpsaM9FSiSC4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "146ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:51.8163206\u002B00:00" + "expiresOn": "2022-03-10T09:04:25.3043794\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 2c7a8e6ab024..4e06daa07986 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +27,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:51 GMT", - "MS-CV": "5MH4cldMckKcKX/BVR5CVw.0", + "Date": "Wed, 09 Mar 2022 09:04:23 GMT", + "MS-CV": "OH0SujAsFUWJAtpqJpet0g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0y\u002B0XYgAAAAAEdferpIt\u002BTYVAc7lw6Mu3Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0mG0oYgAAAAA0PAKKzFVJTI52LxnWWqxFUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "81ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -44,12 +43,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "19", @@ -61,9 +59,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -75,18 +73,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:51 GMT", - "MS-CV": "0ISmtOtNf06mz9nqd8MteQ.0", + "Date": "Wed, 09 Mar 2022 09:04:24 GMT", + "MS-CV": "cAeR7YUzhku4d08uQSppEg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0y\u002B0XYgAAAAA1lm8Cu9XbRqY0r09FFTpNQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0mG0oYgAAAACU79XvUHFnQpj6BUp4hAjiUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "146ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:51.4160072\u002B00:00" + "expiresOn": "2022-03-10T09:04:24.6404957\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index 5167f1243bde..51d6627234da 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -31,16 +30,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "114", + "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:52 GMT", - "MS-CV": "GawGhrrqM0C8OJt9J8acwQ.0", + "Date": "Wed, 09 Mar 2022 09:04:25 GMT", + "MS-CV": "2yMZnsAJ3ESXxJcH8htURQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0zO0XYgAAAACGdr3CQ2RKS5FmJ/HRij6PQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0mm0oYgAAAAD3SzTf5MkWSLCjXCsXfv6nUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "224ms" + "X-Processing-Time": "37ms" }, "ResponseBody": { "identity": { @@ -48,17 +47,16 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:42:52.658701\u002B00:00" + "expiresOn": "2022-03-10T09:04:26.2083729\u002B00:00" } } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -69,22 +67,22 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:42:52 GMT", - "MS-CV": "QIJJP3VRbE6I7YrrMWtMHg.0", + "Date": "Wed, 09 Mar 2022 09:04:26 GMT", + "MS-CV": "xGL6LTS6gk\u002Bv3H6DDAhT3w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0zO0XYgAAAADfOOxgvRSxTpv80onYioa4Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0mm0oYgAAAAA1TgqZUsM2TLUbiN1M7LlwUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "216ms" + "X-Processing-Time": "239ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 6f21c9155699..d24c7406ac4d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -16,24 +15,24 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:54 GMT", - "MS-CV": "KNotPRZoaEap7ANp5gcYRg.0", + "Date": "Wed, 09 Mar 2022 09:04:28 GMT", + "MS-CV": "6tgakFfgf0GrhFGRoE0SAw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0zu0XYgAAAACvehcvu73mR5YIhwZptZAUQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nW0oYgAAAABj2cXh\u002BvVdTbeiHhZXzqqJUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "11ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 0956df3f11df..f5971e330313 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -32,15 +31,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:54 GMT", - "MS-CV": "RSEMr136mUWQzPl3DQ2HIQ.0", + "Date": "Wed, 09 Mar 2022 09:04:28 GMT", + "MS-CV": "Sew4ZUyiA0uxIGhYNrBo\u002BQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0zu0XYgAAAAAH/9aBxMbETK9A8mqn49cLQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nG0oYgAAAAANztydRLUjQYArHarTROjKUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "11ms" + "X-Processing-Time": "15ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 354bb819f1e3..0e15e202bdc1 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,9 +17,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +27,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:53 GMT", - "MS-CV": "GdU7iLTybk\u002BLblD3h9ddww.0", + "Date": "Wed, 09 Mar 2022 09:04:27 GMT", + "MS-CV": "tTqtxNZkFU6eunzDl\u002BqEvQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0ze0XYgAAAAA91xudZ5h7SL/bSnPQP0FvQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0m20oYgAAAAC3SMPkmFnfTJ4Wcq/xej19UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "80ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "identity": { @@ -44,12 +43,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "13", @@ -61,9 +59,9 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [] @@ -72,15 +70,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:53 GMT", - "MS-CV": "Zxw4vPqUSEaxl7FbE9KnfQ.0", + "Date": "Wed, 09 Mar 2022 09:04:27 GMT", + "MS-CV": "bQzrObkeaU6rYtmU\u002BLkWbA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0ze0XYgAAAACsY6Pc\u002BKrARqI51Ka/APrgQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0m20oYgAAAACZEg\u002BYE/ZTQbjqfuRhEibaUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "11ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 59c292107c3f..d3e94f7c21ce 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -17,24 +16,24 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:54 GMT", - "MS-CV": "Mmo2R4jp70Wkm2iihSYW1Q.0", + "Date": "Wed, 09 Mar 2022 09:04:28 GMT", + "MS-CV": "gQP0TmRc3UyJOAJhsvFhlg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0zu0XYgAAAACu/3FMuk6MQYEfJDc\u002BWFyiQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0nG0oYgAAAABIxE\u002Bu\u002BpDdRLjqbMr1axdhUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "12ms" + "X-Processing-Time": "14ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 920f2483d020..51e34dcf0cf4 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -16,26 +15,26 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:33 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:57 GMT", - "MS-CV": "5OzxtTzmokCpDIL1/L/xHw.0", + "Date": "Wed, 09 Mar 2022 09:04:33 GMT", + "MS-CV": "Zs3xvgFxyEOV3PajzAQn/g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "00e0XYgAAAAAzAByN0CImRaQpis\u002BiWgCFQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0oW0oYgAAAAAoMSa7gTusTrpwPjpz74XZUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "14ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 788b2f5ee5be..86085c781679 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -34,15 +33,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:57 GMT", - "MS-CV": "FTmoJTfb6UC9omIOJwSTEw.0", + "Date": "Wed, 09 Mar 2022 09:04:32 GMT", + "MS-CV": "ScpjbGkeXkmnVpGvJDus8g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "00e0XYgAAAADHJ8XRzj\u002BZRJai8Q8DNbujQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0oG0oYgAAAACMExWtecqdQ7CUYR2x/5T6UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "17ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index e07ec3ead4ec..edb5b17674fd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -18,11 +17,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +29,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:42:57 GMT", - "MS-CV": "bouo8hM6NEGnlSMKR1NNVQ.0", + "Date": "Wed, 09 Mar 2022 09:04:32 GMT", + "MS-CV": "TwnxKn/31kO006QTRH608w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "00e0XYgAAAADkR40S0JTgQrOSTMwxFlv9Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0oG0oYgAAAACHG\u002BUoM7pXQLogtaiLUkUrUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "86ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "identity": { @@ -46,12 +45,11 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "13", @@ -63,11 +61,11 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [] @@ -76,15 +74,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:57 GMT", - "MS-CV": "\u002BZsWW8F1oUaSl/RDaL5gew.0", + "Date": "Wed, 09 Mar 2022 09:04:32 GMT", + "MS-CV": "QqUGPLN1VUmZ7pA8sNIWaQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "00e0XYgAAAAAM3wUTPeuCT6X21AmRkBOjQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0oG0oYgAAAADLQq\u002Bwc0WUR4/tTVmLIQIkUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "18ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 33a614933d37..dcbcc36ad68a 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -1,12 +1,11 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", - "Accept-Language": "en-US", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -17,26 +16,26 @@ "Sec-Fetch-Dest": "empty", "Sec-Fetch-Mode": "cors", "Sec-Fetch-Site": "same-site", - "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:42:57 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Linuxx86_64" + "x-ms-date": "Wed, 09 Mar 2022 09:04:33 GMT", + "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:42:57 GMT", - "MS-CV": "Sb1SBZTBo0WgSJI18IebiA.0", + "Date": "Wed, 09 Mar 2022 09:04:32 GMT", + "MS-CV": "UnGGJTZOkEiB\u002BMUS8h6AOA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "00e0XYgAAAAC3ja8VzZ6PT6BEwKtIB5G\u002BQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0oW0oYgAAAADo3Y4\u002Bj36dSrLHzcTsPBwyUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "17ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index 88274185af2a..a8d5628c1faa 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:07 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:03 GMT", - "MS-CV": "DOg9h6BVrkePvp9cqU6Dzw.0", + "Date": "Wed, 09 Mar 2022 09:04:07 GMT", + "MS-CV": "8rpvpMhMrUCYofCmjHLJbg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0FO4XYgAAAACE\u002BGTVawoIRbvhXuHvp\u002BWCQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0h20oYgAAAABCDuz\u002Boc2ISaRP3WO49PjtUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "83ms" + "X-Processing-Time": "34ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 4a5294b56311..1a1df6f1bd5c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:04 GMT", - "MS-CV": "Jc5d0qcnGESgQX3j3Z5SKw.0", + "Date": "Wed, 09 Mar 2022 09:04:08 GMT", + "MS-CV": "cKgSbRn6KUGVLaFmj1NRIQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Fe4XYgAAAABjgu0UOG4fT4RVmkM70zb0Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0iG0oYgAAAACjQOwtQCgKQ4DZJpkXXPEyUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "221ms" + "X-Processing-Time": "49ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:44:05.2471876\u002B00:00" + "expiresOn": "2022-03-10T09:04:09.0330004\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 19d6d2ce3e5d..6f824649a2b7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "34", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:07 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -25,14 +25,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:04 GMT", - "MS-CV": "KktaaW79rk23CVlSTij34w.0", + "Date": "Wed, 09 Mar 2022 09:04:07 GMT", + "MS-CV": "AG0j2J3dsEuMviDcwqmNmQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0FO4XYgAAAABmpC2WEbHPQ6DymgFr81FpQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0h20oYgAAAADzNU5zIu\u002B5SYBgPKiljnqjUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "219ms" + "X-Processing-Time": "50ms" }, "ResponseBody": { "identity": { @@ -40,7 +40,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:44:04.3904901\u002B00:00" + "expiresOn": "2022-03-10T09:04:07.8073009\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index efca6979d665..e31f9f426e94 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:10 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:05 GMT", - "MS-CV": "n5dCZYzUs0qV/jALX8s/eA.0", + "Date": "Wed, 09 Mar 2022 09:04:10 GMT", + "MS-CV": "k/49YiCsGEKGQH75HcyMfQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Fe4XYgAAAABuRjBIoC3vT7Wg6HVXOoMsQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0im0oYgAAAAACieNIdHzDRZUUrsGK/7oRUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "91ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "identity": { @@ -37,30 +37,30 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:10 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:44:05 GMT", - "MS-CV": "/hTVUU57OEie6BNzImU92A.0", + "Date": "Wed, 09 Mar 2022 09:04:10 GMT", + "MS-CV": "ABITKJPxyU6lP7BGxC8mFw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Fe4XYgAAAAD\u002B8n9g1WsoTrPrBtZj3yZAQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0im0oYgAAAAB\u002Bn5Luokd9TpFBC433oXQbUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "205ms" + "X-Processing-Time": "145ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 3a44e0615666..5495c82ada66 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:04 GMT", - "MS-CV": "DcFersyjO0mJ8HFoW0/knw.0", + "Date": "Wed, 09 Mar 2022 09:04:08 GMT", + "MS-CV": "ZUDK0YHB8UumU\u002BCXVFpObg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0FO4XYgAAAABD\u002BontgqUHQLcaQC\u002B72o\u002BBQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0iG0oYgAAAAAeZEkg96wbTr9xYFoWhlKsUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "86ms" + "X-Processing-Time": "44ms" }, "ResponseBody": { "identity": { @@ -37,7 +37,7 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -46,10 +46,10 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" }, "RequestBody": { "scopes": [ @@ -60,20 +60,20 @@ "StatusCode": 200, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "68", + "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:04 GMT", - "MS-CV": "m4mJtmPsDkipXn9Cq3OeHA.0", + "Date": "Wed, 09 Mar 2022 09:04:08 GMT", + "MS-CV": "Y9xy9cE2xkScJkyhtaQnQg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0FO4XYgAAAAAf\u002B8Yn\u002BCs6TJ8M4j36jye0Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0iG0oYgAAAADHK4xQMaW\u002BR4196dZ1AdsPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "154ms" + "X-Processing-Time": "42ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:44:04.987961\u002B00:00" + "expiresOn": "2022-03-10T09:04:08.7612825\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 4ab90cfeabe4..a264cdaf6428 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:07 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:04 GMT", - "MS-CV": "bai1SDsU4kuv2t1ronPVaA.0", + "Date": "Wed, 09 Mar 2022 09:04:07 GMT", + "MS-CV": "Xa5KMlsqcUm\u002BQa5MnoNzaQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0FO4XYgAAAAAEMrf9T8hbQpSwuF96XbMSQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0h20oYgAAAAAoKyoj\u002BCwfQK2rgEV1YK35UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "96ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "identity": { @@ -37,7 +37,7 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -46,10 +46,10 @@ "Connection": "keep-alive", "Content-Length": "19", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:04 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" }, "RequestBody": { "scopes": [ @@ -61,18 +61,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:04 GMT", - "MS-CV": "9w\u002BYoOuWfU21T7rzzHo3yw.0", + "Date": "Wed, 09 Mar 2022 09:04:07 GMT", + "MS-CV": "x\u002BZR9YP3OEqiCNvbaLVLFw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0FO4XYgAAAAAwlEg4NDpOSpj4PTjdNErLQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0iG0oYgAAAADmZet3wyg\u002BRaZGj0qubGkoUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "153ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:44:04.6939506\u002B00:00" + "expiresOn": "2022-03-10T09:04:08.2796603\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 06bd38d0150c..502cf92a58e7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:09 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:05 GMT", - "MS-CV": "rAktf9B3zUmLxSbwHFivug.0", + "Date": "Wed, 09 Mar 2022 09:04:08 GMT", + "MS-CV": "Cy5Hnl4cOUWXwDJDgMwXLw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Fe4XYgAAAACNZnhXWqpnSb\u002BHK\u002B7EDJRjQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0iW0oYgAAAADyOtJgbVD7SKmV6tm24jLnUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "291ms" + "X-Processing-Time": "56ms" }, "ResponseBody": { "identity": { @@ -41,12 +41,12 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:44:05.5674802\u002B00:00" + "expiresOn": "2022-03-10T09:04:09.3039299\u002B00:00" } } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -54,23 +54,23 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:05 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:09 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:44:05 GMT", - "MS-CV": "HjvOXhjGWUeFdz9ZdH98wA.0", + "Date": "Wed, 09 Mar 2022 09:04:09 GMT", + "MS-CV": "H8Jj\u002BN3v9Ea//nWzN5f6GQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Fe4XYgAAAAAKGgAOTiW8SZjaZeQ/81eKQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0iW0oYgAAAACDUxmCfuXDSJhGmYzqsJ61UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "217ms" + "X-Processing-Time": "774ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 4250736878c3..70304f5b0b56 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:43:56 GMT", - "MS-CV": "zIsU/CTIKk\u002BZRxazOlrfxA.0", + "Date": "Wed, 09 Mar 2022 09:03:59 GMT", + "MS-CV": "9U1DjL8elEKL\u002BKnmnb\u002BbZw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0DO4XYgAAAAAvPjZ5vNP7Tq1ZCN6anYzYQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0f20oYgAAAACHaPiz4Q/2SISHIq\u002BaMS0fUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "380ms" + "X-Processing-Time": "32ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 266f842891aa..dee718c3dab2 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:43:59 GMT", - "MS-CV": "35q3Ta0NX0yFb6ZcJZfTfA.0", + "Date": "Wed, 09 Mar 2022 09:04:02 GMT", + "MS-CV": "GTJAnOV31UOkH3D\u002BoFh8zg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0D\u002B4XYgAAAAAiVo097b1OSaSZNZ0YSzCYQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0gm0oYgAAAAD0l6K3d/sNQ7m8p2JPwuWwUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "220ms" + "X-Processing-Time": "35ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:44:00.0941236\u002B00:00" + "expiresOn": "2022-03-10T09:04:02.3671163\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index 51a3c05c2735..23df6812349d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "34", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -23,14 +23,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:43:57 GMT", - "MS-CV": "RPldcCA7PUC3XBGiL5zyIQ.0", + "Date": "Wed, 09 Mar 2022 09:03:59 GMT", + "MS-CV": "Iq/IEgxrwU\u002BHxafgbRjoYg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0De4XYgAAAACpprMbCKJAQKpDYtBBUosfQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0gG0oYgAAAACaInMzwsuMQYx5g4bNcsE4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "273ms" + "X-Processing-Time": "37ms" }, "ResponseBody": { "identity": { @@ -38,7 +38,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:43:57.7405546\u002B00:00" + "expiresOn": "2022-03-10T09:04:00.1540045\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 6b6d5262a882..0257042f30bc 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:01 GMT", - "MS-CV": "39DM6R7ya0G379qzRPlTgA.0", + "Date": "Wed, 09 Mar 2022 09:04:03 GMT", + "MS-CV": "Qvut2Q635ECR721wuQoWKQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Ee4XYgAAAABVbgwk9Zg1TYFQ6a\u002BenXHrQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0hG0oYgAAAADKBSXa3\u002BO9QYdhuEDLpT7dUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "92ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { @@ -35,28 +35,28 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:44:01 GMT", - "MS-CV": "Huch5uo4rEagav6QlZyQNA.0", + "Date": "Wed, 09 Mar 2022 09:04:04 GMT", + "MS-CV": "2qL5a9AxiEOXfczspHcz5g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Ee4XYgAAAAAiQ564WuvmTaCZHONuWzRdQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0hG0oYgAAAAA555QKDPqZQIShBMGOp6exUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "300ms" + "X-Processing-Time": "150ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 4d630fa1398f..b985df2a532e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:43:58 GMT", - "MS-CV": "zWsXbVv/J0KFtM3ZFejRKw.0", + "Date": "Wed, 09 Mar 2022 09:04:01 GMT", + "MS-CV": "14FzQfFGTkKXAeA6Kctg/g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0D\u002B4XYgAAAAClM/CnzYZqRbH\u002BE9CuzYbBQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0gW0oYgAAAAB/QeTGM/DNQYOXvTlmOvw2UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "80ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "identity": { @@ -35,7 +35,7 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -44,7 +44,7 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -58,18 +58,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:43:58 GMT", - "MS-CV": "T46keophK0m0uYTA1ro0LA.0", + "Date": "Wed, 09 Mar 2022 09:04:01 GMT", + "MS-CV": "Imw9kPCxM0y5Wb3gB8Q0ng.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0D\u002B4XYgAAAAC7vn\u002BzbcvyQpvPdyyCA4JPQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0gW0oYgAAAAD4yM6CK7eXR6BhAuRwYU2RUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "152ms" + "X-Processing-Time": "32ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:43:59.2760696\u002B00:00" + "expiresOn": "2022-03-10T09:04:01.7786341\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 340a72b5a7dd..97054798bb5b 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:43:57 GMT", - "MS-CV": "rixjxW64I0G/6FMwa9VT4A.0", + "Date": "Wed, 09 Mar 2022 09:04:00 GMT", + "MS-CV": "XgwLE1\u002B0A0yv2wxrF3bmNw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Du4XYgAAAAAs8WOB8NeSTYhXvznd3oAmQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0gG0oYgAAAACQXCDXZrLdQop13ANVHYEoUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "81ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "identity": { @@ -35,7 +35,7 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -44,7 +44,7 @@ "Connection": "keep-alive", "Content-Length": "19", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -55,20 +55,20 @@ "StatusCode": 200, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "69", + "Content-Length": "68", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:43:58 GMT", - "MS-CV": "G8gTLVpEsEam3gunUiUKEw.0", + "Date": "Wed, 09 Mar 2022 09:04:00 GMT", + "MS-CV": "NkMrqXpSxECM1k3V/QjONQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Du4XYgAAAADRnizYoG6PTKQHKt/ekdmvQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0gG0oYgAAAAA75fqWzB/oTIeWOq1Zzqi3UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "150ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-02-25T20:43:58.4761906\u002B00:00" + "expiresOn": "2022-03-10T09:04:00.928184\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index 5d407fbf5f40..323356a440ad 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:00 GMT", - "MS-CV": "N2o\u002BE5LZDkiu0VtqzDglZA.0", + "Date": "Wed, 09 Mar 2022 09:04:02 GMT", + "MS-CV": "ePQA5vvDEkK7ZlcCExZKUQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0EO4XYgAAAADga07ajA8ZQY7HaouKMtfDQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0gm0oYgAAAACwUKJ48zqgQ5DrSmqWZ/7YUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "280ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "identity": { @@ -39,12 +39,12 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-02-25T20:44:00.9013985\u002B00:00" + "expiresOn": "2022-03-10T09:04:03.0449826\u002B00:00" } } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -52,21 +52,21 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Thu, 24 Feb 2022 20:44:00 GMT", - "MS-CV": "bioVxiCa60CXMpFecZYMcA.0", + "Date": "Wed, 09 Mar 2022 09:04:03 GMT", + "MS-CV": "MvzIalpMPUmrt5Bmg6s4kQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0EO4XYgAAAACXf7tNb2Q/TZCu\u002BrPjJlooQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0g20oYgAAAACMmkTgXufvQJVtXiKE4yEMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "253ms" + "X-Processing-Time": "237ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 6ed8ae3f4cce..3720ac845922 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -1,14 +1,14 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -16,15 +16,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:03 GMT", - "MS-CV": "VDViAzqEG0KI0tj5QFOvkg.0", + "Date": "Wed, 09 Mar 2022 09:04:06 GMT", + "MS-CV": "UgsOFSq43U\u002B9GI4mJFm3sA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0FO4XYgAAAACSEZr70DKQR4zA0bcOc7NLQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0h20oYgAAAAA0dWJgBcYkTLnS5DB0VoZsUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "12ms" + "X-Processing-Time": "18ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index ec08303ef7e3..963e3e5f71f7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -23,15 +23,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:02 GMT", - "MS-CV": "3nT81vL5nkO9O6w0gDU/uQ.0", + "Date": "Wed, 09 Mar 2022 09:04:05 GMT", + "MS-CV": "zSal\u002B5W910\u002BeYHPkXhdLyg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0E\u002B4XYgAAAAB/ydbAE5oCQZUOnbtwP2QYQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0hW0oYgAAAACTHk2VlWgMTqnyhbfzfdYcUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "12ms" + "X-Processing-Time": "17ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index bca0759eeea3..69b5adf662aa 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:02 GMT", - "MS-CV": "Jlb0BDXY5kydJ2fq9z5bbA.0", + "Date": "Wed, 09 Mar 2022 09:04:04 GMT", + "MS-CV": "e\u002BPnzdl\u002BKkCEhk4Ia4Aivg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Eu4XYgAAAACRvlgINhJxRItQZDcCLS\u002BHQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0hW0oYgAAAADrtkVjI7IHSY3nTVfq1KN9UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "84ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { @@ -35,7 +35,7 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -44,7 +44,7 @@ "Connection": "keep-alive", "Content-Length": "13", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -54,15 +54,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:02 GMT", - "MS-CV": "Y9qxpT96mUqIK\u002BvjayanhA.0", + "Date": "Wed, 09 Mar 2022 09:04:05 GMT", + "MS-CV": "VjdB88ZSm0eXGne17RC7NA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0Eu4XYgAAAACVvU8ChfyASLYTmLM/iGFuQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0hW0oYgAAAACxRQ\u002BaHI/XSIC/w8N/WxQlUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "11ms" + "X-Processing-Time": "39ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 7330782b6b8a..3919223f7e55 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -17,15 +17,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:03 GMT", - "MS-CV": "o\u002Bp/SMZkxUu86JlopCRk2g.0", + "Date": "Wed, 09 Mar 2022 09:04:06 GMT", + "MS-CV": "f8jY7QQN5EC6JXn5hMf9VQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0E\u002B4XYgAAAABWRzW45JJzRLUNBYeuBPXoQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0hm0oYgAAAAC7h5ptmuMTT4wGYz5CZy43UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "13ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 85b684d006ac..04425918d058 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -1,32 +1,32 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized?api-version=2021-10-31-preview", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:06 GMT", - "MS-CV": "47QkCXAqL0yaokBNWASPPQ.0", + "Date": "Wed, 09 Mar 2022 09:04:11 GMT", + "MS-CV": "TiB2mnrIh0m5CE7TArZPfA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0Fu4XYgAAAACvPKEMH9hJTJAErDS\u002Bp/Y4Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0i20oYgAAAADHjVYuRRf0Q4pbkwr0fjodUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "17ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index e613e6a8e60c..b17d8bf513fc 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" }, "RequestBody": { "scopes": [ @@ -25,15 +25,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:06 GMT", - "MS-CV": "U//NFyY8tE\u002BAF6dZwGMRCw.0", + "Date": "Wed, 09 Mar 2022 09:04:11 GMT", + "MS-CV": "kOQ4rJW9rEaHWi\u002B8R20WMw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0Fu4XYgAAAACGReSv9AXcTbi4nlFkIwN5Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0i20oYgAAAACRRvGSUXO3Sp7ItXkz/aSuUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 9700c0392637..70e05380f535 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:10 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 24 Feb 2022 20:44:05 GMT", - "MS-CV": "11eYntUtfUWdT8sRbq49qw.0", + "Date": "Wed, 09 Mar 2022 09:04:10 GMT", + "MS-CV": "AikHP7bLYUqlQR6WApENyQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0Fu4XYgAAAAC7g9WuusBxRaT6csfURr1qQk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0im0oYgAAAADX62dRbE5JQLlLFBBwfbqeUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "85ms" + "X-Processing-Time": "49ms" }, "ResponseBody": { "identity": { @@ -37,7 +37,7 @@ } }, { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:issueAccessToken?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -46,10 +46,10 @@ "Connection": "keep-alive", "Content-Length": "13", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" }, "RequestBody": { "scopes": [] @@ -58,15 +58,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:05 GMT", - "MS-CV": "OryDVxbpjkeQYgOtpI/jyQ.0", + "Date": "Wed, 09 Mar 2022 09:04:10 GMT", + "MS-CV": "xsK\u002BqfgOrE2GmBQiFlW6pw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0Fu4XYgAAAADX2RBm6y9wSYq6itEjSG07Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0i20oYgAAAABT11\u002BGOgC/Ro4z0zjRcGn0UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index b92fb3d1c3c8..ae76651689ec 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://joheredicoms.communication.azure.com/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", + "RequestUri": "https://endpoint/identities/sanitized/:revokeAccessTokens?api-version=2021-10-31-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", @@ -9,25 +9,25 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.9 OS/(x64-Linux-5.4.0-1067-azure)", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Thu, 24 Feb 2022 20:44:06 GMT" + "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Thu, 24 Feb 2022 20:44:06 GMT", - "MS-CV": "pdEEYz0y5E23dnyKK32gHA.0", + "Date": "Wed, 09 Mar 2022 09:04:11 GMT", + "MS-CV": "1mMymzAs3Uys79dPmS9fDw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0Fu4XYgAAAABcJxb4yW72QYVrFVGS8\u002BU8Qk4zRURHRTExMTkAOWZjN2I1MTktYThjYy00Zjg5LTkzNWUtYzkxNDhhZTA5ZTgx", + "X-Azure-Ref": "0i20oYgAAAADPB/0CaRbISImQax\u002BkJA0bUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "15ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json new file mode 100644 index 000000000000..66db3c23c4ee --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -0,0 +1,42 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "EcUb67shmmW/sQZv/dfEehaaOwNstUVn282n2PnQkS8=", + "x-ms-date": "Wed, 09 Mar 2022 09:04:17 GMT" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 09 Mar 2022 09:04:17 GMT", + "MS-CV": "j4Xs6eoC2kaUv2yLIi1F8w.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0kW0oYgAAAAAD\u002BDSeu\u002BgQQLeefhIl/hHPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "365ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-03-09T10:15:53.5816183\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json new file mode 100644 index 000000000000..f718de5ce745 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -0,0 +1,43 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "57hhXfjFJ4reUHSXuwlHWm62DSRXMo4VffVX4YLJJbc=", + "x-ms-date": "Wed, 09 Mar 2022 09:04:17 GMT" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 401, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 09 Mar 2022 09:04:17 GMT", + "MS-CV": "jfYDzapm90SA0STS\u002BAuZ7g.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0kW0oYgAAAACiUjowviZ7QqIB63gtJoMqUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "20ms" + }, + "ResponseBody": { + "error": { + "code": "InvalidAccessToken", + "message": "Provided access token is not valid." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json new file mode 100644 index 000000000000..4942b462ee01 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -0,0 +1,43 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "H\u002BnYqfONMXXInH6CfRlv35rj5DRwtW5rY88/o2Yx4GE=", + "x-ms-date": "Wed, 09 Mar 2022 09:04:18 GMT" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 401, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 09 Mar 2022 09:04:17 GMT", + "MS-CV": "iL9l1bzhrku1xTwDx89MMg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0km0oYgAAAACfgO0JhiJBRYdc37XzySYSUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "32ms" + }, + "ResponseBody": { + "error": { + "code": "InvalidAccessToken", + "message": "Provided access token is not valid." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json new file mode 100644 index 000000000000..fa1f107df3aa --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -0,0 +1,43 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized", + "x-ms-content-sha256": "gtdDY7ecMyK\u002BwVq9aXDSvKuc5BiebgjLBB3AqaEwP0k=", + "x-ms-date": "Wed, 09 Mar 2022 09:04:17 GMT" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 401, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 09 Mar 2022 09:04:17 GMT", + "MS-CV": "7uhBudficE2e\u002BRDEi2G8sg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0kW0oYgAAAAAH/7q0BRuRRo0tjusnmXkZUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "18ms" + }, + "ResponseBody": { + "error": { + "code": "InvalidAccessToken", + "message": "Provided access token is not valid." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json new file mode 100644 index 000000000000..b8d907c4c344 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -0,0 +1,40 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 200, + "ResponseHeaders": { + "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", + "Content-Length": "69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 09 Mar 2022 09:04:14 GMT", + "MS-CV": "eI88iJjyQES3r9eDVLf1qg.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "X-Azure-Ref": "0jG0oYgAAAAA6Y/eWxEOfRbjqyXnFMo1eUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "1644ms" + }, + "ResponseBody": { + "token": "sanitized", + "expiresOn": "2022-03-09T10:26:38.6072292\u002B00:00" + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json new file mode 100644 index 000000000000..78eef9dcbbdd --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -0,0 +1,41 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 401, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 09 Mar 2022 09:04:14 GMT", + "MS-CV": "khUlFcmhUU225AwmcW4nFQ.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0j20oYgAAAADfB3AbSyllR5P9e/VHDkhQUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "95ms" + }, + "ResponseBody": { + "error": { + "code": "InvalidAccessToken", + "message": "Provided access token is not valid." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json new file mode 100644 index 000000000000..7b896955c546 --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -0,0 +1,41 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 401, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 09 Mar 2022 09:04:16 GMT", + "MS-CV": "W0WnQP8j6UeMoiskq93MoA.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0kG0oYgAAAABOjH0FWuj1SoEpFeIpE4SFUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "29ms" + }, + "ResponseBody": { + "error": { + "code": "InvalidAccessToken", + "message": "Provided access token is not valid." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json new file mode 100644 index 000000000000..f432365e5b8b --- /dev/null +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -0,0 +1,41 @@ +{ + "Entries": [ + { + "RequestUri": "https://endpoint/teamsUser/:exchangeAccessToken?api-version=2021-10-31-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip,deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "Content-Length": "21", + "Content-Type": "application/json", + "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "x-ms-client-request-id": "sanitized" + }, + "RequestBody": { + "token": "sanitized" + }, + "StatusCode": 401, + "ResponseHeaders": { + "Content-Type": "application/json", + "Date": "Wed, 09 Mar 2022 09:04:15 GMT", + "MS-CV": "uNmDvdCB\u002BkGfTFfZ2cY7\u002Bw.0", + "Request-Context": "appId=", + "Strict-Transport-Security": "max-age=2592000", + "Transfer-Encoding": "chunked", + "X-Azure-Ref": "0j20oYgAAAACd9XeeCIWRRrHN/caoaygWUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Cache": "CONFIG_NOCACHE", + "x-ms-client-request-id": "sanitized", + "X-Processing-Time": "14ms" + }, + "ResponseBody": { + "error": { + "code": "InvalidAccessToken", + "message": "Provided access token is not valid." + } + } + } + ], + "Variables": {} +} diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index 3c7689dc73ac..624c94f44963 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -1,7 +1,13 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -import { Recorder, SanitizerOptions, env, isPlaybackMode } from "@azure-tools/test-recorder"; +import { + Recorder, + SanitizerOptions, + env, + isPlaybackMode, + RecorderStartOptions, +} from "@azure-tools/test-recorder"; import { CommunicationIdentityClient } from "../../../src"; import { Context } from "mocha"; @@ -14,9 +20,10 @@ export interface RecordedClient { recorder: Recorder; } -const replaceableVariables: { [k: string]: string } = { +const envSetupForPlayback: { [k: string]: string } = { + COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING: "endpoint=https://endpoint/;accesskey=banana", INCLUDE_PHONENUMBER_LIVE_TESTS: "false", - COMMUNICATION_ENDPOINT: "https://joheredicoms.communication.azure.com/", + COMMUNICATION_ENDPOINT: "https://endpoint/", AZURE_CLIENT_ID: "SomeClientId", AZURE_CLIENT_SECRET: "azure_client_secret", AZURE_TENANT_ID: "SomeTenantId", @@ -33,14 +40,15 @@ const sanitizerOptions: SanitizerOptions = { connectionStringSanitizers: [ { actualConnString: env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING, - fakeConnString: "endpoint=https://joheredicoms.communication.azure.com/;accesskey=banana", + fakeConnString: envSetupForPlayback["COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING"], }, ], + removeHeaderSanitizer: { headersForRemoval: ["Accept-Language"] }, uriSanitizers: [ { regex: true, - target: `https:\/\/(?.*)\.communication\.azure\.com\/(.*)`, - value: "joheredicoms", + target: `/(https:\/\/)(?[^/',]*)/`, + value: "endpoint", groupForReplace: "host_name", }, { @@ -64,12 +72,16 @@ const sanitizerOptions: SanitizerOptions = { ], }; +const recorderOptions: RecorderStartOptions = { + envSetupForPlayback, + sanitizerOptions: sanitizerOptions, +}; + export async function createRecordedCommunicationIdentityClient( context: Context ): Promise> { const recorder = new Recorder(context.currentTest); - await recorder.start({ envSetupForPlayback: replaceableVariables }); - recorder.addSanitizers(sanitizerOptions); + await recorder.start(recorderOptions); const client = new CommunicationIdentityClient( env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING ?? "", @@ -87,8 +99,7 @@ export async function createRecordedCommunicationIdentityClientWithToken( context: Context ): Promise> { const recorder = new Recorder(context.currentTest); - await recorder.start({ envSetupForPlayback: replaceableVariables }); - recorder.addSanitizers(sanitizerOptions); + await recorder.start(recorderOptions); let credential: TokenCredential; const endpoint = parseConnectionString( @@ -100,18 +111,10 @@ export async function createRecordedCommunicationIdentityClientWithToken( return { token: "testToken", expiresOnTimestamp: 11111 }; }, }; - - const client = new CommunicationIdentityClient( - endpoint, - credential, - recorder.configureClientOptions({}) - ); - - // casting is a workaround to enable min-max testing - return { client, recorder }; + } else { + credential = createTestCredential(); } - credential = createTestCredential(); const client = new CommunicationIdentityClient( endpoint, credential, From a8d185c097308b65ad0a9597b7f1f2362ca2af3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 9 Mar 2022 13:42:46 +0100 Subject: [PATCH 27/33] exclude headers from comparison --- ...recording_successfully_creates_a_user.json | 9 ++++--- ..._and_gets_a_token_in_a_single_request.json | 13 +++++----- ...successfully_creates_a_user_and_token.json | 13 +++++----- ...recording_successfully_deletes_a_user.json | 22 +++++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 24 +++++++++-------- ..._gets_a_token_for_a_user_single_scope.json | 24 +++++++++-------- ...ully_revokes_tokens_issued_for_a_user.json | 26 ++++++++++--------- ...recording_successfully_creates_a_user.json | 9 ++++--- ..._and_gets_a_token_in_a_single_request.json | 11 ++++---- ...successfully_creates_a_user_and_token.json | 11 ++++---- ...recording_successfully_deletes_a_user.json | 18 +++++++------ ...ts_a_token_for_a_user_multiple_scopes.json | 20 +++++++------- ..._gets_a_token_for_a_user_single_scope.json | 20 +++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 20 +++++++------- ..._attempting_to_delete_an_invalid_user.json | 9 ++++--- ..._to_issue_a_token_for_an_invalid_user.json | 9 ++++--- ...g_to_issue_a_token_without_any_scopes.json | 18 +++++++------ ...o_revoke_a_token_from_an_invalid_user.json | 9 ++++--- ..._attempting_to_delete_an_invalid_user.json | 11 ++++---- ..._to_issue_a_token_for_an_invalid_user.json | 11 ++++---- ...g_to_issue_a_token_without_any_scopes.json | 22 +++++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 11 ++++---- ...recording_successfully_creates_a_user.json | 10 +++---- ..._and_gets_a_token_in_a_single_request.json | 12 ++++----- ...successfully_creates_a_user_and_token.json | 14 +++++----- ...recording_successfully_deletes_a_user.json | 20 +++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 22 ++++++++-------- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++++++-------- ...ully_revokes_tokens_issued_for_a_user.json | 22 ++++++++-------- ...recording_successfully_creates_a_user.json | 8 +++--- ..._and_gets_a_token_in_a_single_request.json | 10 +++---- ...successfully_creates_a_user_and_token.json | 10 +++---- ...recording_successfully_deletes_a_user.json | 16 ++++++------ ...ts_a_token_for_a_user_multiple_scopes.json | 18 ++++++------- ..._gets_a_token_for_a_user_single_scope.json | 20 +++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 18 ++++++------- ..._attempting_to_delete_an_invalid_user.json | 8 +++--- ..._to_issue_a_token_for_an_invalid_user.json | 8 +++--- ...g_to_issue_a_token_without_any_scopes.json | 16 ++++++------ ...o_revoke_a_token_from_an_invalid_user.json | 8 +++--- ..._attempting_to_delete_an_invalid_user.json | 10 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 10 +++---- ...g_to_issue_a_token_without_any_scopes.json | 20 +++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 10 +++---- ...oken_for_a_communication_access_token.json | 14 +++++----- ...xchange_an_empty_teams_user_aad_token.json | 10 +++---- ...hange_an_expired_teams_user_aad_token.json | 10 +++---- ...hange_an_invalid_teams_user_aad_token.json | 10 +++---- ...oken_for_a_communication_access_token.json | 10 +++---- ...xchange_an_empty_teams_user_aad_token.json | 8 +++--- ...hange_an_expired_teams_user_aad_token.json | 8 +++--- ...hange_an_invalid_teams_user_aad_token.json | 8 +++--- .../test/public/utils/recordedClient.ts | 24 +++++++++++------ 53 files changed, 397 insertions(+), 357 deletions(-) diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index 1b577d46a589..bc4e46648a79 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:29 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:05 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -29,11 +30,11 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:29 GMT", - "MS-CV": "/V\u002BKh\u002B0Dh0WMND9NWFkUEg.0", + "Date": "Wed, 09 Mar 2022 12:38:05 GMT", + "MS-CV": "76XLGCQbc0\u002BJ4PbohZepcQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nW0oYgAAAADW0HUzOL8DSo4y0RHHDJcBUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rZ8oYgAAAAAYTOpp14kiTpgucFaH99OmUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "27ms" diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index e2740ce429ef..bc45bda424cd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:07 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -34,14 +35,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:30 GMT", - "MS-CV": "cmMSl9SbxkauzMXC7blxFg.0", + "Date": "Wed, 09 Mar 2022 12:38:06 GMT", + "MS-CV": "gzGRTnGhokSZxHQNIq768A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0n20oYgAAAAD1GpnbdtJ9TaCiSF5HA1DpUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rp8oYgAAAACm9whCaOXZRaJ6IV50ADMAUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "53ms" + "X-Processing-Time": "47ms" }, "ResponseBody": { "identity": { @@ -49,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:31.1488492\u002B00:00" + "expiresOn": "2022-03-10T12:38:06.8943221\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 8238db1e32f2..976d520b1228 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "34", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:29 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:05 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -33,14 +34,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:29 GMT", - "MS-CV": "dhlXFP52W0KB3OZMBoNuVg.0", + "Date": "Wed, 09 Mar 2022 12:38:05 GMT", + "MS-CV": "/D/FnTObeEumOYJO1rG7AA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nW0oYgAAAAASQjpsqz8DT65OY866n73RUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rZ8oYgAAAADzRMXjE1C8QpDcbyfeQ9ysUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "43ms" + "X-Processing-Time": "52ms" }, "ResponseBody": { "identity": { @@ -48,7 +49,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:29.9349256\u002B00:00" + "expiresOn": "2022-03-10T12:38:05.6390211\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 9e4ffd2f6ff8..987ad0e6ac23 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -29,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:31 GMT", - "MS-CV": "7r0u1zm5GkKZuk\u002B3h/V1LQ.0", + "Date": "Wed, 09 Mar 2022 12:38:07 GMT", + "MS-CV": "k7xYn0iGoUKjx5W\u002Br2fLzg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0n20oYgAAAACWf4GglXqDTqdWwfoBsPtRUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0r58oYgAAAACj9Vc0wa6JRLW28bdAcxcwUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "36ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "identity": { @@ -50,6 +51,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -62,21 +64,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:31 GMT", - "MS-CV": "HkW\u002Bp7PRfkuAqRfparFfng.0", + "Date": "Wed, 09 Mar 2022 12:38:08 GMT", + "MS-CV": "hopKP9Sxl0Ch5RECO7l2Xw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oG0oYgAAAAD7IeDpANGnQ7ACJmR6oIbnUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0r58oYgAAAABhxT6wuRxuSr1PIqnsowG1UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "149ms" + "X-Processing-Time": "93ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index a502e2869ef1..4261afd32817 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -29,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:30 GMT", - "MS-CV": "V1lGE\u002BGPgku0a3b9pYjBkA.0", + "Date": "Wed, 09 Mar 2022 12:38:06 GMT", + "MS-CV": "2LM8hydzrUuP6g6dfSh8PQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nm0oYgAAAADOGhZYV9/FTbyT/XVyVDuaUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rp8oYgAAAAB1xqYanc88TIN2yS5oJfjeUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "63ms" }, "ResponseBody": { "identity": { @@ -50,6 +51,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -64,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -78,18 +80,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:30 GMT", - "MS-CV": "yuk2yu3e6kaevj5eRrbHYg.0", + "Date": "Wed, 09 Mar 2022 12:38:06 GMT", + "MS-CV": "8v\u002BIzgn9PECAKRbsrjv43g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nm0oYgAAAABh3QSEbZGeTIGay9hyAJvnUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rp8oYgAAAACN4AErtbJWT7WanVvVEukbUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "35ms" + "X-Processing-Time": "40ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:30.8763194\u002B00:00" + "expiresOn": "2022-03-10T12:38:06.6272908\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 2768fa428096..1f7b25a29dd5 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -29,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:29 GMT", - "MS-CV": "drEnHfH9BkuDQtaCmEEPMg.0", + "Date": "Wed, 09 Mar 2022 12:38:05 GMT", + "MS-CV": "ehYsQoGIk0aLSRBRcwgQHA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nm0oYgAAAAB0z4cdIFqESZVEkI\u002BmKeBfUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rZ8oYgAAAACEvUIJCqt7TKVccJ/4oHunUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -50,6 +51,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "19", @@ -64,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:30 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -77,18 +79,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:29 GMT", - "MS-CV": "D\u002B5n8D6pVEaOBfKSSz\u002BgIA.0", + "Date": "Wed, 09 Mar 2022 12:38:06 GMT", + "MS-CV": "bA6iQefjqUmC7iZKJQTwSQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nm0oYgAAAAApivePt/\u002B4SJyUpORKFUGgUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rZ8oYgAAAAAHI47MvHNBTpYcr/k0HjYfUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "35ms" + "X-Processing-Time": "38ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:30.4055673\u002B00:00" + "expiresOn": "2022-03-10T12:38:06.1093124\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 365d51e8a3b3..00bd41a0221c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:07 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -32,16 +33,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "114", + "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:30 GMT", - "MS-CV": "Dlb3jamOU0ek5YurT70LOQ.0", + "Date": "Wed, 09 Mar 2022 12:38:07 GMT", + "MS-CV": "zK6C\u002BNppEkKX/Zvi5FqlQw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0n20oYgAAAACuenDDNI52T5X5mhjKpnZVUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0r58oYgAAAADgnow9D8wXT67rC4bAsq7TUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "44ms" + "X-Processing-Time": "52ms" }, "ResponseBody": { "identity": { @@ -49,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:31.413281\u002B00:00" + "expiresOn": "2022-03-10T12:38:07.1772679\u002B00:00" } } }, @@ -59,6 +60,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -72,21 +74,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:31 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:07 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:31 GMT", - "MS-CV": "IGsPcaKSaUiLCH4SxIdFfA.0", + "Date": "Wed, 09 Mar 2022 12:38:07 GMT", + "MS-CV": "R/THyTahEka8l2wQQdCHBw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0n20oYgAAAABjB3QWKltaSa60bididGa3UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0r58oYgAAAACLghzFK7QRQJnNgjr/Fs1GUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "103ms" + "X-Processing-Time": "97ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 9f9f72f135c3..e164081ea300 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -27,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:23 GMT", - "MS-CV": "oEYX1cgLVUqvHlaB4Zgn8w.0", + "Date": "Wed, 09 Mar 2022 12:37:59 GMT", + "MS-CV": "IVDjzkGaYE2YI/pMpX6ksg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0l20oYgAAAADguwzdQi\u002BBQLnGyOuB7PP9UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0p58oYgAAAAAt0IKmQRzrT7UFDHfFmtwhUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index a31dc0021583..8d18118e8ec3 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -32,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:25 GMT", - "MS-CV": "VsZp6SRLm0y0zdd2UnjnPw.0", + "Date": "Wed, 09 Mar 2022 12:38:01 GMT", + "MS-CV": "oqcUFq5e50qO3gwG70tOrw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mW0oYgAAAABdLRUSo9\u002BHSYODhT3TlLRPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qZ8oYgAAAABkP3R/CuvgQ5hwVcMM4okaUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "42ms" }, "ResponseBody": { "identity": { @@ -47,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:25.7676156\u002B00:00" + "expiresOn": "2022-03-10T12:38:01.4640099\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index a669c6c9fee4..78ef8b3f5a12 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "34", @@ -31,14 +32,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:23 GMT", - "MS-CV": "0GMf84wgC0iBFakRP8mddw.0", + "Date": "Wed, 09 Mar 2022 12:37:59 GMT", + "MS-CV": "c\u002BRDfdo7f0OuTwyg9CIp/A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0l20oYgAAAAC0VWznhmAcSIAGruizixc0UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0p58oYgAAAAD1uUpcyDMwRpVZuX4pLMRYUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "38ms" + "X-Processing-Time": "49ms" }, "ResponseBody": { "identity": { @@ -46,7 +47,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:23.9665839\u002B00:00" + "expiresOn": "2022-03-10T12:37:59.6063713\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 4fb580d34194..c0602f40fc3a 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -27,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:26 GMT", - "MS-CV": "hbJoNc3kr0uZW1vCLuKyDA.0", + "Date": "Wed, 09 Mar 2022 12:38:02 GMT", + "MS-CV": "fs3R1BLKfEefBtq5Z9jYjA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0m20oYgAAAACEHMDzsuEmQZYcJZ0OCWcvUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qp8oYgAAAAAaxq4ydrOYQoIIXn/aBswiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { @@ -48,6 +49,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -65,14 +67,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:27 GMT", - "MS-CV": "4d\u002Be/K0vwkqwvGVHI1S8jA.0", + "Date": "Wed, 09 Mar 2022 12:38:03 GMT", + "MS-CV": "1RID86lBX0e9wwkFhuTQKw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0m20oYgAAAAB8VwLnPLX8SI2OrQPwOFlHUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qp8oYgAAAADI0wKVjtP8QpSOqDSmXJeCUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "140ms" + "X-Processing-Time": "139ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 354f93b69281..861dc3667120 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -27,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:24 GMT", - "MS-CV": "a4GeAaSKG0i6wBKx/8Z4gA.0", + "Date": "Wed, 09 Mar 2022 12:38:00 GMT", + "MS-CV": "63N2/kriCUWgmZtB6h5P7Q.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mG0oYgAAAABK9H43ZpFIQbUcaByIAQizUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qJ8oYgAAAAAXL/4e3\u002BE7T62iOgLYjuYiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "32ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { @@ -48,6 +49,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -74,18 +76,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:24 GMT", - "MS-CV": "x0D1gd9g/0e5MkNra9cPFw.0", + "Date": "Wed, 09 Mar 2022 12:38:00 GMT", + "MS-CV": "goDlroRhL0KCIBxjUcOLJw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mW0oYgAAAABl6wLYcKl2QpsaM9FSiSC4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qJ8oYgAAAAAgBIFfTu5AQIEdWgal/RTGUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:25.3043794\u002B00:00" + "expiresOn": "2022-03-10T12:38:00.9676159\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 4e06daa07986..734970dd166a 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -27,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:23 GMT", - "MS-CV": "OH0SujAsFUWJAtpqJpet0g.0", + "Date": "Wed, 09 Mar 2022 12:38:00 GMT", + "MS-CV": "o1Tzqt9XCEinmKXopCzB4A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mG0oYgAAAAA0PAKKzFVJTI52LxnWWqxFUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0p58oYgAAAACFFU9eHVNeT4jjjh/sQI0WUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "identity": { @@ -48,6 +49,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "19", @@ -73,18 +75,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:24 GMT", - "MS-CV": "cAeR7YUzhku4d08uQSppEg.0", + "Date": "Wed, 09 Mar 2022 12:38:00 GMT", + "MS-CV": "HUsSnDafMEum3kpfXWRV0A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mG0oYgAAAACU79XvUHFnQpj6BUp4hAjiUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qJ8oYgAAAAC5Od3kYk2ZSYYgkvceevppUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:24.6404957\u002B00:00" + "expiresOn": "2022-03-10T12:38:00.3041354\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index 51d6627234da..f669a5ba2dbc 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "41", @@ -32,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:25 GMT", - "MS-CV": "2yMZnsAJ3ESXxJcH8htURQ.0", + "Date": "Wed, 09 Mar 2022 12:38:01 GMT", + "MS-CV": "N0U9\u002BUPBRkq0Cf58wyrtoA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mm0oYgAAAAD3SzTf5MkWSLCjXCsXfv6nUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qZ8oYgAAAABZzA0PE5G2QJevaCzHDMlAUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "37ms" + "X-Processing-Time": "35ms" }, "ResponseBody": { "identity": { @@ -47,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:26.2083729\u002B00:00" + "expiresOn": "2022-03-10T12:38:01.9379007\u002B00:00" } } }, @@ -57,6 +58,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -75,14 +77,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:26 GMT", - "MS-CV": "xGL6LTS6gk\u002Bv3H6DDAhT3w.0", + "Date": "Wed, 09 Mar 2022 12:38:02 GMT", + "MS-CV": "vBoGOmIL/0eY8yyj3meByg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mm0oYgAAAAA1TgqZUsM2TLUbiN1M7LlwUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qp8oYgAAAAABx\u002BLTD8CPTJBhnp6pMIoFUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "239ms" + "X-Processing-Time": "121ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index d24c7406ac4d..41ef993054b4 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -24,15 +25,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:28 GMT", - "MS-CV": "6tgakFfgf0GrhFGRoE0SAw.0", + "Date": "Wed, 09 Mar 2022 12:38:05 GMT", + "MS-CV": "YaGu1xMWLEWEBP/4bMdhaQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0nW0oYgAAAABj2cXh\u002BvVdTbeiHhZXzqqJUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rJ8oYgAAAABdMXcfyhCeSrOWHzI3j\u002B0FUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index f5971e330313..77afb9b18c2e 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -31,15 +32,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:28 GMT", - "MS-CV": "Sew4ZUyiA0uxIGhYNrBo\u002BQ.0", + "Date": "Wed, 09 Mar 2022 12:38:04 GMT", + "MS-CV": "eckPsZYaUUCic0MqZCd7kQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0nG0oYgAAAAANztydRLUjQYArHarTROjKUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rJ8oYgAAAAA7LXoNGK5KQLOIDnZKqu4aUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "15ms" + "X-Processing-Time": "14ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 0e15e202bdc1..ea484bda4216 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -27,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:27 GMT", - "MS-CV": "tTqtxNZkFU6eunzDl\u002BqEvQ.0", + "Date": "Wed, 09 Mar 2022 12:38:03 GMT", + "MS-CV": "YS4v1jMQ8Ua6qJQV0chymA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0m20oYgAAAAC3SMPkmFnfTJ4Wcq/xej19UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0q58oYgAAAAAAmFEVI5FpS5h8SGPBlo9aUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -48,6 +49,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "13", @@ -70,15 +72,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:27 GMT", - "MS-CV": "bQzrObkeaU6rYtmU\u002BLkWbA.0", + "Date": "Wed, 09 Mar 2022 12:38:03 GMT", + "MS-CV": "HVwJrC4tmka/DV048fvskA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0m20oYgAAAACZEg\u002BYE/ZTQbjqfuRhEibaUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0q58oYgAAAABl2WOEqxjHQKuCZbVmNdooUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "15ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index d3e94f7c21ce..55cd370b53a2 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -25,15 +26,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:28 GMT", - "MS-CV": "gQP0TmRc3UyJOAJhsvFhlg.0", + "Date": "Wed, 09 Mar 2022 12:38:04 GMT", + "MS-CV": "GnI0Stv8FE2//iDDQotjJw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0nG0oYgAAAABIxE\u002Bu\u002BpDdRLjqbMr1axdhUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rJ8oYgAAAABMRSav77uwTpX1LYu7124lUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "14ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 51e34dcf0cf4..68c524325932 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Referer": "http://localhost:9876/", @@ -18,7 +19,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:33 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:09 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -26,15 +27,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:33 GMT", - "MS-CV": "Zs3xvgFxyEOV3PajzAQn/g.0", + "Date": "Wed, 09 Mar 2022 12:38:09 GMT", + "MS-CV": "rVrJr1OXI0eOK0/s\u002Bd\u002B6CA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oW0oYgAAAAAoMSa7gTusTrpwPjpz74XZUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sZ8oYgAAAADGUm666gMMRJp7U3lKIF8YUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 86085c781679..0458f0ee451f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "26", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:09 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -33,15 +34,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:32 GMT", - "MS-CV": "ScpjbGkeXkmnVpGvJDus8g.0", + "Date": "Wed, 09 Mar 2022 12:38:08 GMT", + "MS-CV": "wm6ve2Zsr02t/2yNdesCZw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oG0oYgAAAACMExWtecqdQ7CUYR2x/5T6UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sJ8oYgAAAACTljynKsJVTrc9sYiTR4CgUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index edb5b17674fd..7b99d7ba6938 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -20,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -29,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:32 GMT", - "MS-CV": "TwnxKn/31kO006QTRH608w.0", + "Date": "Wed, 09 Mar 2022 12:38:08 GMT", + "MS-CV": "mG5r4sljn02Hu847lnz7og.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oG0oYgAAAACHG\u002BUoM7pXQLogtaiLUkUrUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sJ8oYgAAAAC/BLL1mQS7R799GkItQslaUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "identity": { @@ -50,6 +51,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "13", @@ -64,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:32 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -74,15 +76,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:32 GMT", - "MS-CV": "QqUGPLN1VUmZ7pA8sNIWaQ.0", + "Date": "Wed, 09 Mar 2022 12:38:08 GMT", + "MS-CV": "3Em\u002B/mHtNEmt8fUDfoYjFg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oG0oYgAAAADLQq\u002Bwc0WUR4/tTVmLIQIkUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sJ8oYgAAAABilbpaQ90ER6Pph21RRMplUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "21ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index dcbcc36ad68a..58d65a5edfdb 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -6,6 +6,7 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate, br", + "Accept-Language": "cs", "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", @@ -19,7 +20,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:33 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:38:09 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -27,15 +28,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:32 GMT", - "MS-CV": "UnGGJTZOkEiB\u002BMUS8h6AOA.0", + "Date": "Wed, 09 Mar 2022 12:38:08 GMT", + "MS-CV": "SnireRdXC0KdXWkXQuwiVw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oW0oYgAAAADo3Y4\u002Bj36dSrLHzcTsPBwyUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sJ8oYgAAAAD\u002BAghiJVJBQ5x46/XDeubyUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "32ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index a8d5628c1faa..aaa0384a1b04 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:07 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:44 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:07 GMT", - "MS-CV": "8rpvpMhMrUCYofCmjHLJbg.0", + "Date": "Wed, 09 Mar 2022 12:37:44 GMT", + "MS-CV": "\u002B4npNk4PpUyiSVt2IJIXsA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0h20oYgAAAABCDuz\u002Boc2ISaRP3WO49PjtUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0l58oYgAAAADPZHZo1jVCSpiWuQ7i6\u002BTxUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "34ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 1a1df6f1bd5c..68c05d3bc51c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:08 GMT", - "MS-CV": "cKgSbRn6KUGVLaFmj1NRIQ.0", + "Date": "Wed, 09 Mar 2022 12:37:45 GMT", + "MS-CV": "THzcHupV4EOfvZGKRpBesQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0iG0oYgAAAACjQOwtQCgKQ4DZJpkXXPEyUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mZ8oYgAAAAC3JU3qoMDgRae85GzC3c4oUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "49ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:09.0330004\u002B00:00" + "expiresOn": "2022-03-10T12:37:45.4584185\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 6f824649a2b7..fbd2ba87bb6f 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:07 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:44 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -23,16 +23,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "115", + "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:07 GMT", - "MS-CV": "AG0j2J3dsEuMviDcwqmNmQ.0", + "Date": "Wed, 09 Mar 2022 12:37:44 GMT", + "MS-CV": "yRmyBl\u002BCEEWMw47WQw4qXg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0h20oYgAAAADzNU5zIu\u002B5SYBgPKiljnqjUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mJ8oYgAAAADUuAhQdfekTYGDP35mneKwUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "50ms" + "X-Processing-Time": "43ms" }, "ResponseBody": { "identity": { @@ -40,7 +40,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:07.8073009\u002B00:00" + "expiresOn": "2022-03-10T12:37:44.217332\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index e31f9f426e94..678cb4fb78ad 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:10 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:10 GMT", - "MS-CV": "k/49YiCsGEKGQH75HcyMfQ.0", + "Date": "Wed, 09 Mar 2022 12:37:46 GMT", + "MS-CV": "UUXLZ9tbZE21uAoclEOvdA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0im0oYgAAAAACieNIdHzDRZUUrsGK/7oRUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mp8oYgAAAABEM6ubi02FSqp1AubYOVYBUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -47,20 +47,20 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:10 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:10 GMT", - "MS-CV": "ABITKJPxyU6lP7BGxC8mFw.0", + "Date": "Wed, 09 Mar 2022 12:37:46 GMT", + "MS-CV": "p07Z87Y9hU\u002BEGTSn5I\u002BWTQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0im0oYgAAAAB\u002Bn5Luokd9TpFBC433oXQbUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mp8oYgAAAAAvbyM9dR1aTYvNk4Ono6L7UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "145ms" + "X-Processing-Time": "97ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 5495c82ada66..fa7688f25f3a 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:08 GMT", - "MS-CV": "ZUDK0YHB8UumU\u002BCXVFpObg.0", + "Date": "Wed, 09 Mar 2022 12:37:45 GMT", + "MS-CV": "ZHT7bPsKckqCiRPtnu7vkQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0iG0oYgAAAAAeZEkg96wbTr9xYFoWhlKsUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mJ8oYgAAAABp9\u002BqLlv6YQ7Ku8DVUAyjgUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "44ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" }, "RequestBody": { "scopes": [ @@ -62,18 +62,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:08 GMT", - "MS-CV": "Y9xy9cE2xkScJkyhtaQnQg.0", + "Date": "Wed, 09 Mar 2022 12:37:45 GMT", + "MS-CV": "/AYMWGjmjkWO7mCbIZqJuA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0iG0oYgAAAADHK4xQMaW\u002BR4196dZ1AdsPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mZ8oYgAAAADGuxDI1AniQrcO6/QQrU4pUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "42ms" + "X-Processing-Time": "48ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:08.7612825\u002B00:00" + "expiresOn": "2022-03-10T12:37:45.2003896\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index a264cdaf6428..129e1e8980a5 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:07 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:44 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:07 GMT", - "MS-CV": "Xa5KMlsqcUm\u002BQa5MnoNzaQ.0", + "Date": "Wed, 09 Mar 2022 12:37:44 GMT", + "MS-CV": "ySKhek7B80G9rO8RVl7JYQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0h20oYgAAAAAoKyoj\u002BCwfQK2rgEV1YK35UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mJ8oYgAAAACWUx0EhkUOTbwKBf7A1OnqUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:08 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" }, "RequestBody": { "scopes": [ @@ -61,18 +61,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:07 GMT", - "MS-CV": "x\u002BZR9YP3OEqiCNvbaLVLFw.0", + "Date": "Wed, 09 Mar 2022 12:37:44 GMT", + "MS-CV": "2pQ\u002BaOqBp0uHqyHVMhMSKA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0iG0oYgAAAADmZet3wyg\u002BRaZGj0qubGkoUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mJ8oYgAAAABY2jL0BVTqSJegaQWw5K0/UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "61ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:08.2796603\u002B00:00" + "expiresOn": "2022-03-10T12:37:44.7143785\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 502cf92a58e7..679923b9b36e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:09 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:08 GMT", - "MS-CV": "Cy5Hnl4cOUWXwDJDgMwXLw.0", + "Date": "Wed, 09 Mar 2022 12:37:45 GMT", + "MS-CV": "ZGKHrw14iE2KnF67rpu3CA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0iW0oYgAAAADyOtJgbVD7SKmV6tm24jLnUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mZ8oYgAAAACxiOqlQRHSQZaGuCBFn/kEUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "56ms" + "X-Processing-Time": "44ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:09.3039299\u002B00:00" + "expiresOn": "2022-03-10T12:37:45.7189227\u002B00:00" } } }, @@ -57,20 +57,20 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:09 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:09 GMT", - "MS-CV": "H8Jj\u002BN3v9Ea//nWzN5f6GQ.0", + "Date": "Wed, 09 Mar 2022 12:37:46 GMT", + "MS-CV": "Tbf/2PTyyk\u002BQMRgX91uj2Q.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0iW0oYgAAAACDUxmCfuXDSJhGmYzqsJ61UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mZ8oYgAAAAAzr/XQiPTeQZmdet7J\u002BkxRUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "774ms" + "X-Processing-Time": "96ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 70304f5b0b56..7f6a9184c81e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:03:59 GMT", - "MS-CV": "9U1DjL8elEKL\u002BKnmnb\u002BbZw.0", + "Date": "Wed, 09 Mar 2022 12:37:35 GMT", + "MS-CV": "WI4z2oqS70Cv9jAsK8EcuQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0f20oYgAAAACHaPiz4Q/2SISHIq\u002BaMS0fUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0jp8oYgAAAACYax\u002BMavDdTJxw\u002BU5sqoYWUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "32ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index dee718c3dab2..9608d4b53793 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:02 GMT", - "MS-CV": "GTJAnOV31UOkH3D\u002BoFh8zg.0", + "Date": "Wed, 09 Mar 2022 12:37:38 GMT", + "MS-CV": "IcsTn5v5VE\u002BlxDUm8tZ6Fg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0gm0oYgAAAAD0l6K3d/sNQ7m8p2JPwuWwUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0kp8oYgAAAACHnFX149dXSIPOKf6P1H0QUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "35ms" + "X-Processing-Time": "42ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:02.3671163\u002B00:00" + "expiresOn": "2022-03-10T12:37:38.7372321\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index 23df6812349d..f2ca70c44f5b 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -23,14 +23,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:03:59 GMT", - "MS-CV": "Iq/IEgxrwU\u002BHxafgbRjoYg.0", + "Date": "Wed, 09 Mar 2022 12:37:35 GMT", + "MS-CV": "hK\u002B8/DUbV0KFfb5wyx8SAg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0gG0oYgAAAACaInMzwsuMQYx5g4bNcsE4UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0j58oYgAAAADz\u002BsuFlFXqTITB7wlIDkwyUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "37ms" + "X-Processing-Time": "42ms" }, "ResponseBody": { "identity": { @@ -38,7 +38,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:00.1540045\u002B00:00" + "expiresOn": "2022-03-10T12:37:35.7966233\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 0257042f30bc..d1deb4fbe82c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:03 GMT", - "MS-CV": "Qvut2Q635ECR721wuQoWKQ.0", + "Date": "Wed, 09 Mar 2022 12:37:40 GMT", + "MS-CV": "KFOXTx0dFEK5ZnKfSMXAsg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0hG0oYgAAAADKBSXa3\u002BO9QYdhuEDLpT7dUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0lJ8oYgAAAACdtDTjXbz6SJ8DF/RYl\u002BkgUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { @@ -49,14 +49,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:04 GMT", - "MS-CV": "2qL5a9AxiEOXfczspHcz5g.0", + "Date": "Wed, 09 Mar 2022 12:37:40 GMT", + "MS-CV": "nj3s/KSPbkKTs1yAcYJiAQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0hG0oYgAAAAA555QKDPqZQIShBMGOp6exUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0lJ8oYgAAAACFlOJIDL9YTrpHvrmqWLgYUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "150ms" + "X-Processing-Time": "87ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index b985df2a532e..8ad9a8be32bd 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:01 GMT", - "MS-CV": "14FzQfFGTkKXAeA6Kctg/g.0", + "Date": "Wed, 09 Mar 2022 12:37:37 GMT", + "MS-CV": "yZsG/eMrxkyEbuDwiRL1Cg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0gW0oYgAAAAB/QeTGM/DNQYOXvTlmOvw2UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0kZ8oYgAAAAA04i76QggURadBYLQ7LaR3UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { @@ -58,18 +58,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:01 GMT", - "MS-CV": "Imw9kPCxM0y5Wb3gB8Q0ng.0", + "Date": "Wed, 09 Mar 2022 12:37:38 GMT", + "MS-CV": "/vi7ZiDL50yAgADfoWPAYA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0gW0oYgAAAAD4yM6CK7eXR6BhAuRwYU2RUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0kZ8oYgAAAAAPaujVf7PWQb8b3xQhO8bLUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "32ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:01.7786341\u002B00:00" + "expiresOn": "2022-03-10T12:37:38.0373022\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 97054798bb5b..68ba1850e3b3 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:00 GMT", - "MS-CV": "XgwLE1\u002B0A0yv2wxrF3bmNw.0", + "Date": "Wed, 09 Mar 2022 12:37:36 GMT", + "MS-CV": "Xy\u002BZyOlWykWQAx9lm323FA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0gG0oYgAAAACQXCDXZrLdQop13ANVHYEoUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0kJ8oYgAAAAAPwjFHZlV4RpndEj19Z9U\u002BUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { @@ -55,20 +55,20 @@ "StatusCode": 200, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "68", + "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:00 GMT", - "MS-CV": "NkMrqXpSxECM1k3V/QjONQ.0", + "Date": "Wed, 09 Mar 2022 12:37:36 GMT", + "MS-CV": "AOFPEUrxk0qINhovkXNLGQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0gG0oYgAAAAA75fqWzB/oTIeWOq1Zzqi3UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0kJ8oYgAAAAD2\u002BbSzcaqPTbNjXMG4B8eiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "30ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:00.928184\u002B00:00" + "expiresOn": "2022-03-10T12:37:36.6660975\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index 323356a440ad..eb13c5205731 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:02 GMT", - "MS-CV": "ePQA5vvDEkK7ZlcCExZKUQ.0", + "Date": "Wed, 09 Mar 2022 12:37:39 GMT", + "MS-CV": "uFXo\u002BZ1PcEifmE/Req9IkA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0gm0oYgAAAACwUKJ48zqgQ5DrSmqWZ/7YUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0k58oYgAAAAAAQuGyyQmGSrmsSwO2RES9UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "37ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T09:04:03.0449826\u002B00:00" + "expiresOn": "2022-03-10T12:37:39.4787499\u002B00:00" } } }, @@ -59,14 +59,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 09:04:03 GMT", - "MS-CV": "MvzIalpMPUmrt5Bmg6s4kQ.0", + "Date": "Wed, 09 Mar 2022 12:37:39 GMT", + "MS-CV": "SXfBCNJ2lkOW95wv3oRivQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0g20oYgAAAACMmkTgXufvQJVtXiKE4yEMUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0k58oYgAAAACIzH\u002BAkKqbSJyiG4fAHU1/UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "237ms" + "X-Processing-Time": "102ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 3720ac845922..a8ffc12ab521 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -16,15 +16,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:06 GMT", - "MS-CV": "UgsOFSq43U\u002B9GI4mJFm3sA.0", + "Date": "Wed, 09 Mar 2022 12:37:43 GMT", + "MS-CV": "AawysV0YQ0aCSLoAwY/cPA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0h20oYgAAAAA0dWJgBcYkTLnS5DB0VoZsUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0l58oYgAAAAATDeo8JwVPTI5zapBvlgq2UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "18ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 963e3e5f71f7..540071462e7b 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -23,15 +23,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:05 GMT", - "MS-CV": "zSal\u002B5W910\u002BeYHPkXhdLyg.0", + "Date": "Wed, 09 Mar 2022 12:37:42 GMT", + "MS-CV": "YeXyujbCb0yHcHopZcNovg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0hW0oYgAAAACTHk2VlWgMTqnyhbfzfdYcUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0lp8oYgAAAACb0GXVVawNR5HvwWw83bPyUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "17ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 69b5adf662aa..b483cc861b88 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:04 GMT", - "MS-CV": "e\u002BPnzdl\u002BKkCEhk4Ia4Aivg.0", + "Date": "Wed, 09 Mar 2022 12:37:41 GMT", + "MS-CV": "NQ/j3MiXD0iRD9oYtOukcg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0hW0oYgAAAADrtkVjI7IHSY3nTVfq1KN9UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0lZ8oYgAAAABnLIGeCnTYSbq4ndWDq80mUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { @@ -54,15 +54,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:05 GMT", - "MS-CV": "VjdB88ZSm0eXGne17RC7NA.0", + "Date": "Wed, 09 Mar 2022 12:37:41 GMT", + "MS-CV": "w41d7WvwYECMxS9vqvm3ZA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0hW0oYgAAAACxRQ\u002BaHI/XSIC/w8N/WxQlUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0lZ8oYgAAAACaf5j/chuiTIDkwOWsT7kGUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "39ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 3919223f7e55..6cd4c936cd92 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -17,15 +17,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:06 GMT", - "MS-CV": "f8jY7QQN5EC6JXn5hMf9VQ.0", + "Date": "Wed, 09 Mar 2022 12:37:43 GMT", + "MS-CV": "YnEJZcralkyhki4ykdkOGA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0hm0oYgAAAAC7h5ptmuMTT4wGYz5CZy43UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0lp8oYgAAAAAvKpeCMArSS7\u002B0bHv8xuuQUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 04425918d058..371f66b411b7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -11,22 +11,22 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:48 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:11 GMT", - "MS-CV": "TiB2mnrIh0m5CE7TArZPfA.0", + "Date": "Wed, 09 Mar 2022 12:37:47 GMT", + "MS-CV": "ajnaiVlK60awGuU25NQ95A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0i20oYgAAAADHjVYuRRf0Q4pbkwr0fjodUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0m58oYgAAAADrb/X5hj9MRaz\u002BPp8TUSWMUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index b17d8bf513fc..9a17a184bc37 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" }, "RequestBody": { "scopes": [ @@ -25,15 +25,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:11 GMT", - "MS-CV": "kOQ4rJW9rEaHWi\u002B8R20WMw.0", + "Date": "Wed, 09 Mar 2022 12:37:47 GMT", + "MS-CV": "ukJW7nM2oUCMy6UlLS3O8A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0i20oYgAAAACRRvGSUXO3Sp7ItXkz/aSuUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0m58oYgAAAADU4BiZyRVqSZas6cszs9P2UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 70e05380f535..42e7fcaee024 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:10 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:10 GMT", - "MS-CV": "AikHP7bLYUqlQR6WApENyQ.0", + "Date": "Wed, 09 Mar 2022 12:37:46 GMT", + "MS-CV": "cUGnbrBUpE6\u002ByiZ99\u002B1C2A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0im0oYgAAAADX62dRbE5JQLlLFBBwfbqeUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mp8oYgAAAADEuZVH6USRSIwLEge8FxQ7UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "49ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" }, "RequestBody": { "scopes": [] @@ -58,15 +58,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:10 GMT", - "MS-CV": "xsK\u002BqfgOrE2GmBQiFlW6pw.0", + "Date": "Wed, 09 Mar 2022 12:37:47 GMT", + "MS-CV": "e2cV2dQeX0uKNaP9oobz7g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0i20oYgAAAABT11\u002BGOgC/Ro4z0zjRcGn0UFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0mp8oYgAAAADiY58b9drXQ7P51GpVP\u002BQuUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "20ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index ae76651689ec..a4926f78f3a5 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -12,22 +12,22 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:11 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:11 GMT", - "MS-CV": "1mMymzAs3Uys79dPmS9fDw.0", + "Date": "Wed, 09 Mar 2022 12:37:47 GMT", + "MS-CV": "nlfYd89Wj0ipR7zzynrdBg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0i20oYgAAAADPB/0CaRbISImQax\u002BkJA0bUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0m58oYgAAAABwEz8L56oORpx50qLS0mIsUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "21ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index 66db3c23c4ee..af23537786a8 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -12,8 +12,8 @@ "Content-Type": "application/json", "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", - "x-ms-content-sha256": "EcUb67shmmW/sQZv/dfEehaaOwNstUVn282n2PnQkS8=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:17 GMT" + "x-ms-content-sha256": "P6OiQmRlIv/yN1iNDYAYW2AcYlg0yqou1F\u002BorziuSgg=", + "x-ms-date": "Wed, 09 Mar 2022 12:37:52 GMT" }, "RequestBody": { "token": "sanitized" @@ -23,18 +23,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:17 GMT", - "MS-CV": "j4Xs6eoC2kaUv2yLIi1F8w.0", + "Date": "Wed, 09 Mar 2022 12:37:53 GMT", + "MS-CV": "QAsEIBLJeki/CUeLTOcg\u002BQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0kW0oYgAAAAAD\u002BDSeu\u002BgQQLeefhIl/hHPUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oJ8oYgAAAACVpg2JhZ9ARpzSa89CaLusUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "365ms" + "X-Processing-Time": "1038ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T10:15:53.5816183\u002B00:00" + "expiresOn": "2022-03-09T14:06:26.4468964\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index f718de5ce745..1da43fe50522 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "57hhXfjFJ4reUHSXuwlHWm62DSRXMo4VffVX4YLJJbc=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:17 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:54 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:17 GMT", - "MS-CV": "jfYDzapm90SA0STS\u002BAuZ7g.0", + "Date": "Wed, 09 Mar 2022 12:37:53 GMT", + "MS-CV": "VC5XrVKRwUKXWbtOSsD9qA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0kW0oYgAAAACiUjowviZ7QqIB63gtJoMqUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oZ8oYgAAAAAMGFfqbxZZRp2tUodYRtUiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "20ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index 4942b462ee01..096e4864624b 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "H\u002BnYqfONMXXInH6CfRlv35rj5DRwtW5rY88/o2Yx4GE=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:18 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:54 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:17 GMT", - "MS-CV": "iL9l1bzhrku1xTwDx89MMg.0", + "Date": "Wed, 09 Mar 2022 12:37:54 GMT", + "MS-CV": "ZoVWCiZrmEKPIvCgIe\u002BWZA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0km0oYgAAAACfgO0JhiJBRYdc37XzySYSUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0op8oYgAAAACJ7pdqv/nfSYOeiND\u002BUDdSUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "32ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index fa1f107df3aa..54cecc5645e7 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "gtdDY7ecMyK\u002BwVq9aXDSvKuc5BiebgjLBB3AqaEwP0k=", - "x-ms-date": "Wed, 09 Mar 2022 09:04:17 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:37:54 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:17 GMT", - "MS-CV": "7uhBudficE2e\u002BRDEi2G8sg.0", + "Date": "Wed, 09 Mar 2022 12:37:53 GMT", + "MS-CV": "gx8z09Wwe0ugERIr5HBaYA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0kW0oYgAAAAAH/7q0BRuRRo0tjusnmXkZUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oZ8oYgAAAAAhOnnAv11SRLjoE//annPOUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "18ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index b8d907c4c344..a01ed3f06b01 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -21,18 +21,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 09:04:14 GMT", - "MS-CV": "eI88iJjyQES3r9eDVLf1qg.0", + "Date": "Wed, 09 Mar 2022 12:37:49 GMT", + "MS-CV": "s\u002BVVCtzHiUWYVi3TkZaFSg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0jG0oYgAAAAA6Y/eWxEOfRbjqyXnFMo1eUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0nJ8oYgAAAAAMFc08I3baSZKvORTJCkdsUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "1644ms" + "X-Processing-Time": "790ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T10:26:38.6072292\u002B00:00" + "expiresOn": "2022-03-09T13:59:11.5694829\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index 78eef9dcbbdd..553c62500468 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:14 GMT", - "MS-CV": "khUlFcmhUU225AwmcW4nFQ.0", + "Date": "Wed, 09 Mar 2022 12:37:50 GMT", + "MS-CV": "2awRd0BcAkW48LaAwRlHDA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0j20oYgAAAADfB3AbSyllR5P9e/VHDkhQUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0np8oYgAAAAAaS2B3guTXTqXtNekrI/\u002BeUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "95ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index 7b896955c546..186e3278025c 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:16 GMT", - "MS-CV": "W0WnQP8j6UeMoiskq93MoA.0", + "Date": "Wed, 09 Mar 2022 12:37:51 GMT", + "MS-CV": "\u002BCAORR5ECE6MwzW63\u002BX0\u002Bg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0kG0oYgAAAABOjH0FWuj1SoEpFeIpE4SFUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0n58oYgAAAADAEtZvQzlwQ6tc/jbJmvqUUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index f432365e5b8b..940ca6b5944b 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 09:04:15 GMT", - "MS-CV": "uNmDvdCB\u002BkGfTFfZ2cY7\u002Bw.0", + "Date": "Wed, 09 Mar 2022 12:37:51 GMT", + "MS-CV": "cl\u002BVXLFYYUqKMpC889JKqQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0j20oYgAAAACd9XeeCIWRRrHN/caoaygWUFJHMDFFREdFMDYxMABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0n58oYgAAAADfwZapLcG9QodPQQR64s6kUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "14ms" + "X-Processing-Time": "15ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index 624c94f44963..520feaa9bf06 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -3,14 +3,13 @@ import { Recorder, + RecorderStartOptions, SanitizerOptions, env, isPlaybackMode, - RecorderStartOptions, } from "@azure-tools/test-recorder"; - +import { Context, Test } from "mocha"; import { CommunicationIdentityClient } from "../../../src"; -import { Context } from "mocha"; import { TokenCredential } from "@azure/core-auth"; import { createTestCredential } from "@azure-tools/test-credential"; import { parseConnectionString } from "@azure/communication-common"; @@ -43,7 +42,6 @@ const sanitizerOptions: SanitizerOptions = { fakeConnString: envSetupForPlayback["COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING"], }, ], - removeHeaderSanitizer: { headersForRemoval: ["Accept-Language"] }, uriSanitizers: [ { regex: true, @@ -77,11 +75,22 @@ const recorderOptions: RecorderStartOptions = { sanitizerOptions: sanitizerOptions, }; +export async function createRecorder(context: Test | undefined): Promise { + const recorder = new Recorder(context); + await recorder.start(recorderOptions); + await recorder.setMatcher("CustomDefaultMatcher", { + excludedHeaders: [ + "Accept-Language", // This is env-dependent + "x-ms-content-sha256", // This is dependent on the current datetime + ], + }); + return recorder; +} + export async function createRecordedCommunicationIdentityClient( context: Context ): Promise> { - const recorder = new Recorder(context.currentTest); - await recorder.start(recorderOptions); + const recorder = await createRecorder(context.currentTest); const client = new CommunicationIdentityClient( env.COMMUNICATION_LIVETEST_DYNAMIC_CONNECTION_STRING ?? "", @@ -98,8 +107,7 @@ export async function createRecordedCommunicationIdentityClient( export async function createRecordedCommunicationIdentityClientWithToken( context: Context ): Promise> { - const recorder = new Recorder(context.currentTest); - await recorder.start(recorderOptions); + const recorder = await createRecorder(context.currentTest); let credential: TokenCredential; const endpoint = parseConnectionString( From 482dc50e76097ef5b426ccd1f0d727edd35e8fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 9 Mar 2022 13:58:46 +0100 Subject: [PATCH 28/33] fixed linting issues --- ...recording_successfully_creates_a_user.json | 10 ++++---- ..._and_gets_a_token_in_a_single_request.json | 10 ++++---- ...successfully_creates_a_user_and_token.json | 12 +++++----- ...recording_successfully_deletes_a_user.json | 20 ++++++++-------- ...ts_a_token_for_a_user_multiple_scopes.json | 24 +++++++++---------- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++++++--------- ...ully_revokes_tokens_issued_for_a_user.json | 22 ++++++++--------- ...recording_successfully_creates_a_user.json | 8 +++---- ..._and_gets_a_token_in_a_single_request.json | 10 ++++---- ...successfully_creates_a_user_and_token.json | 10 ++++---- ...recording_successfully_deletes_a_user.json | 16 ++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 18 +++++++------- ..._gets_a_token_for_a_user_single_scope.json | 18 +++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 18 +++++++------- ..._attempting_to_delete_an_invalid_user.json | 8 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 8 +++---- ...g_to_issue_a_token_without_any_scopes.json | 16 ++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 8 +++---- ..._attempting_to_delete_an_invalid_user.json | 10 ++++---- ..._to_issue_a_token_for_an_invalid_user.json | 10 ++++---- ...g_to_issue_a_token_without_any_scopes.json | 20 ++++++++-------- ...o_revoke_a_token_from_an_invalid_user.json | 10 ++++---- ...recording_successfully_creates_a_user.json | 8 +++---- ..._and_gets_a_token_in_a_single_request.json | 12 +++++----- ...successfully_creates_a_user_and_token.json | 14 +++++------ ...recording_successfully_deletes_a_user.json | 20 ++++++++-------- ...ts_a_token_for_a_user_multiple_scopes.json | 22 ++++++++--------- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++++++--------- ...ully_revokes_tokens_issued_for_a_user.json | 24 +++++++++---------- ...recording_successfully_creates_a_user.json | 8 +++---- ..._and_gets_a_token_in_a_single_request.json | 10 ++++---- ...successfully_creates_a_user_and_token.json | 10 ++++---- ...recording_successfully_deletes_a_user.json | 16 ++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 18 +++++++------- ..._gets_a_token_for_a_user_single_scope.json | 18 +++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 18 +++++++------- ..._attempting_to_delete_an_invalid_user.json | 8 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 8 +++---- ...g_to_issue_a_token_without_any_scopes.json | 16 ++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 8 +++---- ..._attempting_to_delete_an_invalid_user.json | 10 ++++---- ..._to_issue_a_token_for_an_invalid_user.json | 10 ++++---- ...g_to_issue_a_token_without_any_scopes.json | 18 +++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 10 ++++---- ...oken_for_a_communication_access_token.json | 14 +++++------ ...xchange_an_empty_teams_user_aad_token.json | 8 +++---- ...hange_an_expired_teams_user_aad_token.json | 8 +++---- ...hange_an_invalid_teams_user_aad_token.json | 10 ++++---- ...oken_for_a_communication_access_token.json | 10 ++++---- ...xchange_an_empty_teams_user_aad_token.json | 8 +++---- ...hange_an_expired_teams_user_aad_token.json | 8 +++---- ...hange_an_invalid_teams_user_aad_token.json | 6 ++--- .../test/public/utils/recordedClient.ts | 16 ++++++------- 53 files changed, 352 insertions(+), 352 deletions(-) diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index bc4e46648a79..1663f4158835 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:05 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:05 GMT", - "MS-CV": "76XLGCQbc0\u002BJ4PbohZepcQ.0", + "Date": "Wed, 09 Mar 2022 12:55:17 GMT", + "MS-CV": "Gs3sQ2ySO0mjT0r\u002BWYzy8Q.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rZ8oYgAAAAAYTOpp14kiTpgucFaH99OmUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0taMoYgAAAADUZl0vLjCxTbqULadM1Q3lUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index bc45bda424cd..af0af3cbf5a0 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:07 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -35,11 +35,11 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:06 GMT", - "MS-CV": "gzGRTnGhokSZxHQNIq768A.0", + "Date": "Wed, 09 Mar 2022 12:55:19 GMT", + "MS-CV": "YNC4QeK\u002BGkeCZGvGVYHb9A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rp8oYgAAAACm9whCaOXZRaJ6IV50ADMAUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0t6MoYgAAAADJJ4S850HmTbKoEqgLgUghUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "47ms" @@ -50,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:06.8943221\u002B00:00" + "expiresOn": "2022-03-10T12:55:19.2028081\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 976d520b1228..6d9e06f5216c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:05 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -34,14 +34,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:05 GMT", - "MS-CV": "/D/FnTObeEumOYJO1rG7AA.0", + "Date": "Wed, 09 Mar 2022 12:55:17 GMT", + "MS-CV": "tbONr1LoTE\u002BBVa1TbWhi4g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rZ8oYgAAAADzRMXjE1C8QpDcbyfeQ9ysUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0taMoYgAAAAAkHDmb\u002BFWZQ54o9Y78psp1UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "52ms" + "X-Processing-Time": "40ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:05.6390211\u002B00:00" + "expiresOn": "2022-03-10T12:55:17.9736123\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 987ad0e6ac23..88a48a2a2671 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:07 GMT", - "MS-CV": "k7xYn0iGoUKjx5W\u002Br2fLzg.0", + "Date": "Wed, 09 Mar 2022 12:55:19 GMT", + "MS-CV": "01kjYZ1x10CBtwZ6Hd5ZuQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0r58oYgAAAACj9Vc0wa6JRLW28bdAcxcwUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0t6MoYgAAAACs/dPpTzRKT4PRxKVbPaqaUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "33ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "identity": { @@ -64,21 +64,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:38:08 GMT", - "MS-CV": "hopKP9Sxl0Ch5RECO7l2Xw.0", + "Date": "Wed, 09 Mar 2022 12:55:20 GMT", + "MS-CV": "mgF4FvSc9EaomacVmnUAFw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0r58oYgAAAABhxT6wuRxuSr1PIqnsowG1UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0uKMoYgAAAAC9a\u002BwcwwiERp8CLjp\u002BVUY\u002BUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "93ms" + "X-Processing-Time": "150ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 4261afd32817..60a351a2dd81 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:06 GMT", - "MS-CV": "2LM8hydzrUuP6g6dfSh8PQ.0", + "Date": "Wed, 09 Mar 2022 12:55:18 GMT", + "MS-CV": "p1SV/K/6f0avgCT/AcluOg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rp8oYgAAAAB1xqYanc88TIN2yS5oJfjeUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0tqMoYgAAAAC4m5QITMr5R5iYmWxQqE8tUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "63ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { @@ -66,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -78,20 +78,20 @@ "StatusCode": 200, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "69", + "Content-Length": "68", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:06 GMT", - "MS-CV": "8v\u002BIzgn9PECAKRbsrjv43g.0", + "Date": "Wed, 09 Mar 2022 12:55:18 GMT", + "MS-CV": "SxSDPJSsB0aXWhR9Xd8/cw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rp8oYgAAAACN4AErtbJWT7WanVvVEukbUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0tqMoYgAAAAAEBGeoYwYiSazDbA8y\u002B8u9UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "40ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:06.6272908\u002B00:00" + "expiresOn": "2022-03-10T12:55:18.931592\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 1f7b25a29dd5..ede9bba97e73 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:05 GMT", - "MS-CV": "ehYsQoGIk0aLSRBRcwgQHA.0", + "Date": "Wed, 09 Mar 2022 12:55:18 GMT", + "MS-CV": "P4j/Vdc5b0K9L8Mu6eV\u002BCg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rZ8oYgAAAACEvUIJCqt7TKVccJ/4oHunUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0tqMoYgAAAACQ8u7\u002BUHLgSpbEwbnLnYMfUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { @@ -66,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:06 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -79,18 +79,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:06 GMT", - "MS-CV": "bA6iQefjqUmC7iZKJQTwSQ.0", + "Date": "Wed, 09 Mar 2022 12:55:18 GMT", + "MS-CV": "T8RBekbyoEmtG4nQwZtJEA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rZ8oYgAAAAAHI47MvHNBTpYcr/k0HjYfUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0tqMoYgAAAABsg1PqCgrBS46d3JivV2X7UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "38ms" + "X-Processing-Time": "43ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:06.1093124\u002B00:00" + "expiresOn": "2022-03-10T12:55:18.4516838\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 00bd41a0221c..2e2662ba7ebd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:07 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -35,14 +35,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:07 GMT", - "MS-CV": "zK6C\u002BNppEkKX/Zvi5FqlQw.0", + "Date": "Wed, 09 Mar 2022 12:55:19 GMT", + "MS-CV": "ev7oBPhlr06QTmyaCVcFfw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0r58oYgAAAADgnow9D8wXT67rC4bAsq7TUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0t6MoYgAAAABhoyJ6qIISSo8/H1If4EPiUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "52ms" + "X-Processing-Time": "47ms" }, "ResponseBody": { "identity": { @@ -50,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:07.1772679\u002B00:00" + "expiresOn": "2022-03-10T12:55:19.4729459\u002B00:00" } } }, @@ -74,21 +74,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:07 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:38:07 GMT", - "MS-CV": "R/THyTahEka8l2wQQdCHBw.0", + "Date": "Wed, 09 Mar 2022 12:55:19 GMT", + "MS-CV": "nL8N98Mo00\u002B/TQeiU89otg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0r58oYgAAAACLghzFK7QRQJnNgjr/Fs1GUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0t6MoYgAAAAAV6\u002BOHRRj5QKZF4oxXnSf9UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "97ms" + "X-Processing-Time": "101ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index e164081ea300..02f4af9f6ef7 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:59 GMT", - "MS-CV": "IVDjzkGaYE2YI/pMpX6ksg.0", + "Date": "Wed, 09 Mar 2022 12:55:11 GMT", + "MS-CV": "xmBqexHFaUCcSqtCTnvASA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0p58oYgAAAAAt0IKmQRzrT7UFDHfFmtwhUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0rqMoYgAAAAD08TJsCMy8RLSI5kYKABKhUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "847ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 8d18118e8ec3..959c4e4d0164 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -33,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:01 GMT", - "MS-CV": "oqcUFq5e50qO3gwG70tOrw.0", + "Date": "Wed, 09 Mar 2022 12:55:13 GMT", + "MS-CV": "zY1ETnjWL0arsALJpUx0Fw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qZ8oYgAAAABkP3R/CuvgQ5hwVcMM4okaUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0saMoYgAAAAC8tJohGqqsQagvaOcXm58hUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "42ms" + "X-Processing-Time": "37ms" }, "ResponseBody": { "identity": { @@ -48,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:01.4640099\u002B00:00" + "expiresOn": "2022-03-10T12:55:13.9074844\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index 78ef8b3f5a12..5d4abf355650 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -32,14 +32,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:59 GMT", - "MS-CV": "c\u002BRDfdo7f0OuTwyg9CIp/A.0", + "Date": "Wed, 09 Mar 2022 12:55:11 GMT", + "MS-CV": "a\u002BvFoidZKkyfYE3\u002BSz4AEA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0p58oYgAAAAD1uUpcyDMwRpVZuX4pLMRYUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0r6MoYgAAAABX8ZjUTnY4T4rGLtu7SJgvUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "49ms" + "X-Processing-Time": "37ms" }, "ResponseBody": { "identity": { @@ -47,7 +47,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:59.6063713\u002B00:00" + "expiresOn": "2022-03-10T12:55:12.0878259\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index c0602f40fc3a..5944dfda083c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:02 GMT", - "MS-CV": "fs3R1BLKfEefBtq5Z9jYjA.0", + "Date": "Wed, 09 Mar 2022 12:55:15 GMT", + "MS-CV": "oWpnLf9vG0yT6ZyjuzbuLA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qp8oYgAAAAAaxq4ydrOYQoIIXn/aBswiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0s6MoYgAAAAD4BJ3TY9TKSZ9GErKlg59kUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { @@ -67,14 +67,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:38:03 GMT", - "MS-CV": "1RID86lBX0e9wwkFhuTQKw.0", + "Date": "Wed, 09 Mar 2022 12:55:15 GMT", + "MS-CV": "suJ9ue2kKEm3k8PcAB2/3Q.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qp8oYgAAAADI0wKVjtP8QpSOqDSmXJeCUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0s6MoYgAAAADPYc\u002BgXI5VSYbmKENG6kN5UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "139ms" + "X-Processing-Time": "141ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 861dc3667120..2dd7a033456b 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:00 GMT", - "MS-CV": "63N2/kriCUWgmZtB6h5P7Q.0", + "Date": "Wed, 09 Mar 2022 12:55:12 GMT", + "MS-CV": "a7hkQVo5zk2IpHpLiZqciw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qJ8oYgAAAAAXL/4e3\u002BE7T62iOgLYjuYiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0saMoYgAAAAA9YcxrQuEEQ4DCM/wk8E0/UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -76,18 +76,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:00 GMT", - "MS-CV": "goDlroRhL0KCIBxjUcOLJw.0", + "Date": "Wed, 09 Mar 2022 12:55:13 GMT", + "MS-CV": "6sa6NkUD7EuMwM5OjwoYig.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qJ8oYgAAAAAgBIFfTu5AQIEdWgal/RTGUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0saMoYgAAAABkmnce9fN0T5230uofARJWUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "34ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:00.9676159\u002B00:00" + "expiresOn": "2022-03-10T12:55:13.3871102\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 734970dd166a..fa454782818c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:00 GMT", - "MS-CV": "o1Tzqt9XCEinmKXopCzB4A.0", + "Date": "Wed, 09 Mar 2022 12:55:12 GMT", + "MS-CV": "waeSOha5lk2NC0MfNKP0Tg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0p58oYgAAAACFFU9eHVNeT4jjjh/sQI0WUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sKMoYgAAAABm66tAZ/W0SpYE0m5eUsQeUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "33ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { @@ -75,18 +75,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:00 GMT", - "MS-CV": "HUsSnDafMEum3kpfXWRV0A.0", + "Date": "Wed, 09 Mar 2022 12:55:12 GMT", + "MS-CV": "BMnbAuQHpE2xtaYxxtQePw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qJ8oYgAAAAC5Od3kYk2ZSYYgkvceevppUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sKMoYgAAAAA5OJ9uJ50PRIV5Ux31N0iKUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:00.3041354\u002B00:00" + "expiresOn": "2022-03-10T12:55:12.7290719\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index f669a5ba2dbc..b0e2171ed070 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -33,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:01 GMT", - "MS-CV": "N0U9\u002BUPBRkq0Cf58wyrtoA.0", + "Date": "Wed, 09 Mar 2022 12:55:14 GMT", + "MS-CV": "DKEqlXEGv0ij6e6RuBDo\u002Bw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qZ8oYgAAAABZzA0PE5G2QJevaCzHDMlAUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sqMoYgAAAADYoNOB9famTpLIAntSiIFoUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "35ms" + "X-Processing-Time": "38ms" }, "ResponseBody": { "identity": { @@ -48,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:38:01.9379007\u002B00:00" + "expiresOn": "2022-03-10T12:55:14.4673647\u002B00:00" } } }, @@ -77,14 +77,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:38:02 GMT", - "MS-CV": "vBoGOmIL/0eY8yyj3meByg.0", + "Date": "Wed, 09 Mar 2022 12:55:14 GMT", + "MS-CV": "RSgBNhytV0K6tNs7RMyjpg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qp8oYgAAAAABx\u002BLTD8CPTJBhnp6pMIoFUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0sqMoYgAAAABIFn8ruR7CT6wpEREJwHPVUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "121ms" + "X-Processing-Time": "95ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 41ef993054b4..45b250f91ba9 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -25,15 +25,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:05 GMT", - "MS-CV": "YaGu1xMWLEWEBP/4bMdhaQ.0", + "Date": "Wed, 09 Mar 2022 12:55:17 GMT", + "MS-CV": "AWxtYRmIn02GAwedTM1GfQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0rJ8oYgAAAABdMXcfyhCeSrOWHzI3j\u002B0FUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0taMoYgAAAAA3fCI4oL5YSqp5rK40va7lUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "30ms" + "X-Processing-Time": "15ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 77afb9b18c2e..1b0aa1abbeee 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -32,15 +32,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:04 GMT", - "MS-CV": "eckPsZYaUUCic0MqZCd7kQ.0", + "Date": "Wed, 09 Mar 2022 12:55:16 GMT", + "MS-CV": "Gr4\u002BpulSwE29VRngNugAOA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0rJ8oYgAAAAA7LXoNGK5KQLOIDnZKqu4aUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0tKMoYgAAAACNFk8P/OPqQIPAUPymb8k5UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "14ms" + "X-Processing-Time": "17ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index ea484bda4216..f69245f04aca 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:03 GMT", - "MS-CV": "YS4v1jMQ8Ua6qJQV0chymA.0", + "Date": "Wed, 09 Mar 2022 12:55:15 GMT", + "MS-CV": "8LudHCY1O02HmtR3OnApaQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0q58oYgAAAAAAmFEVI5FpS5h8SGPBlo9aUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0s6MoYgAAAACCdO7WZYlmR5Yt0VXCPBuzUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { @@ -72,15 +72,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:03 GMT", - "MS-CV": "HVwJrC4tmka/DV048fvskA.0", + "Date": "Wed, 09 Mar 2022 12:55:15 GMT", + "MS-CV": "QbBHDEfbmEOilwonoW\u002BSnA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0q58oYgAAAABl2WOEqxjHQKuCZbVmNdooUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0s6MoYgAAAACffbim4UDlQ5QjSHLgmWV7UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "15ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 55cd370b53a2..5e8967adb1a4 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -26,15 +26,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:04 GMT", - "MS-CV": "GnI0Stv8FE2//iDDQotjJw.0", + "Date": "Wed, 09 Mar 2022 12:55:16 GMT", + "MS-CV": "8YFNvx4FMEi323VFs\u002BHCtQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0rJ8oYgAAAABMRSav77uwTpX1LYu7124lUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0tKMoYgAAAADIOcO18Jn7Q4xKZHpfiRiTUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 68c524325932..5dac0ce05f2e 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -19,7 +19,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:09 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -27,15 +27,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:09 GMT", - "MS-CV": "rVrJr1OXI0eOK0/s\u002Bd\u002B6CA.0", + "Date": "Wed, 09 Mar 2022 12:55:21 GMT", + "MS-CV": "cigpCKNANUejJv2khqYy3g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0sZ8oYgAAAADGUm666gMMRJp7U3lKIF8YUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0uaMoYgAAAACicvBFBVV1S5Nw80O4NUwUUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "21ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 0458f0ee451f..39fa75c2f293 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:09 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -34,15 +34,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:08 GMT", - "MS-CV": "wm6ve2Zsr02t/2yNdesCZw.0", + "Date": "Wed, 09 Mar 2022 12:55:20 GMT", + "MS-CV": "ymwtqbJJsEipg0z7MXRPnw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0sJ8oYgAAAACTljynKsJVTrc9sYiTR4CgUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0uKMoYgAAAABj3Ah0XN9nS7RA/gJ2xwR4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "21ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 7b99d7ba6938..2ed1ad9dfdd7 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:38:08 GMT", - "MS-CV": "mG5r4sljn02Hu847lnz7og.0", + "Date": "Wed, 09 Mar 2022 12:55:20 GMT", + "MS-CV": "NqSgyJLdvU2S2lZVgEgPCg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0sJ8oYgAAAAC/BLL1mQS7R799GkItQslaUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0uKMoYgAAAAB56wsZPK8bTq3MJKi9ikrSUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "30ms" + "X-Processing-Time": "40ms" }, "ResponseBody": { "identity": { @@ -66,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:08 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -76,15 +76,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:08 GMT", - "MS-CV": "3Em\u002B/mHtNEmt8fUDfoYjFg.0", + "Date": "Wed, 09 Mar 2022 12:55:20 GMT", + "MS-CV": "KKxPJPdwuEWQpegr4V9\u002BJw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0sJ8oYgAAAABilbpaQ90ER6Pph21RRMplUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0uKMoYgAAAADUFDWPt7MPQ79K9go\u002BwvF4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 58d65a5edfdb..34379c56211f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -20,7 +20,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:38:09 GMT", + "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -28,15 +28,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:38:08 GMT", - "MS-CV": "SnireRdXC0KdXWkXQuwiVw.0", + "Date": "Wed, 09 Mar 2022 12:55:21 GMT", + "MS-CV": "QRXYo096GEu04DbonYXJLA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0sJ8oYgAAAAD\u002BAghiJVJBQ5x46/XDeubyUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0uaMoYgAAAACPCsSEzTSfQr5vppClAWdfUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "32ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index aaa0384a1b04..b7ff11112805 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:44 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:57 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,11 +21,11 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:44 GMT", - "MS-CV": "\u002B4npNk4PpUyiSVt2IJIXsA.0", + "Date": "Wed, 09 Mar 2022 12:54:57 GMT", + "MS-CV": "4kTdOjykfkaKQgHrsdUo1g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0l58oYgAAAADPZHZo1jVCSpiWuQ7i6\u002BTxUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oaMoYgAAAACgqnrblhUpQqUQIaLTdjsxUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "28ms" diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 68c05d3bc51c..ce96362d889e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:45 GMT", - "MS-CV": "THzcHupV4EOfvZGKRpBesQ.0", + "Date": "Wed, 09 Mar 2022 12:54:58 GMT", + "MS-CV": "L8Wh\u002BcHWNEG46imbd1PoYg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mZ8oYgAAAAC3JU3qoMDgRae85GzC3c4oUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oqMoYgAAAABDGH69thGvTYZeb6L/mYrIUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "42ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:45.4584185\u002B00:00" + "expiresOn": "2022-03-10T12:54:58.7482796\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index fbd2ba87bb6f..4b9675873052 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:44 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:57 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -23,16 +23,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "114", + "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:44 GMT", - "MS-CV": "yRmyBl\u002BCEEWMw47WQw4qXg.0", + "Date": "Wed, 09 Mar 2022 12:54:57 GMT", + "MS-CV": "z9yCH0V3PEi5PjliD4ZALg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mJ8oYgAAAADUuAhQdfekTYGDP35mneKwUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oaMoYgAAAAB3TJD899rpTob0gAK0nN3fUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "43ms" + "X-Processing-Time": "55ms" }, "ResponseBody": { "identity": { @@ -40,7 +40,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:44.217332\u002B00:00" + "expiresOn": "2022-03-10T12:54:57.4462149\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 678cb4fb78ad..f6872d8b4a85 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:46 GMT", - "MS-CV": "UUXLZ9tbZE21uAoclEOvdA.0", + "Date": "Wed, 09 Mar 2022 12:54:59 GMT", + "MS-CV": "ng2U8UiemkyvoMm9dKsJ8g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mp8oYgAAAABEM6ubi02FSqp1AubYOVYBUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0o6MoYgAAAABwBhO235lZSJ\u002BZBmZzGVTzUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "identity": { @@ -47,20 +47,20 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:37:46 GMT", - "MS-CV": "p07Z87Y9hU\u002BEGTSn5I\u002BWTQ.0", + "Date": "Wed, 09 Mar 2022 12:54:59 GMT", + "MS-CV": "UryXgVRjv0yb7byPo46MQA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mp8oYgAAAAAvbyM9dR1aTYvNk4Ono6L7UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0o6MoYgAAAAA6E59/mvi2T6eBHyfznUl0UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "97ms" + "X-Processing-Time": "156ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index fa7688f25f3a..d1af94eebe0d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:45 GMT", - "MS-CV": "ZHT7bPsKckqCiRPtnu7vkQ.0", + "Date": "Wed, 09 Mar 2022 12:54:58 GMT", + "MS-CV": "dmhPxp628kC6aDBVqFFsZg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mJ8oYgAAAABp9\u002BqLlv6YQ7Ku8DVUAyjgUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oqMoYgAAAAC\u002BIYHuHrU9S7yaRNlk0uG/UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" }, "RequestBody": { "scopes": [ @@ -62,18 +62,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:45 GMT", - "MS-CV": "/AYMWGjmjkWO7mCbIZqJuA.0", + "Date": "Wed, 09 Mar 2022 12:54:58 GMT", + "MS-CV": "xRQG1WGYAEmS3pAHcCPEzQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mZ8oYgAAAADGuxDI1AniQrcO6/QQrU4pUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oqMoYgAAAADg/jY2h50ETZo2hTfMMsFoUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "48ms" + "X-Processing-Time": "81ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:45.2003896\u002B00:00" + "expiresOn": "2022-03-10T12:54:58.4804016\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 129e1e8980a5..f122a7fa98b6 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:44 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:44 GMT", - "MS-CV": "ySKhek7B80G9rO8RVl7JYQ.0", + "Date": "Wed, 09 Mar 2022 12:54:57 GMT", + "MS-CV": "ckxrdRWxlU2hbCKUQlyE\u002BA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mJ8oYgAAAACWUx0EhkUOTbwKBf7A1OnqUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oaMoYgAAAABtzl4bRinfSYDh6AHTwPPQUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "64ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:45 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" }, "RequestBody": { "scopes": [ @@ -61,18 +61,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:44 GMT", - "MS-CV": "2pQ\u002BaOqBp0uHqyHVMhMSKA.0", + "Date": "Wed, 09 Mar 2022 12:54:57 GMT", + "MS-CV": "vIssiTc6kUyqU1YOuXucvg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mJ8oYgAAAABY2jL0BVTqSJegaQWw5K0/UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oaMoYgAAAACHUYFDamFoRYxOh8oV0g6kUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "61ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:44.7143785\u002B00:00" + "expiresOn": "2022-03-10T12:54:57.9601122\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 679923b9b36e..68152b3007ad 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -24,16 +24,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "115", + "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:45 GMT", - "MS-CV": "ZGKHrw14iE2KnF67rpu3CA.0", + "Date": "Wed, 09 Mar 2022 12:54:58 GMT", + "MS-CV": "VWbizmpyMku1\u002B6WroR4h2g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mZ8oYgAAAACxiOqlQRHSQZaGuCBFn/kEUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oqMoYgAAAADOtxFirtUbQKFm\u002B2LcIJMKUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "44ms" + "X-Processing-Time": "43ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:45.7189227\u002B00:00" + "expiresOn": "2022-03-10T12:54:59.033396\u002B00:00" } } }, @@ -57,20 +57,20 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:46 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:37:46 GMT", - "MS-CV": "Tbf/2PTyyk\u002BQMRgX91uj2Q.0", + "Date": "Wed, 09 Mar 2022 12:54:59 GMT", + "MS-CV": "zBaINbUr40atUFufZvDnvw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mZ8oYgAAAAAzr/XQiPTeQZmdet7J\u002BkxRUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0o6MoYgAAAACB7Q3KOrB4Spz3kr7/GuxLUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "96ms" + "X-Processing-Time": "98ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 7f6a9184c81e..389bbde2d829 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:35 GMT", - "MS-CV": "WI4z2oqS70Cv9jAsK8EcuQ.0", + "Date": "Wed, 09 Mar 2022 12:57:12 GMT", + "MS-CV": "iP7c3VROIUOwNgN799m\u002Bvg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0jp8oYgAAAACYax\u002BMavDdTJxw\u002BU5sqoYWUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0KKQoYgAAAACa8fgYRwDnTImwnaxEiDDIUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 9608d4b53793..62acbf3f3920 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:38 GMT", - "MS-CV": "IcsTn5v5VE\u002BlxDUm8tZ6Fg.0", + "Date": "Wed, 09 Mar 2022 12:57:16 GMT", + "MS-CV": "h3UXBU4I5ky6ddULDrMJqw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0kp8oYgAAAACHnFX149dXSIPOKf6P1H0QUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0LKQoYgAAAAA0MqkH/zOfRLy25mBu1dK5UFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "42ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:38.7372321\u002B00:00" + "expiresOn": "2022-03-10T12:57:16.8033637\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index f2ca70c44f5b..b49b43908574 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -23,14 +23,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:35 GMT", - "MS-CV": "hK\u002B8/DUbV0KFfb5wyx8SAg.0", + "Date": "Wed, 09 Mar 2022 12:57:13 GMT", + "MS-CV": "etNpodjg2kutxw5mEa7p4g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0j58oYgAAAADz\u002BsuFlFXqTITB7wlIDkwyUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0KaQoYgAAAAAuL4oOyqnCQbqswdKIj8n5UFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "42ms" + "X-Processing-Time": "39ms" }, "ResponseBody": { "identity": { @@ -38,7 +38,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:35.7966233\u002B00:00" + "expiresOn": "2022-03-10T12:57:13.9556632\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index d1deb4fbe82c..b235021828ee 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:40 GMT", - "MS-CV": "KFOXTx0dFEK5ZnKfSMXAsg.0", + "Date": "Wed, 09 Mar 2022 12:54:53 GMT", + "MS-CV": "cR1W1FBtEkiYbzxFrP79FA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0lJ8oYgAAAACdtDTjXbz6SJ8DF/RYl\u002BkgUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0naMoYgAAAAAC4m8/DaNGRaqzMbq1nV04UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -49,14 +49,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:37:40 GMT", - "MS-CV": "nj3s/KSPbkKTs1yAcYJiAQ.0", + "Date": "Wed, 09 Mar 2022 12:54:54 GMT", + "MS-CV": "1GnkzI\u002B1hU6txUIgoHUyAg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0lJ8oYgAAAACFlOJIDL9YTrpHvrmqWLgYUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0naMoYgAAAACsS27yFTzIRaiu5\u002BLHJJkMUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "87ms" + "X-Processing-Time": "143ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 8ad9a8be32bd..ab907f398770 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:37 GMT", - "MS-CV": "yZsG/eMrxkyEbuDwiRL1Cg.0", + "Date": "Wed, 09 Mar 2022 12:57:14 GMT", + "MS-CV": "x1Loe4vw\u002B0qq6U1mdo9aHQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0kZ8oYgAAAAA04i76QggURadBYLQ7LaR3UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0K6QoYgAAAAAwMyB1zwtxRamJODZ870gyUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { @@ -58,18 +58,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:38 GMT", - "MS-CV": "/vi7ZiDL50yAgADfoWPAYA.0", + "Date": "Wed, 09 Mar 2022 12:57:14 GMT", + "MS-CV": "9o8jMpQO7EeMma3lI5q42A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0kZ8oYgAAAAAPaujVf7PWQb8b3xQhO8bLUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0K6QoYgAAAACIqDqlnDUhRom5pdnHe9RGUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:38.0373022\u002B00:00" + "expiresOn": "2022-03-10T12:57:15.6575149\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 68ba1850e3b3..dc8502e6d754 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:36 GMT", - "MS-CV": "Xy\u002BZyOlWykWQAx9lm323FA.0", + "Date": "Wed, 09 Mar 2022 12:57:13 GMT", + "MS-CV": "jozla5m9tEuT5TsPHZUC1A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0kJ8oYgAAAAAPwjFHZlV4RpndEj19Z9U\u002BUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0KqQoYgAAAAC3rUFXeVNhQ4wPmr7/RHBjUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -57,18 +57,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:36 GMT", - "MS-CV": "AOFPEUrxk0qINhovkXNLGQ.0", + "Date": "Wed, 09 Mar 2022 12:57:13 GMT", + "MS-CV": "syQ51wBttkmHY67i0hn0bA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0kJ8oYgAAAAD2\u002BbSzcaqPTbNjXMG4B8eiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0KqQoYgAAAABokt/3SRVtQqTmYKd6\u002BmomUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:36.6660975\u002B00:00" + "expiresOn": "2022-03-10T12:57:14.8006508\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index eb13c5205731..b1bb1b95ab2e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:39 GMT", - "MS-CV": "uFXo\u002BZ1PcEifmE/Req9IkA.0", + "Date": "Wed, 09 Mar 2022 12:54:52 GMT", + "MS-CV": "gntuRaJxzEyGwdaH6rEewQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0k58oYgAAAAAAQuGyyQmGSrmsSwO2RES9UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0nKMoYgAAAADtJgQJuCMaRqrzX4ey0OKCUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "37ms" + "X-Processing-Time": "39ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:37:39.4787499\u002B00:00" + "expiresOn": "2022-03-10T12:54:52.9364213\u002B00:00" } } }, @@ -59,14 +59,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:37:39 GMT", - "MS-CV": "SXfBCNJ2lkOW95wv3oRivQ.0", + "Date": "Wed, 09 Mar 2022 12:54:53 GMT", + "MS-CV": "DdxHe97NykmJbyVDeGOCWw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0k58oYgAAAACIzH\u002BAkKqbSJyiG4fAHU1/UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0naMoYgAAAAA7c7hMbuVHToUTIJOIem6PUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "102ms" + "X-Processing-Time": "96ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index a8ffc12ab521..15a06bb605a7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -16,15 +16,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:43 GMT", - "MS-CV": "AawysV0YQ0aCSLoAwY/cPA.0", + "Date": "Wed, 09 Mar 2022 12:54:56 GMT", + "MS-CV": "htAOZ4KN3kSfLvmyc/brBg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0l58oYgAAAAATDeo8JwVPTI5zapBvlgq2UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oKMoYgAAAABwzA/o2S0/R6KqtQeqqXzJUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "15ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 540071462e7b..eb9b16ddc1c4 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -23,15 +23,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:42 GMT", - "MS-CV": "YeXyujbCb0yHcHopZcNovg.0", + "Date": "Wed, 09 Mar 2022 12:54:55 GMT", + "MS-CV": "4L1mVpVvNUaQZDKywY2KnQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0lp8oYgAAAACb0GXVVawNR5HvwWw83bPyUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0n6MoYgAAAABnC7kPWO/6TZZCGSb2LBvcUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "18ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index b483cc861b88..2bcf56ff60c9 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:41 GMT", - "MS-CV": "NQ/j3MiXD0iRD9oYtOukcg.0", + "Date": "Wed, 09 Mar 2022 12:54:54 GMT", + "MS-CV": "6yj52/LN/kGsGAhtqlsDWQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0lZ8oYgAAAABnLIGeCnTYSbq4ndWDq80mUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0nqMoYgAAAAAO3fEGFRJoQImGv4ips9M4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -54,15 +54,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:41 GMT", - "MS-CV": "w41d7WvwYECMxS9vqvm3ZA.0", + "Date": "Wed, 09 Mar 2022 12:54:54 GMT", + "MS-CV": "2Y2uz/jcaUSecNTjionsqA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0lZ8oYgAAAACaf5j/chuiTIDkwOWsT7kGUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0nqMoYgAAAAArNniPvnYlTZkzA4IBrahHUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "14ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 6cd4c936cd92..76f043eb9d22 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -17,15 +17,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:43 GMT", - "MS-CV": "YnEJZcralkyhki4ykdkOGA.0", + "Date": "Wed, 09 Mar 2022 12:54:56 GMT", + "MS-CV": "sTJJXGO\u002BVU6DWC8BiiKeBA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0lp8oYgAAAAAvKpeCMArSS7\u002B0bHv8xuuQUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0oKMoYgAAAACo/axo7rT0SLGp/ZmEZ9BEUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 371f66b411b7..720cdf84e301 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -11,22 +11,22 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:48 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:01 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:47 GMT", - "MS-CV": "ajnaiVlK60awGuU25NQ95A.0", + "Date": "Wed, 09 Mar 2022 12:55:00 GMT", + "MS-CV": "PuMwwbO/bUq/FSV0VgzGVQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0m58oYgAAAADrb/X5hj9MRaz\u002BPp8TUSWMUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0paMoYgAAAAAlZcrZ/qJVT7I1SzeNgQtvUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "21ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 9a17a184bc37..603df1f4fe15 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" }, "RequestBody": { "scopes": [ @@ -25,15 +25,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:47 GMT", - "MS-CV": "ukJW7nM2oUCMy6UlLS3O8A.0", + "Date": "Wed, 09 Mar 2022 12:55:00 GMT", + "MS-CV": "tFlsJ\u002Bj6UEqoq\u002BVuYAvPjQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0m58oYgAAAADU4BiZyRVqSZas6cszs9P2UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0pKMoYgAAAAADAw3DA4BtSbfoxMQ2TiRsUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 42e7fcaee024..b72846e3e8d6 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,11 +21,11 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:46 GMT", - "MS-CV": "cUGnbrBUpE6\u002ByiZ99\u002B1C2A.0", + "Date": "Wed, 09 Mar 2022 12:55:00 GMT", + "MS-CV": "F/uR/zDwsUyyN/tKK8y9lg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0mp8oYgAAAADEuZVH6USRSIwLEge8FxQ7UFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0pKMoYgAAAAApyypYojBDS4Oh\u002By/c\u002B1mSUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "26ms" @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" }, "RequestBody": { "scopes": [] @@ -58,15 +58,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:47 GMT", - "MS-CV": "e2cV2dQeX0uKNaP9oobz7g.0", + "Date": "Wed, 09 Mar 2022 12:55:00 GMT", + "MS-CV": "VB4mCtwM\u002BEyNmaYMUlCiqQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0mp8oYgAAAADiY58b9drXQ7P51GpVP\u002BQuUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0pKMoYgAAAAA3D/N0m/6VR4YF98mQU99zUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "20ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index a4926f78f3a5..cbda2b1411c1 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -12,22 +12,22 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:47 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:01 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:47 GMT", - "MS-CV": "nlfYd89Wj0ipR7zzynrdBg.0", + "Date": "Wed, 09 Mar 2022 12:55:00 GMT", + "MS-CV": "PcyOL\u002B51BUCU2hBhqyLDbw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0m58oYgAAAABwEz8L56oORpx50qLS0mIsUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0pKMoYgAAAAD2ZGY/eJEcRbD1R9TCzRZ6UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index af23537786a8..9e498dcbef82 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -12,8 +12,8 @@ "Content-Type": "application/json", "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", - "x-ms-content-sha256": "P6OiQmRlIv/yN1iNDYAYW2AcYlg0yqou1F\u002BorziuSgg=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:52 GMT" + "x-ms-content-sha256": "Ube3gTJcQCVgYqZreUb51\u002B0/DelAfKoRHwd3hOcpGPk=", + "x-ms-date": "Wed, 09 Mar 2022 12:55:05 GMT" }, "RequestBody": { "token": "sanitized" @@ -23,18 +23,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:53 GMT", - "MS-CV": "QAsEIBLJeki/CUeLTOcg\u002BQ.0", + "Date": "Wed, 09 Mar 2022 12:55:05 GMT", + "MS-CV": "raSzjxHEekenWwP7SD7RmA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oJ8oYgAAAACVpg2JhZ9ARpzSa89CaLusUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qKMoYgAAAACKISvLMNtXS7b1Cs9SfW9EUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "1038ms" + "X-Processing-Time": "378ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T14:06:26.4468964\u002B00:00" + "expiresOn": "2022-03-09T14:08:22.3934877\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index 1da43fe50522..165c1ae3e1d6 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "57hhXfjFJ4reUHSXuwlHWm62DSRXMo4VffVX4YLJJbc=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:54 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:05 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,12 +21,12 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:53 GMT", - "MS-CV": "VC5XrVKRwUKXWbtOSsD9qA.0", + "Date": "Wed, 09 Mar 2022 12:55:05 GMT", + "MS-CV": "liDwqNTJBU2ov\u002BBy7EdfzA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oZ8oYgAAAAAMGFfqbxZZRp2tUodYRtUiUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qaMoYgAAAACPV8l4BEayRbxH3v4DAiKhUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "21ms" diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index 096e4864624b..c6c0ace5dd81 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "H\u002BnYqfONMXXInH6CfRlv35rj5DRwtW5rY88/o2Yx4GE=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:54 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:06 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,12 +21,12 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:54 GMT", - "MS-CV": "ZoVWCiZrmEKPIvCgIe\u002BWZA.0", + "Date": "Wed, 09 Mar 2022 12:55:05 GMT", + "MS-CV": "W70sfPN/l0yj9KxtWAEBLw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0op8oYgAAAACJ7pdqv/nfSYOeiND\u002BUDdSUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qqMoYgAAAABhYoSndDBhTpAJhEoCAjTrUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "33ms" diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index 54cecc5645e7..754157fdb6d1 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "gtdDY7ecMyK\u002BwVq9aXDSvKuc5BiebgjLBB3AqaEwP0k=", - "x-ms-date": "Wed, 09 Mar 2022 12:37:54 GMT" + "x-ms-date": "Wed, 09 Mar 2022 12:55:06 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:53 GMT", - "MS-CV": "gx8z09Wwe0ugERIr5HBaYA.0", + "Date": "Wed, 09 Mar 2022 12:55:05 GMT", + "MS-CV": "h61u49HTSEKeSnxspc/P7w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oZ8oYgAAAAAhOnnAv11SRLjoE//annPOUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qaMoYgAAAABpLgqpuDldRZx60mEwjjQ5UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index a01ed3f06b01..82d0baff4de1 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -21,18 +21,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:37:49 GMT", - "MS-CV": "s\u002BVVCtzHiUWYVi3TkZaFSg.0", + "Date": "Wed, 09 Mar 2022 12:55:02 GMT", + "MS-CV": "5V9rZJ9C90SEBFAr90ptpA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nJ8oYgAAAAAMFc08I3baSZKvORTJCkdsUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0pqMoYgAAAADH8iGOUaucRIee\u002BAppzRb2UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "790ms" + "X-Processing-Time": "435ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T13:59:11.5694829\u002B00:00" + "expiresOn": "2022-03-09T14:13:12.5642762\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index 553c62500468..91db0fcc8f0d 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:50 GMT", - "MS-CV": "2awRd0BcAkW48LaAwRlHDA.0", + "Date": "Wed, 09 Mar 2022 12:55:03 GMT", + "MS-CV": "n7vv8K1wQU6D2pb\u002B/9xiSw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0np8oYgAAAAAaS2B3guTXTqXtNekrI/\u002BeUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0p6MoYgAAAADO/s0\u002BipjDRrPldrdaogEVUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index 186e3278025c..5e4330075b18 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:51 GMT", - "MS-CV": "\u002BCAORR5ECE6MwzW63\u002BX0\u002Bg.0", + "Date": "Wed, 09 Mar 2022 12:55:04 GMT", + "MS-CV": "/AJSBtNnwEq\u002BGTgf3x8LAA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0n58oYgAAAADAEtZvQzlwQ6tc/jbJmvqUUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0qKMoYgAAAADAW5FhEltvQakDRvYoAEdAUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "30ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index 940ca6b5944b..85572649a22c 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -19,12 +19,12 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:37:51 GMT", - "MS-CV": "cl\u002BVXLFYYUqKMpC889JKqQ.0", + "Date": "Wed, 09 Mar 2022 12:55:03 GMT", + "MS-CV": "xMXv7UNka0GO94YBM2kCVw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0n58oYgAAAADfwZapLcG9QodPQQR64s6kUFJHMDFFREdFMDcxMwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0p6MoYgAAAABPAU2FfIxfR7YTFIHPIRS\u002BUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "15ms" diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index 520feaa9bf06..0bada31faf82 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. +import { Context, Test } from "mocha"; import { Recorder, RecorderStartOptions, @@ -8,7 +9,6 @@ import { env, isPlaybackMode, } from "@azure-tools/test-recorder"; -import { Context, Test } from "mocha"; import { CommunicationIdentityClient } from "../../../src"; import { TokenCredential } from "@azure/core-auth"; import { createTestCredential } from "@azure-tools/test-credential"; @@ -45,23 +45,23 @@ const sanitizerOptions: SanitizerOptions = { uriSanitizers: [ { regex: true, - target: `/(https:\/\/)(?[^/',]*)/`, + target: `/(https://)(?[^/',]*)/`, value: "endpoint", groupForReplace: "host_name", }, { regex: true, - target: `(.*)\/identities\/(?.*?)[\/|?](.*)`, + target: `(.*)/identities/(?.*?)[/|?](.*)`, value: "sanitized", groupForReplace: "secret_content", }, ], generalSanitizers: [ - { regex: true, target: `"access_token"\s?:\s?"[^"]*"`, value: `"access_token":"sanitized"` }, - { regex: true, target: `"token"\s?:\s?"[^"]*"`, value: `"token":"sanitized"` }, - { regex: true, target: `"id_token"\s?:\s?"[^"]*"`, value: `"id_token":"sanitized"` }, - { regex: true, target: `"refresh_token"\s?:\s?"[^"]*"`, value: `"refresh_token":"sanitized"` }, - { regex: true, target: `"id"\s?:\s?"[^"]*"`, value: `"id":"sanitized"` }, + { regex: true, target: `"access_token"\\s?:\\s?"[^"]*"`, value: `"access_token":"sanitized"` }, + { regex: true, target: `"token"\\s?:\\s?"[^"]*"`, value: `"token":"sanitized"` }, + { regex: true, target: `"id_token"\\s?:\\s?"[^"]*"`, value: `"id_token":"sanitized"` }, + { regex: true, target: `"refresh_token"\\s?:\\s?"[^"]*"`, value: `"refresh_token":"sanitized"` }, + { regex: true, target: `"id"\\s?:\\s?"[^"]*"`, value: `"id":"sanitized"` }, { regex: true, target: `[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}`, From 6ec494b1ec028772afe53b003f07a958f8dbc33b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 9 Mar 2022 14:15:38 +0100 Subject: [PATCH 29/33] formatting --- .../test/public/utils/recordedClient.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index 0bada31faf82..71ffa1af1f21 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -60,7 +60,11 @@ const sanitizerOptions: SanitizerOptions = { { regex: true, target: `"access_token"\\s?:\\s?"[^"]*"`, value: `"access_token":"sanitized"` }, { regex: true, target: `"token"\\s?:\\s?"[^"]*"`, value: `"token":"sanitized"` }, { regex: true, target: `"id_token"\\s?:\\s?"[^"]*"`, value: `"id_token":"sanitized"` }, - { regex: true, target: `"refresh_token"\\s?:\\s?"[^"]*"`, value: `"refresh_token":"sanitized"` }, + { + regex: true, + target: `"refresh_token"\\s?:\\s?"[^"]*"`, + value: `"refresh_token":"sanitized"`, + }, { regex: true, target: `"id"\\s?:\\s?"[^"]*"`, value: `"id":"sanitized"` }, { regex: true, From 85028f8a9d0ba2fe7b35334b961d008286105f54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 9 Mar 2022 21:06:34 +0100 Subject: [PATCH 30/33] removed redundant sanitizers --- ...recording_successfully_creates_a_user.json | 10 ++++---- ..._and_gets_a_token_in_a_single_request.json | 12 +++++----- ...successfully_creates_a_user_and_token.json | 12 +++++----- ...recording_successfully_deletes_a_user.json | 20 ++++++++-------- ...ts_a_token_for_a_user_multiple_scopes.json | 24 +++++++++---------- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++++++--------- ...ully_revokes_tokens_issued_for_a_user.json | 22 ++++++++--------- ...recording_successfully_creates_a_user.json | 8 +++---- ..._and_gets_a_token_in_a_single_request.json | 10 ++++---- ...successfully_creates_a_user_and_token.json | 10 ++++---- ...recording_successfully_deletes_a_user.json | 16 ++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 16 ++++++------- ..._gets_a_token_for_a_user_single_scope.json | 18 +++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 18 +++++++------- ..._attempting_to_delete_an_invalid_user.json | 8 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 6 ++--- ...g_to_issue_a_token_without_any_scopes.json | 14 +++++------ ...o_revoke_a_token_from_an_invalid_user.json | 8 +++---- ..._attempting_to_delete_an_invalid_user.json | 10 ++++---- ..._to_issue_a_token_for_an_invalid_user.json | 10 ++++---- ...g_to_issue_a_token_without_any_scopes.json | 20 ++++++++-------- ...o_revoke_a_token_from_an_invalid_user.json | 8 +++---- ...recording_successfully_creates_a_user.json | 10 ++++---- ..._and_gets_a_token_in_a_single_request.json | 12 +++++----- ...successfully_creates_a_user_and_token.json | 12 +++++----- ...recording_successfully_deletes_a_user.json | 20 ++++++++-------- ...ts_a_token_for_a_user_multiple_scopes.json | 22 ++++++++--------- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++++++--------- ...ully_revokes_tokens_issued_for_a_user.json | 22 ++++++++--------- ...recording_successfully_creates_a_user.json | 8 +++---- ..._and_gets_a_token_in_a_single_request.json | 10 ++++---- ...successfully_creates_a_user_and_token.json | 8 +++---- ...recording_successfully_deletes_a_user.json | 16 ++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 20 ++++++++-------- ..._gets_a_token_for_a_user_single_scope.json | 18 +++++++------- ...ully_revokes_tokens_issued_for_a_user.json | 18 +++++++------- ..._attempting_to_delete_an_invalid_user.json | 8 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 8 +++---- ...g_to_issue_a_token_without_any_scopes.json | 14 +++++------ ...o_revoke_a_token_from_an_invalid_user.json | 8 +++---- ..._attempting_to_delete_an_invalid_user.json | 10 ++++---- ..._to_issue_a_token_for_an_invalid_user.json | 8 +++---- ...g_to_issue_a_token_without_any_scopes.json | 20 ++++++++-------- ...o_revoke_a_token_from_an_invalid_user.json | 10 ++++---- ...oken_for_a_communication_access_token.json | 14 +++++------ ...xchange_an_empty_teams_user_aad_token.json | 10 ++++---- ...hange_an_expired_teams_user_aad_token.json | 10 ++++---- ...hange_an_invalid_teams_user_aad_token.json | 10 ++++---- ...oken_for_a_communication_access_token.json | 10 ++++---- ...xchange_an_empty_teams_user_aad_token.json | 8 +++---- ...hange_an_expired_teams_user_aad_token.json | 8 +++---- ...hange_an_invalid_teams_user_aad_token.json | 8 +++---- .../test/public/utils/recordedClient.ts | 7 ------ 53 files changed, 342 insertions(+), 349 deletions(-) diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index 1663f4158835..e451f34ae356 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:20 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:17 GMT", - "MS-CV": "Gs3sQ2ySO0mjT0r\u002BWYzy8Q.0", + "Date": "Wed, 09 Mar 2022 20:00:21 GMT", + "MS-CV": "60Yrxhq47EyfGesL8uxyXg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0taMoYgAAAADUZl0vLjCxTbqULadM1Q3lUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VQcpYgAAAAAcGt7Dtsn8RIwBZ32TuU8nUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index af0af3cbf5a0..33f2d68aed4c 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:22 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -35,14 +35,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:19 GMT", - "MS-CV": "YNC4QeK\u002BGkeCZGvGVYHb9A.0", + "Date": "Wed, 09 Mar 2022 20:00:23 GMT", + "MS-CV": "mRLc36Ud6E2zo6Unol9Wpw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0t6MoYgAAAADJJ4S850HmTbKoEqgLgUghUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VwcpYgAAAABQT/7nQZ2tSaDDCt4jWdSOUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "47ms" + "X-Processing-Time": "48ms" }, "ResponseBody": { "identity": { @@ -50,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:19.2028081\u002B00:00" + "expiresOn": "2022-03-10T20:00:23.6404059\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 6d9e06f5216c..98c8f7593b2a 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:21 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -34,14 +34,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:17 GMT", - "MS-CV": "tbONr1LoTE\u002BBVa1TbWhi4g.0", + "Date": "Wed, 09 Mar 2022 20:00:21 GMT", + "MS-CV": "\u002BEa4THbFQU6mknsVmlKdnw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0taMoYgAAAAAkHDmb\u002BFWZQ54o9Y78psp1UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VQcpYgAAAACUSyw1HqxKSZQKaf5g98TAUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "40ms" + "X-Processing-Time": "43ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:17.9736123\u002B00:00" + "expiresOn": "2022-03-10T20:00:21.9066811\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 88a48a2a2671..29f472811429 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:23 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:19 GMT", - "MS-CV": "01kjYZ1x10CBtwZ6Hd5ZuQ.0", + "Date": "Wed, 09 Mar 2022 20:00:24 GMT", + "MS-CV": "Anr7KozLg0qbZeMmJ7\u002BfVA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0t6MoYgAAAACs/dPpTzRKT4PRxKVbPaqaUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WAcpYgAAAAColg3PBEcCSJ6lUJTT5p0TUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -64,21 +64,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:24 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:55:20 GMT", - "MS-CV": "mgF4FvSc9EaomacVmnUAFw.0", + "Date": "Wed, 09 Mar 2022 20:00:24 GMT", + "MS-CV": "1//3aRk9k02dSRK38Decxg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0uKMoYgAAAAC9a\u002BwcwwiERp8CLjp\u002BVUY\u002BUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WAcpYgAAAADsJeHPwJvFQrma9JpHFMDHUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "150ms" + "X-Processing-Time": "156ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 60a351a2dd81..3c28f212bc25 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:22 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:18 GMT", - "MS-CV": "p1SV/K/6f0avgCT/AcluOg.0", + "Date": "Wed, 09 Mar 2022 20:00:22 GMT", + "MS-CV": "molsfqcEdUe2UYpRJeq\u002B1w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0tqMoYgAAAAC4m5QITMr5R5iYmWxQqE8tUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VgcpYgAAAABV8cVH2PrVRrdo0HP6p9H9UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "identity": { @@ -66,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:22 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -78,20 +78,20 @@ "StatusCode": 200, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "68", + "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:18 GMT", - "MS-CV": "SxSDPJSsB0aXWhR9Xd8/cw.0", + "Date": "Wed, 09 Mar 2022 20:00:23 GMT", + "MS-CV": "1Ib/rqccnEWQMcO9aylE1g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0tqMoYgAAAAAEBGeoYwYiSazDbA8y\u002B8u9UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VwcpYgAAAABMv5tgYo4QT7ubeLZf/iVeUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "34ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:18.931592\u002B00:00" + "expiresOn": "2022-03-10T20:00:23.2883561\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index ede9bba97e73..8da8b5d24073 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:21 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:18 GMT", - "MS-CV": "P4j/Vdc5b0K9L8Mu6eV\u002BCg.0", + "Date": "Wed, 09 Mar 2022 20:00:22 GMT", + "MS-CV": "0/VRuv1DjUeoc2\u002Bnz7FWFw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0tqMoYgAAAACQ8u7\u002BUHLgSpbEwbnLnYMfUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VgcpYgAAAABrdsz8z0iCQYcXzSsShqGnUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "identity": { @@ -66,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:18 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:21 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -79,18 +79,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:18 GMT", - "MS-CV": "T8RBekbyoEmtG4nQwZtJEA.0", + "Date": "Wed, 09 Mar 2022 20:00:22 GMT", + "MS-CV": "p2a9hiumOkeZpVm98pl2uA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0tqMoYgAAAABsg1PqCgrBS46d3JivV2X7UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VgcpYgAAAADrWeMKeeGlTI30A03eNeemUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "43ms" + "X-Processing-Time": "37ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:18.4516838\u002B00:00" + "expiresOn": "2022-03-10T20:00:22.5319416\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 2e2662ba7ebd..83756750ac75 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:19 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:23 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -35,14 +35,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:19 GMT", - "MS-CV": "ev7oBPhlr06QTmyaCVcFfw.0", + "Date": "Wed, 09 Mar 2022 20:00:23 GMT", + "MS-CV": "cWwXniW4akaBWxvEW91uuw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0t6MoYgAAAABhoyJ6qIISSo8/H1If4EPiUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VwcpYgAAAAAR7nMymtWaQ59fPmLz78AQUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "47ms" + "X-Processing-Time": "59ms" }, "ResponseBody": { "identity": { @@ -50,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:19.4729459\u002B00:00" + "expiresOn": "2022-03-10T20:00:23.9574839\u002B00:00" } } }, @@ -74,21 +74,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:23 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:55:19 GMT", - "MS-CV": "nL8N98Mo00\u002B/TQeiU89otg.0", + "Date": "Wed, 09 Mar 2022 20:00:24 GMT", + "MS-CV": "SuVIdhsJs0SKOZzhIBF/Qg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0t6MoYgAAAAAV6\u002BOHRRj5QKZF4oxXnSf9UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WAcpYgAAAABXQ4lo/rS0Q4ZVXoxr93hFUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "101ms" + "X-Processing-Time": "100ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 02f4af9f6ef7..cc44f0d72dcd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:11 GMT", - "MS-CV": "xmBqexHFaUCcSqtCTnvASA.0", + "Date": "Wed, 09 Mar 2022 20:00:13 GMT", + "MS-CV": "Vk5x/lkUqkquGbVLlGyfng.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0rqMoYgAAAAD08TJsCMy8RLSI5kYKABKhUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0TQcpYgAAAAAdhQQl1zTnTZhEiyN/Jf4FUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "847ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 959c4e4d0164..1b99ac9c76b8 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -33,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:13 GMT", - "MS-CV": "zY1ETnjWL0arsALJpUx0Fw.0", + "Date": "Wed, 09 Mar 2022 20:00:16 GMT", + "MS-CV": "6mXy0y6fCkurx/uyEjr47g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0saMoYgAAAAC8tJohGqqsQagvaOcXm58hUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UAcpYgAAAAAiI5rx4dQdQbCVRiG5JJr6UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "37ms" + "X-Processing-Time": "52ms" }, "ResponseBody": { "identity": { @@ -48,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:13.9074844\u002B00:00" + "expiresOn": "2022-03-10T20:00:16.4923518\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index 5d4abf355650..18b16b78089e 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -32,14 +32,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:11 GMT", - "MS-CV": "a\u002BvFoidZKkyfYE3\u002BSz4AEA.0", + "Date": "Wed, 09 Mar 2022 20:00:14 GMT", + "MS-CV": "MrrxUiDPjUerrM6t1waQNw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0r6MoYgAAAABX8ZjUTnY4T4rGLtu7SJgvUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0TgcpYgAAAAAabgmGPJFOQp\u002B0s7X/cGnUUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "37ms" + "X-Processing-Time": "40ms" }, "ResponseBody": { "identity": { @@ -47,7 +47,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:12.0878259\u002B00:00" + "expiresOn": "2022-03-10T20:00:14.3593288\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 5944dfda083c..7cccd9d7efe4 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:15 GMT", - "MS-CV": "oWpnLf9vG0yT6ZyjuzbuLA.0", + "Date": "Wed, 09 Mar 2022 20:00:18 GMT", + "MS-CV": "8d9FrFFLZkanlT7vD0ELpQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0s6MoYgAAAAD4BJ3TY9TKSZ9GErKlg59kUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UgcpYgAAAAABP2O2X6evRaZ5s\u002BLZhcGuUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -67,14 +67,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:55:15 GMT", - "MS-CV": "suJ9ue2kKEm3k8PcAB2/3Q.0", + "Date": "Wed, 09 Mar 2022 20:00:18 GMT", + "MS-CV": "qPnjxV0i1U27ycCDsiUs8w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0s6MoYgAAAADPYc\u002BgXI5VSYbmKENG6kN5UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UgcpYgAAAACYEok3tlDcSYQetdJIMsKrUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "141ms" + "X-Processing-Time": "158ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 2dd7a033456b..8e2e29a356c7 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:12 GMT", - "MS-CV": "a7hkQVo5zk2IpHpLiZqciw.0", + "Date": "Wed, 09 Mar 2022 20:00:15 GMT", + "MS-CV": "6qmilOnov0aXqMGbb2wCow.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0saMoYgAAAAA9YcxrQuEEQ4DCM/wk8E0/UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0TwcpYgAAAAASCNmzEP4SToujcd\u002B3iWfkUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "identity": { @@ -76,18 +76,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:13 GMT", - "MS-CV": "6sa6NkUD7EuMwM5OjwoYig.0", + "Date": "Wed, 09 Mar 2022 20:00:15 GMT", + "MS-CV": "s9lyD6tN7kKnFa7jiZ4FJQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0saMoYgAAAABkmnce9fN0T5230uofARJWUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0TwcpYgAAAAABWdULPh2mTZOGNnlPaQ65UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "34ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:13.3871102\u002B00:00" + "expiresOn": "2022-03-10T20:00:17.0215149\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index fa454782818c..a6600ccf3804 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:12 GMT", - "MS-CV": "waeSOha5lk2NC0MfNKP0Tg.0", + "Date": "Wed, 09 Mar 2022 20:00:14 GMT", + "MS-CV": "GI8o7Lr4wUqY7Yu/yAZP8w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0sKMoYgAAAABm66tAZ/W0SpYE0m5eUsQeUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0TgcpYgAAAAApChuq0yEmQbzmXG6C4kORUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "identity": { @@ -75,18 +75,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:12 GMT", - "MS-CV": "BMnbAuQHpE2xtaYxxtQePw.0", + "Date": "Wed, 09 Mar 2022 20:00:15 GMT", + "MS-CV": "\u002BrLVr8nbd06UezpmbvD60w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0sKMoYgAAAAA5OJ9uJ50PRIV5Ux31N0iKUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0TwcpYgAAAADswCZze3qqQoaZQnO4cmQMUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "30ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:12.7290719\u002B00:00" + "expiresOn": "2022-03-10T20:00:15.1984724\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index b0e2171ed070..46556844554f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -33,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:14 GMT", - "MS-CV": "DKEqlXEGv0ij6e6RuBDo\u002Bw.0", + "Date": "Wed, 09 Mar 2022 20:00:17 GMT", + "MS-CV": "KGSdecmcrU2MH0bs2YH\u002B/Q.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0sqMoYgAAAADYoNOB9famTpLIAntSiIFoUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UQcpYgAAAACRE1qdzP3DRrk5ITBQej8OUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "38ms" + "X-Processing-Time": "40ms" }, "ResponseBody": { "identity": { @@ -48,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:55:14.4673647\u002B00:00" + "expiresOn": "2022-03-10T20:00:17.4154127\u002B00:00" } } }, @@ -77,14 +77,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:55:14 GMT", - "MS-CV": "RSgBNhytV0K6tNs7RMyjpg.0", + "Date": "Wed, 09 Mar 2022 20:00:17 GMT", + "MS-CV": "NoDZO3vCpUKObOZo0Ldd8w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0sqMoYgAAAABIFn8ruR7CT6wpEREJwHPVUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UQcpYgAAAACtkRbN0qQCQIyWX/ykNcuNUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "95ms" + "X-Processing-Time": "244ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 45b250f91ba9..477ed6922a1e 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -25,15 +25,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:17 GMT", - "MS-CV": "AWxtYRmIn02GAwedTM1GfQ.0", + "Date": "Wed, 09 Mar 2022 20:00:20 GMT", + "MS-CV": "aSQAKH/oJ0ifFpj4GjMW6w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0taMoYgAAAAA3fCI4oL5YSqp5rK40va7lUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VQcpYgAAAAAk0yTXQg0FQrb55ZRLGPJzUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "15ms" + "X-Processing-Time": "17ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 1b0aa1abbeee..1ddb1ff782a8 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -32,12 +32,12 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:16 GMT", - "MS-CV": "Gr4\u002BpulSwE29VRngNugAOA.0", + "Date": "Wed, 09 Mar 2022 20:00:19 GMT", + "MS-CV": "wdNKvUI4GkGyg8S/kGKj2w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0tKMoYgAAAACNFk8P/OPqQIPAUPymb8k5UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UwcpYgAAAAAeS5bIh5JBTIa91lHU/F5ZUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "17ms" diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index f69245f04aca..288edd171426 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:15 GMT", - "MS-CV": "8LudHCY1O02HmtR3OnApaQ.0", + "Date": "Wed, 09 Mar 2022 20:00:19 GMT", + "MS-CV": "pcFb7tFONUmgyGQahwupfg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0s6MoYgAAAACCdO7WZYlmR5Yt0VXCPBuzUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UwcpYgAAAACaObiTsa3\u002BRriOVrZBptM2UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -72,12 +72,12 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:15 GMT", - "MS-CV": "QbBHDEfbmEOilwonoW\u002BSnA.0", + "Date": "Wed, 09 Mar 2022 20:00:19 GMT", + "MS-CV": "WhqEizjSDU635DdCQ\u002B6ZUA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0s6MoYgAAAACffbim4UDlQ5QjSHLgmWV7UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0UwcpYgAAAAC/e7j9grS1R4bWDilxLDiLUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "16ms" diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 5e8967adb1a4..6c2491199cab 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -26,15 +26,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:16 GMT", - "MS-CV": "8YFNvx4FMEi323VFs\u002BHCtQ.0", + "Date": "Wed, 09 Mar 2022 20:00:20 GMT", + "MS-CV": "en3bqsucgEWpXla6vkyYMA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0tKMoYgAAAADIOcO18Jn7Q4xKZHpfiRiTUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0VAcpYgAAAAAWf\u002B\u002BenqVxQLXNVnHxQA/SUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "20ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 5dac0ce05f2e..9ebb534a238d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -19,7 +19,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:25 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -27,15 +27,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:21 GMT", - "MS-CV": "cigpCKNANUejJv2khqYy3g.0", + "Date": "Wed, 09 Mar 2022 20:00:26 GMT", + "MS-CV": "nW2O25FL7Uy2iJMH0o1OXA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0uaMoYgAAAACicvBFBVV1S5Nw80O4NUwUUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WgcpYgAAAAAgavkiMvUkS7LC0vDc\u002BDlJUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "20ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 39fa75c2f293..8a1895ce735f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:25 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -34,15 +34,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:20 GMT", - "MS-CV": "ymwtqbJJsEipg0z7MXRPnw.0", + "Date": "Wed, 09 Mar 2022 20:00:25 GMT", + "MS-CV": "JAdWjDhMPk2GDFuHOpTGog.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0uKMoYgAAAABj3Ah0XN9nS7RA/gJ2xwR4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WQcpYgAAAAA57dsz\u002B7RiQrhgfteT68/KUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 2ed1ad9dfdd7..a0e1221a5c29 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -21,7 +21,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:20 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:24 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:20 GMT", - "MS-CV": "NqSgyJLdvU2S2lZVgEgPCg.0", + "Date": "Wed, 09 Mar 2022 20:00:24 GMT", + "MS-CV": "c46mDO4rhk6Jn\u002B1JvoRqLg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0uKMoYgAAAAB56wsZPK8bTq3MJKi9ikrSUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WQcpYgAAAABqqcv7GKKCRYZtMod\u002BbaGCUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "40ms" + "X-Processing-Time": "32ms" }, "ResponseBody": { "identity": { @@ -66,7 +66,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:24 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { @@ -76,15 +76,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:20 GMT", - "MS-CV": "KKxPJPdwuEWQpegr4V9\u002BJw.0", + "Date": "Wed, 09 Mar 2022 20:00:25 GMT", + "MS-CV": "Mm7v9brRBUyKATl\u002BsH\u002B3QQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0uKMoYgAAAADUFDWPt7MPQ79K9go\u002BwvF4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WQcpYgAAAAB6cWQrNo/CSITsYLJCsIoWUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 34379c56211f..2b254e913993 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -20,7 +20,7 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:21 GMT", + "x-ms-date": "Wed, 09 Mar 2022 20:00:25 GMT", "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, @@ -28,12 +28,12 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:21 GMT", - "MS-CV": "QRXYo096GEu04DbonYXJLA.0", + "Date": "Wed, 09 Mar 2022 20:00:26 GMT", + "MS-CV": "kG2FLIAmIECNGTUyIUXCng.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0uaMoYgAAAACPCsSEzTSfQr5vppClAWdfUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0WgcpYgAAAACJDhhXd8\u002BOQ5WpjNc6r7K7UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "22ms" diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index b7ff11112805..b72229d4f91f 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:57 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:56 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:57 GMT", - "MS-CV": "4kTdOjykfkaKQgHrsdUo1g.0", + "Date": "Wed, 09 Mar 2022 19:59:57 GMT", + "MS-CV": "DBhnFhMOY0KaK2WAiR0alw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oaMoYgAAAACgqnrblhUpQqUQIaLTdjsxUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PQcpYgAAAADTTVDVfbU7R66T1yF9npW3UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index ce96362d889e..9ec10cc3c47a 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:58 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:58 GMT", - "MS-CV": "L8Wh\u002BcHWNEG46imbd1PoYg.0", + "Date": "Wed, 09 Mar 2022 19:59:59 GMT", + "MS-CV": "ZnnZnpg3SU60ZCA6nL/PcQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oqMoYgAAAABDGH69thGvTYZeb6L/mYrIUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PwcpYgAAAABp5Oh\u002B42CGQKucBWFuv56nUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "42ms" + "X-Processing-Time": "46ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:54:58.7482796\u002B00:00" + "expiresOn": "2022-03-10T19:59:59.3868762\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 4b9675873052..6d5f15331576 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:57 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:57 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -25,14 +25,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:57 GMT", - "MS-CV": "z9yCH0V3PEi5PjliD4ZALg.0", + "Date": "Wed, 09 Mar 2022 19:59:57 GMT", + "MS-CV": "8ESPslFiP0u6AB24PI/\u002Biw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oaMoYgAAAAB3TJD899rpTob0gAK0nN3fUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PQcpYgAAAABd71g7ckPRSadwfYdLDmsSUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "55ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "identity": { @@ -40,7 +40,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:54:57.4462149\u002B00:00" + "expiresOn": "2022-03-10T19:59:57.9386582\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index f6872d8b4a85..30bfe4aabcbd 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:59 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:59 GMT", - "MS-CV": "ng2U8UiemkyvoMm9dKsJ8g.0", + "Date": "Wed, 09 Mar 2022 20:00:00 GMT", + "MS-CV": "9DSy8ECcIEqjXa5XWCkofA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0o6MoYgAAAABwBhO235lZSJ\u002BZBmZzGVTzUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QAcpYgAAAACpoHyozeD5RYN06AFDTdYwUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -47,20 +47,20 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:00 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:54:59 GMT", - "MS-CV": "UryXgVRjv0yb7byPo46MQA.0", + "Date": "Wed, 09 Mar 2022 20:00:00 GMT", + "MS-CV": "ZfLzaMWMvEWESdL8sW6wWw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0o6MoYgAAAAA6E59/mvi2T6eBHyfznUl0UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QAcpYgAAAAAP8rvMaZDuTadT47nbBovSUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "156ms" + "X-Processing-Time": "158ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index d1af94eebe0d..89a676444aaa 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:58 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:58 GMT", - "MS-CV": "dmhPxp628kC6aDBVqFFsZg.0", + "Date": "Wed, 09 Mar 2022 19:59:58 GMT", + "MS-CV": "b3ZinLjME0i1PR4RhDdiNg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oqMoYgAAAAC\u002BIYHuHrU9S7yaRNlk0uG/UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PgcpYgAAAADsGVzDN\u002BuhQLHpyCLDls/sUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:58 GMT" }, "RequestBody": { "scopes": [ @@ -62,18 +62,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:58 GMT", - "MS-CV": "xRQG1WGYAEmS3pAHcCPEzQ.0", + "Date": "Wed, 09 Mar 2022 19:59:58 GMT", + "MS-CV": "o4at6Axp9UWS8Ftd73MFAA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oqMoYgAAAADg/jY2h50ETZo2hTfMMsFoUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PgcpYgAAAACJtjbwbpvhRqGhe9Eq/My4UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "81ms" + "X-Processing-Time": "43ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:54:58.4804016\u002B00:00" + "expiresOn": "2022-03-10T19:59:59.0766678\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index f122a7fa98b6..e6dc552c0f5d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:57 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:57 GMT", - "MS-CV": "ckxrdRWxlU2hbCKUQlyE\u002BA.0", + "Date": "Wed, 09 Mar 2022 19:59:58 GMT", + "MS-CV": "vQIuJNixRUijQYjzNpVwYg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oaMoYgAAAABtzl4bRinfSYDh6AHTwPPQUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PgcpYgAAAAC0\u002BaUl477RRYp9XUICXnMUUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "64ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:58 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:57 GMT" }, "RequestBody": { "scopes": [ @@ -61,18 +61,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:57 GMT", - "MS-CV": "vIssiTc6kUyqU1YOuXucvg.0", + "Date": "Wed, 09 Mar 2022 19:59:58 GMT", + "MS-CV": "jSDsU8mybUGOn/hM9aU09w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oaMoYgAAAACHUYFDamFoRYxOh8oV0g6kUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PgcpYgAAAACldz8KfFPsSIiXMvBSXI03UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "33ms" + "X-Processing-Time": "39ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:54:57.9601122\u002B00:00" + "expiresOn": "2022-03-10T19:59:58.4707092\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 68152b3007ad..0693bbc1eef7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:59 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -24,16 +24,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "114", + "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:58 GMT", - "MS-CV": "VWbizmpyMku1\u002B6WroR4h2g.0", + "Date": "Wed, 09 Mar 2022 19:59:59 GMT", + "MS-CV": "kqvyVMda7EGQ8uwzFd7ACA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0oqMoYgAAAADOtxFirtUbQKFm\u002B2LcIJMKUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PwcpYgAAAAAx33H3LOzUTYqDV\u002BDA3a\u002BIUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "43ms" + "X-Processing-Time": "51ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:54:59.033396\u002B00:00" + "expiresOn": "2022-03-10T19:59:59.7862728\u002B00:00" } } }, @@ -57,17 +57,17 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:54:59 GMT" + "x-ms-date": "Wed, 09 Mar 2022 19:59:59 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:54:59 GMT", - "MS-CV": "zBaINbUr40atUFufZvDnvw.0", + "Date": "Wed, 09 Mar 2022 20:00:00 GMT", + "MS-CV": "V20pijqi40KFNfGg09AHew.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0o6MoYgAAAACB7Q3KOrB4Spz3kr7/GuxLUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QAcpYgAAAAD/qhxqVbynR6MElZb9jH6GUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "98ms" diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 389bbde2d829..67a63c673b89 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:57:12 GMT", - "MS-CV": "iP7c3VROIUOwNgN799m\u002Bvg.0", + "Date": "Wed, 09 Mar 2022 19:59:47 GMT", + "MS-CV": "JCq5rgRzJki9iJ4U4isggQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0KKQoYgAAAACa8fgYRwDnTImwnaxEiDDIUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0MwcpYgAAAACwBuArDKNaRbG7Ip43CuUNUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "269ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 62acbf3f3920..de0f094cb22d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:57:16 GMT", - "MS-CV": "h3UXBU4I5ky6ddULDrMJqw.0", + "Date": "Wed, 09 Mar 2022 19:59:51 GMT", + "MS-CV": "dUXRZKodCkSn97Mxz4Tixg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0LKQoYgAAAAA0MqkH/zOfRLy25mBu1dK5UFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0NwcpYgAAAABVbFOI8WHIRLksfz50/LQ4UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "44ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:57:16.8033637\u002B00:00" + "expiresOn": "2022-03-10T19:59:51.2743352\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index b49b43908574..e3fdb79414b5 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -23,11 +23,11 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:57:13 GMT", - "MS-CV": "etNpodjg2kutxw5mEa7p4g.0", + "Date": "Wed, 09 Mar 2022 19:59:48 GMT", + "MS-CV": "w1Ss6FIAKUWjqgPE4\u002Bh5Jw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0KaQoYgAAAAAuL4oOyqnCQbqswdKIj8n5UFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0NAcpYgAAAABg9gTRC8TgQ7VV8SKYEEcKUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "39ms" @@ -38,7 +38,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:57:13.9556632\u002B00:00" + "expiresOn": "2022-03-10T19:59:48.2062508\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index b235021828ee..630b42804515 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:53 GMT", - "MS-CV": "cR1W1FBtEkiYbzxFrP79FA.0", + "Date": "Wed, 09 Mar 2022 19:59:53 GMT", + "MS-CV": "C78FjLPiIEueLgF5RzSdqQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0naMoYgAAAAAC4m8/DaNGRaqzMbq1nV04UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0OQcpYgAAAADrFPBAcG0oQq/MioYH1u3jUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { @@ -49,14 +49,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:54:54 GMT", - "MS-CV": "1GnkzI\u002B1hU6txUIgoHUyAg.0", + "Date": "Wed, 09 Mar 2022 19:59:53 GMT", + "MS-CV": "R4OsAkJNREaYeYFIutzHxw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0naMoYgAAAACsS27yFTzIRaiu5\u002BLHJJkMUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0OQcpYgAAAAAYpTWqDdqtQIjUq9RfAelaUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "143ms" + "X-Processing-Time": "147ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index ab907f398770..dcf5f92b2899 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:57:14 GMT", - "MS-CV": "x1Loe4vw\u002B0qq6U1mdo9aHQ.0", + "Date": "Wed, 09 Mar 2022 19:59:50 GMT", + "MS-CV": "lT3WQwwAWECoEhfUXtiKZA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0K6QoYgAAAAAwMyB1zwtxRamJODZ870gyUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0NQcpYgAAAADdq5jbQ3NuT6XKkEqv7kdnUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "identity": { @@ -56,20 +56,20 @@ "StatusCode": 200, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "69", + "Content-Length": "68", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:57:14 GMT", - "MS-CV": "9o8jMpQO7EeMma3lI5q42A.0", + "Date": "Wed, 09 Mar 2022 19:59:50 GMT", + "MS-CV": "vedvDjzdl0yUgx4fv2mP7A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0K6QoYgAAAACIqDqlnDUhRom5pdnHe9RGUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0NgcpYgAAAACG4MYZJaFwSILbgeJq65lvUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "34ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:57:15.6575149\u002B00:00" + "expiresOn": "2022-03-10T19:59:50.427813\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index dc8502e6d754..911a1012f388 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:57:13 GMT", - "MS-CV": "jozla5m9tEuT5TsPHZUC1A.0", + "Date": "Wed, 09 Mar 2022 19:59:48 GMT", + "MS-CV": "F6YIeR7qpEeztgn16QUkrA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0KqQoYgAAAAC3rUFXeVNhQ4wPmr7/RHBjUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0NAcpYgAAAADTv5AybWBVRoXN4hIDC/m7UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -57,18 +57,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:57:13 GMT", - "MS-CV": "syQ51wBttkmHY67i0hn0bA.0", + "Date": "Wed, 09 Mar 2022 19:59:49 GMT", + "MS-CV": "yFVDHXo/b02J5NCPDYhDZg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0KqQoYgAAAABokt/3SRVtQqTmYKd6\u002BmomUFJHMDFFREdFMDkxNwBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0NQcpYgAAAACEYdqRdOuTSZd7fBsKFmsxUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "33ms" + "X-Processing-Time": "36ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T12:57:14.8006508\u002B00:00" + "expiresOn": "2022-03-10T19:59:49.2351354\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index b1bb1b95ab2e..56de60e2bbde 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:52 GMT", - "MS-CV": "gntuRaJxzEyGwdaH6rEewQ.0", + "Date": "Wed, 09 Mar 2022 19:59:51 GMT", + "MS-CV": "8YR4HX4eq02\u002BTg0sr80ZSg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nKMoYgAAAADtJgQJuCMaRqrzX4ey0OKCUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0NwcpYgAAAAAXknUEEcuZQqbhLqXkfJpGUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "39ms" + "X-Processing-Time": "38ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T12:54:52.9364213\u002B00:00" + "expiresOn": "2022-03-10T19:59:52.0575326\u002B00:00" } } }, @@ -59,14 +59,14 @@ "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 12:54:53 GMT", - "MS-CV": "DdxHe97NykmJbyVDeGOCWw.0", + "Date": "Wed, 09 Mar 2022 19:59:52 GMT", + "MS-CV": "7YPR//EBdkSfTKFc6ajLSA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0naMoYgAAAAA7c7hMbuVHToUTIJOIem6PUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0OAcpYgAAAAAKvf4g839xRqquPoDQwTu5UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "96ms" + "X-Processing-Time": "230ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 15a06bb605a7..6765c7a63d53 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -16,15 +16,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:54:56 GMT", - "MS-CV": "htAOZ4KN3kSfLvmyc/brBg.0", + "Date": "Wed, 09 Mar 2022 19:59:57 GMT", + "MS-CV": "GUUOQiAi3EWEXo2LCRkZWg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oKMoYgAAAABwzA/o2S0/R6KqtQeqqXzJUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PQcpYgAAAABwR/sF1CRXR5tq\u002BEp3PwZjUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "15ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index eb9b16ddc1c4..6b137d90c850 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -23,15 +23,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:54:55 GMT", - "MS-CV": "4L1mVpVvNUaQZDKywY2KnQ.0", + "Date": "Wed, 09 Mar 2022 19:59:55 GMT", + "MS-CV": "Oi3Ys3JeiU\u002Bb2QlrNEHdVw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0n6MoYgAAAABnC7kPWO/6TZZCGSb2LBvcUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0OwcpYgAAAABjpjf1CrBYQqBno6uWm54HUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "18ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 2bcf56ff60c9..2a48e8d3c735 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -19,11 +19,11 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:54:54 GMT", - "MS-CV": "6yj52/LN/kGsGAhtqlsDWQ.0", + "Date": "Wed, 09 Mar 2022 19:59:54 GMT", + "MS-CV": "\u002BGvG/YtD202FZr8Wlb\u002BjBQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0nqMoYgAAAAAO3fEGFRJoQImGv4ips9M4UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0OgcpYgAAAAAqUJPPx2PLQoGGHzgdGLgsUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "25ms" @@ -54,15 +54,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:54:54 GMT", - "MS-CV": "2Y2uz/jcaUSecNTjionsqA.0", + "Date": "Wed, 09 Mar 2022 19:59:54 GMT", + "MS-CV": "R9lYv0r2/kSJr/cMmGiwXQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0nqMoYgAAAAArNniPvnYlTZkzA4IBrahHUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0OgcpYgAAAACQtdbJrTkvSZb7XS\u002Behw8aUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "14ms" + "X-Processing-Time": "15ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 76f043eb9d22..b9f25c772d6e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -17,15 +17,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:54:56 GMT", - "MS-CV": "sTJJXGO\u002BVU6DWC8BiiKeBA.0", + "Date": "Wed, 09 Mar 2022 19:59:56 GMT", + "MS-CV": "mTnayTeZYkey\u002BrVL8OaPqw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0oKMoYgAAAACo/axo7rT0SLGp/ZmEZ9BEUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0PAcpYgAAAACwyRcYRzKxQaoTlF0XtDDqUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 720cdf84e301..0dd2831fb133 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -11,22 +11,22 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:01 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:01 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:00 GMT", - "MS-CV": "PuMwwbO/bUq/FSV0VgzGVQ.0", + "Date": "Wed, 09 Mar 2022 20:00:02 GMT", + "MS-CV": "XX/qGIQksEu4OUw\u002Be4NHWw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0paMoYgAAAAAlZcrZ/qJVT7I1SzeNgQtvUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QgcpYgAAAADMulDi37sPTYQGJaUrP1PNUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 603df1f4fe15..46149a288a9c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:01 GMT" }, "RequestBody": { "scopes": [ @@ -25,12 +25,12 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:00 GMT", - "MS-CV": "tFlsJ\u002Bj6UEqoq\u002BVuYAvPjQ.0", + "Date": "Wed, 09 Mar 2022 20:00:01 GMT", + "MS-CV": "QUA/wO45s0muL\u002BvyJaD42A.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0pKMoYgAAAAADAw3DA4BtSbfoxMQ2TiRsUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QQcpYgAAAAD4YDJL/8L3SLTnDB88GmfsUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "23ms" diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index b72846e3e8d6..2a53e54febfd 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:00 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:00 GMT", - "MS-CV": "F/uR/zDwsUyyN/tKK8y9lg.0", + "Date": "Wed, 09 Mar 2022 20:00:01 GMT", + "MS-CV": "h3WZ6/8dy0KVjv5tZhSyaw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0pKMoYgAAAAApyypYojBDS4Oh\u002By/c\u002B1mSUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QQcpYgAAAABtqsnrOiyGSJ6\u002BI5MI09p\u002BUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "39ms" }, "ResponseBody": { "identity": { @@ -49,7 +49,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:00 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:00 GMT" }, "RequestBody": { "scopes": [] @@ -58,15 +58,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:00 GMT", - "MS-CV": "VB4mCtwM\u002BEyNmaYMUlCiqQ.0", + "Date": "Wed, 09 Mar 2022 20:00:01 GMT", + "MS-CV": "FSkFEQ1bPUKBZTvkxZHuow.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0pKMoYgAAAAA3D/N0m/6VR4YF98mQU99zUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QQcpYgAAAADDZMkClTcKTaTt72Y6i2/iUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "27ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index cbda2b1411c1..755b8e4e1f67 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -12,22 +12,22 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:01 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:01 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:00 GMT", - "MS-CV": "PcyOL\u002B51BUCU2hBhqyLDbw.0", + "Date": "Wed, 09 Mar 2022 20:00:02 GMT", + "MS-CV": "uAppLBYX1UizUtFzxQzFQA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0pKMoYgAAAAD2ZGY/eJEcRbD1R9TCzRZ6UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QgcpYgAAAABNFpHgZbaJSoMerWaochD3UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index 9e498dcbef82..9b471e2025b8 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -12,8 +12,8 @@ "Content-Type": "application/json", "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", - "x-ms-content-sha256": "Ube3gTJcQCVgYqZreUb51\u002B0/DelAfKoRHwd3hOcpGPk=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:05 GMT" + "x-ms-content-sha256": "rZDDngVOkjW2nvS4235BqtpVaBc4aEfkr0S1I8YDG3E=", + "x-ms-date": "Wed, 09 Mar 2022 20:00:06 GMT" }, "RequestBody": { "token": "sanitized" @@ -23,18 +23,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:05 GMT", - "MS-CV": "raSzjxHEekenWwP7SD7RmA.0", + "Date": "Wed, 09 Mar 2022 20:00:07 GMT", + "MS-CV": "gI2F76PmXUS9b1JF6YzCRw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0qKMoYgAAAACKISvLMNtXS7b1Cs9SfW9EUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0RwcpYgAAAAAQPwh/8V/yTpEuHzltEbOMUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "378ms" + "X-Processing-Time": "407ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T14:08:22.3934877\u002B00:00" + "expiresOn": "2022-03-09T21:29:04.6951909\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index 165c1ae3e1d6..4f15b78ae2e1 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "57hhXfjFJ4reUHSXuwlHWm62DSRXMo4VffVX4YLJJbc=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:05 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:07 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:05 GMT", - "MS-CV": "liDwqNTJBU2ov\u002BBy7EdfzA.0", + "Date": "Wed, 09 Mar 2022 20:00:07 GMT", + "MS-CV": "Ip8330QgI02Hazrj8YBlGg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0qaMoYgAAAACPV8l4BEayRbxH3v4DAiKhUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0RwcpYgAAAACrkK1E2SgVSqPLcyAZlFfPUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "21ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index c6c0ace5dd81..fcbe8cc1e181 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "H\u002BnYqfONMXXInH6CfRlv35rj5DRwtW5rY88/o2Yx4GE=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:06 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:08 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:05 GMT", - "MS-CV": "W70sfPN/l0yj9KxtWAEBLw.0", + "Date": "Wed, 09 Mar 2022 20:00:08 GMT", + "MS-CV": "Ry2jSiMxzUigQi8NwQGJaw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0qqMoYgAAAABhYoSndDBhTpAJhEoCAjTrUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0SAcpYgAAAAC91Z52MOi3R5Ar6C\u002B0b2TbUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "33ms" + "X-Processing-Time": "29ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index 754157fdb6d1..06c34c114295 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -13,7 +13,7 @@ "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "gtdDY7ecMyK\u002BwVq9aXDSvKuc5BiebgjLBB3AqaEwP0k=", - "x-ms-date": "Wed, 09 Mar 2022 12:55:06 GMT" + "x-ms-date": "Wed, 09 Mar 2022 20:00:07 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:05 GMT", - "MS-CV": "h61u49HTSEKeSnxspc/P7w.0", + "Date": "Wed, 09 Mar 2022 20:00:08 GMT", + "MS-CV": "P3QpYhnyEUGDCHSyHYVG\u002BA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0qaMoYgAAAABpLgqpuDldRZx60mEwjjQ5UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0SAcpYgAAAAAb8GUDoPONQLnr6lsfL6T/UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index 82d0baff4de1..620c8cfb2eec 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -21,18 +21,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 12:55:02 GMT", - "MS-CV": "5V9rZJ9C90SEBFAr90ptpA.0", + "Date": "Wed, 09 Mar 2022 20:00:03 GMT", + "MS-CV": "SzDSc\u002BoAckKIm1/pRsXx\u002BA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0pqMoYgAAAADH8iGOUaucRIee\u002BAppzRb2UFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0QwcpYgAAAADiU7mOivyxR4yWzm/76pXhUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "435ms" + "X-Processing-Time": "469ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T14:13:12.5642762\u002B00:00" + "expiresOn": "2022-03-09T21:17:32.1007792\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index 91db0fcc8f0d..14b1523f1bc4 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:03 GMT", - "MS-CV": "n7vv8K1wQU6D2pb\u002B/9xiSw.0", + "Date": "Wed, 09 Mar 2022 20:00:04 GMT", + "MS-CV": "HVk7YB9pW0up82nxVlGJ5w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0p6MoYgAAAADO/s0\u002BipjDRrPldrdaogEVUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0RAcpYgAAAACXYnHwp3avQJPUcoj8gcEMUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index 5e4330075b18..0519cd7695bf 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:04 GMT", - "MS-CV": "/AJSBtNnwEq\u002BGTgf3x8LAA.0", + "Date": "Wed, 09 Mar 2022 20:00:06 GMT", + "MS-CV": "qZRNopBnM02xfUzIDvHgrg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0qKMoYgAAAADAW5FhEltvQakDRvYoAEdAUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0RgcpYgAAAAAZuqG\u002B8oPXS4hs2u9LuspTUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "53ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index 85572649a22c..c3655a3f8fe2 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 12:55:03 GMT", - "MS-CV": "xMXv7UNka0GO94YBM2kCVw.0", + "Date": "Wed, 09 Mar 2022 20:00:05 GMT", + "MS-CV": "vThfqdiS7kKTFfwFpvxgYA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0p6MoYgAAAABPAU2FfIxfR7YTFIHPIRS\u002BUFJHMDFFREdFMDcwNgBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0RQcpYgAAAABRdzycjRY3TK8laI4/ddAUUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "15ms" + "X-Processing-Time": "13ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index 71ffa1af1f21..f528665af96d 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -57,14 +57,7 @@ const sanitizerOptions: SanitizerOptions = { }, ], generalSanitizers: [ - { regex: true, target: `"access_token"\\s?:\\s?"[^"]*"`, value: `"access_token":"sanitized"` }, { regex: true, target: `"token"\\s?:\\s?"[^"]*"`, value: `"token":"sanitized"` }, - { regex: true, target: `"id_token"\\s?:\\s?"[^"]*"`, value: `"id_token":"sanitized"` }, - { - regex: true, - target: `"refresh_token"\\s?:\\s?"[^"]*"`, - value: `"refresh_token":"sanitized"`, - }, { regex: true, target: `"id"\\s?:\\s?"[^"]*"`, value: `"id":"sanitized"` }, { regex: true, From d587617af65b13d560c249d85ebeef588a5c5346 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Mar 2022 08:50:48 +0100 Subject: [PATCH 31/33] consistent package name --- .../src/generated/src/identityRestClientContext.ts | 2 +- sdk/communication/communication-identity/swagger/README.md | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts b/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts index 952b1751dbfe..0c05d7f4bdb0 100644 --- a/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts +++ b/sdk/communication/communication-identity/src/generated/src/identityRestClientContext.ts @@ -31,7 +31,7 @@ export class IdentityRestClientContext extends coreClient.ServiceClient { requestContentType: "application/json; charset=utf-8" }; - const packageDetails = `azsdk-js-azure-communication-identity/1.1.0-beta.2`; + const packageDetails = `azsdk-js-communication-identity/1.1.0-beta.2`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` diff --git a/sdk/communication/communication-identity/swagger/README.md b/sdk/communication/communication-identity/swagger/README.md index 34edcb11623d..c5ec743a5c45 100644 --- a/sdk/communication/communication-identity/swagger/README.md +++ b/sdk/communication/communication-identity/swagger/README.md @@ -5,7 +5,7 @@ ## Configuration ```yaml -package-name: azure-communication-identity +package-name: "@azure/communication-identity" override-client-name: IdentityRestClient description: Communication identity client package-version: 1.1.0-beta.2 @@ -22,5 +22,4 @@ use-extension: add-credentials: false azure-arm: false v3: true -use-core-v2: true ``` From 262b4b4a7c8395f1112ae8aa73af8e7d491bdc76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Mon, 14 Mar 2022 09:20:20 +0100 Subject: [PATCH 32/33] updated recordings - user agent, removed sanitizer --- ...recording_successfully_creates_a_user.json | 12 ++++----- ..._and_gets_a_token_in_a_single_request.json | 16 ++++++------ ...successfully_creates_a_user_and_token.json | 12 ++++----- ...recording_successfully_deletes_a_user.json | 24 ++++++++--------- ...ts_a_token_for_a_user_multiple_scopes.json | 26 +++++++++---------- ..._gets_a_token_for_a_user_single_scope.json | 26 +++++++++---------- ...ully_revokes_tokens_issued_for_a_user.json | 26 +++++++++---------- ...recording_successfully_creates_a_user.json | 10 +++---- ..._and_gets_a_token_in_a_single_request.json | 12 ++++----- ...successfully_creates_a_user_and_token.json | 12 ++++----- ...recording_successfully_deletes_a_user.json | 20 +++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 22 ++++++++-------- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++++++-------- ...ully_revokes_tokens_issued_for_a_user.json | 22 ++++++++-------- ..._attempting_to_delete_an_invalid_user.json | 10 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 8 +++--- ...g_to_issue_a_token_without_any_scopes.json | 20 +++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 10 +++---- ..._attempting_to_delete_an_invalid_user.json | 12 ++++----- ..._to_issue_a_token_for_an_invalid_user.json | 12 ++++----- ...g_to_issue_a_token_without_any_scopes.json | 24 ++++++++--------- ...o_revoke_a_token_from_an_invalid_user.json | 12 ++++----- ...recording_successfully_creates_a_user.json | 12 ++++----- ..._and_gets_a_token_in_a_single_request.json | 14 +++++----- ...successfully_creates_a_user_and_token.json | 14 +++++----- ...recording_successfully_deletes_a_user.json | 24 ++++++++--------- ...ts_a_token_for_a_user_multiple_scopes.json | 26 +++++++++---------- ..._gets_a_token_for_a_user_single_scope.json | 26 +++++++++---------- ...ully_revokes_tokens_issued_for_a_user.json | 26 +++++++++---------- ...recording_successfully_creates_a_user.json | 10 +++---- ..._and_gets_a_token_in_a_single_request.json | 12 ++++----- ...successfully_creates_a_user_and_token.json | 14 +++++----- ...recording_successfully_deletes_a_user.json | 20 +++++++------- ...ts_a_token_for_a_user_multiple_scopes.json | 24 ++++++++--------- ..._gets_a_token_for_a_user_single_scope.json | 22 ++++++++-------- ...ully_revokes_tokens_issued_for_a_user.json | 22 ++++++++-------- ..._attempting_to_delete_an_invalid_user.json | 10 +++---- ..._to_issue_a_token_for_an_invalid_user.json | 10 +++---- ...g_to_issue_a_token_without_any_scopes.json | 20 +++++++------- ...o_revoke_a_token_from_an_invalid_user.json | 10 +++---- ..._attempting_to_delete_an_invalid_user.json | 12 ++++----- ..._to_issue_a_token_for_an_invalid_user.json | 12 ++++----- ...g_to_issue_a_token_without_any_scopes.json | 24 ++++++++--------- ...o_revoke_a_token_from_an_invalid_user.json | 12 ++++----- ...oken_for_a_communication_access_token.json | 16 ++++++------ ...xchange_an_empty_teams_user_aad_token.json | 12 ++++----- ...hange_an_expired_teams_user_aad_token.json | 12 ++++----- ...hange_an_invalid_teams_user_aad_token.json | 12 ++++----- ...oken_for_a_communication_access_token.json | 12 ++++----- ...xchange_an_empty_teams_user_aad_token.json | 10 +++---- ...hange_an_expired_teams_user_aad_token.json | 10 +++---- ...hange_an_invalid_teams_user_aad_token.json | 10 +++---- .../test/public/utils/recordedClient.ts | 6 ----- 53 files changed, 420 insertions(+), 426 deletions(-) diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index e451f34ae356..5c816b730dd4 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:20 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:33 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:21 GMT", - "MS-CV": "60Yrxhq47EyfGesL8uxyXg.0", + "Date": "Mon, 14 Mar 2022 08:16:35 GMT", + "MS-CV": "6MPyRkBte0WtlOHx\u002BrZD/g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VQcpYgAAAAAcGt7Dtsn8RIwBZ32TuU8nUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05PkuYgAAAAAj0Kyja2QtQJAahYePkcmMUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "30ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 33f2d68aed4c..15639012661f 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:22 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:34 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -33,16 +33,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "115", + "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:23 GMT", - "MS-CV": "mRLc36Ud6E2zo6Unol9Wpw.0", + "Date": "Mon, 14 Mar 2022 08:16:37 GMT", + "MS-CV": "cO45Xc362UWZjcMhnX2kFA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VwcpYgAAAABQT/7nQZ2tSaDDCt4jWdSOUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05fkuYgAAAABurLyYPUTUQK47Sn0HhLQuUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "48ms" + "X-Processing-Time": "46ms" }, "ResponseBody": { "identity": { @@ -50,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:23.6404059\u002B00:00" + "expiresOn": "2022-03-15T08:16:37.954027\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 98c8f7593b2a..3c66cc476349 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:21 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:33 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -34,11 +34,11 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:21 GMT", - "MS-CV": "\u002BEa4THbFQU6mknsVmlKdnw.0", + "Date": "Mon, 14 Mar 2022 08:16:35 GMT", + "MS-CV": "MnhsOnGoukmZ4R31RjWDUA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VQcpYgAAAACUSyw1HqxKSZQKaf5g98TAUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05PkuYgAAAAAh27Bn/jM2Sr6d2C\u002Bk6gKxUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "43ms" @@ -49,7 +49,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:21.9066811\u002B00:00" + "expiresOn": "2022-03-15T08:16:36.7139488\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 29f472811429..479382d7704d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:23 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:35 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:24 GMT", - "MS-CV": "Anr7KozLg0qbZeMmJ7\u002BfVA.0", + "Date": "Mon, 14 Mar 2022 08:16:38 GMT", + "MS-CV": "NXJaux\u002BqI0ONT5OkrZ3EDA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0WAcpYgAAAAColg3PBEcCSJ6lUJTT5p0TUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05vkuYgAAAACxmKvnZZPmTJJd6L\u002B2dPfEUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "34ms" }, "ResponseBody": { "identity": { @@ -64,21 +64,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:24 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:36 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 20:00:24 GMT", - "MS-CV": "1//3aRk9k02dSRK38Decxg.0", + "Date": "Mon, 14 Mar 2022 08:16:38 GMT", + "MS-CV": "7Xpd1WFIQkqfndZRReDmJQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0WAcpYgAAAADsJeHPwJvFQrma9JpHFMDHUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05vkuYgAAAACZUkk1CaweTI8pJDelfM0vUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "156ms" + "X-Processing-Time": "97ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 3c28f212bc25..c3416b97a1aa 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:22 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:34 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:22 GMT", - "MS-CV": "molsfqcEdUe2UYpRJeq\u002B1w.0", + "Date": "Mon, 14 Mar 2022 08:16:36 GMT", + "MS-CV": "HtspnpfdqEiQOc099Z8zLw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VgcpYgAAAABV8cVH2PrVRrdo0HP6p9H9UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05fkuYgAAAABjNqgCQWpUSb/hZjENajALUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "identity": { @@ -66,8 +66,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:22 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:34 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -80,18 +80,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:23 GMT", - "MS-CV": "1Ib/rqccnEWQMcO9aylE1g.0", + "Date": "Mon, 14 Mar 2022 08:16:36 GMT", + "MS-CV": "jNUGILS8mkWbKoKraHf\u002BAg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VwcpYgAAAABMv5tgYo4QT7ubeLZf/iVeUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05fkuYgAAAABNPAr6qd5qTqtyl8WA711\u002BUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "34ms" + "X-Processing-Time": "37ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:23.2883561\u002B00:00" + "expiresOn": "2022-03-15T08:16:37.6783836\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index 8da8b5d24073..9b9a0a90a6e2 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:21 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:33 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:22 GMT", - "MS-CV": "0/VRuv1DjUeoc2\u002Bnz7FWFw.0", + "Date": "Mon, 14 Mar 2022 08:16:36 GMT", + "MS-CV": "VcIydcEfWU\u002B3PnueMKQzLw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VgcpYgAAAABrdsz8z0iCQYcXzSsShqGnUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05PkuYgAAAAD2Q47Kw7t0Qo33ttDu90kCUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "27ms" }, "ResponseBody": { "identity": { @@ -66,8 +66,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:21 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:34 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -79,18 +79,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:22 GMT", - "MS-CV": "p2a9hiumOkeZpVm98pl2uA.0", + "Date": "Mon, 14 Mar 2022 08:16:36 GMT", + "MS-CV": "FzspHV1h9EKjWRKnk\u002BiUvA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VgcpYgAAAADrWeMKeeGlTI30A03eNeemUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05fkuYgAAAABY30ltA1ibSJFTk7fPsECBUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "37ms" + "X-Processing-Time": "39ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:22.5319416\u002B00:00" + "expiresOn": "2022-03-15T08:16:37.1979036\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 83756750ac75..5b4af1a4d9bd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:23 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:35 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -35,14 +35,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:23 GMT", - "MS-CV": "cWwXniW4akaBWxvEW91uuw.0", + "Date": "Mon, 14 Mar 2022 08:16:37 GMT", + "MS-CV": "wQ\u002BUzfPaTUyS7D9LkA0LWA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0VwcpYgAAAAAR7nMymtWaQ59fPmLz78AQUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05vkuYgAAAAB4BPGTXjRBTKnTeNJGbdgXUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "59ms" + "X-Processing-Time": "64ms" }, "ResponseBody": { "identity": { @@ -50,7 +50,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:23.9574839\u002B00:00" + "expiresOn": "2022-03-15T08:16:38.2373293\u002B00:00" } } }, @@ -74,21 +74,21 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:23 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:35 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 20:00:24 GMT", - "MS-CV": "SuVIdhsJs0SKOZzhIBF/Qg.0", + "Date": "Mon, 14 Mar 2022 08:16:37 GMT", + "MS-CV": "t82dpZSK4USLPNd08Ip86g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0WAcpYgAAAABXQ4lo/rS0Q4ZVXoxr93hFUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05vkuYgAAAADMkp4yU4vSQqTcBKPQ3DRLUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "100ms" + "X-Processing-Time": "163ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index cc44f0d72dcd..6e1713a174fb 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:13 GMT", - "MS-CV": "Vk5x/lkUqkquGbVLlGyfng.0", + "Date": "Mon, 14 Mar 2022 08:16:29 GMT", + "MS-CV": "2rxWSxFKq0\u002BatfTWCJJWdw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0TQcpYgAAAAAdhQQl1zTnTZhEiyN/Jf4FUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "03fkuYgAAAAB4ZH7VBe7HT4T/vVw7xNjlUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 1b99ac9c76b8..88d4ca48ee66 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -33,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:16 GMT", - "MS-CV": "6mXy0y6fCkurx/uyEjr47g.0", + "Date": "Mon, 14 Mar 2022 08:16:31 GMT", + "MS-CV": "mpFoS9HAzkOhEtJZPPmvlw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0UAcpYgAAAAAiI5rx4dQdQbCVRiG5JJr6UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04PkuYgAAAAApM7mnucWqS4HfSxcaypA9UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "52ms" + "X-Processing-Time": "42ms" }, "ResponseBody": { "identity": { @@ -48,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:16.4923518\u002B00:00" + "expiresOn": "2022-03-15T08:16:32.2299488\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index 18b16b78089e..c316a7072e62 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -32,14 +32,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:14 GMT", - "MS-CV": "MrrxUiDPjUerrM6t1waQNw.0", + "Date": "Mon, 14 Mar 2022 08:16:29 GMT", + "MS-CV": "KVhbDQhrVE\u002Bl7pILnld9DQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0TgcpYgAAAAAabgmGPJFOQp\u002B0s7X/cGnUUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "03vkuYgAAAADkaF9gwGLeR7tvcwoLQxutUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "40ms" + "X-Processing-Time": "39ms" }, "ResponseBody": { "identity": { @@ -47,7 +47,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:14.3593288\u002B00:00" + "expiresOn": "2022-03-15T08:16:30.3292657\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 7cccd9d7efe4..5f2fadc531f3 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:18 GMT", - "MS-CV": "8d9FrFFLZkanlT7vD0ELpQ.0", + "Date": "Mon, 14 Mar 2022 08:16:32 GMT", + "MS-CV": "DhXAz8KoX0GR6ctjhs4zFA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0UgcpYgAAAAABP2O2X6evRaZ5s\u002BLZhcGuUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04fkuYgAAAABaT0oE\u002BSZXRLmONUQx0FLrUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -61,20 +61,20 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 20:00:18 GMT", - "MS-CV": "qPnjxV0i1U27ycCDsiUs8w.0", + "Date": "Mon, 14 Mar 2022 08:16:33 GMT", + "MS-CV": "92T6ooLC3kalJGlnWbdrIg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0UgcpYgAAAACYEok3tlDcSYQetdJIMsKrUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04fkuYgAAAABERYCrIHmTT7X7IFUuY/R5UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "158ms" + "X-Processing-Time": "152ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 8e2e29a356c7..7d0dd707e86b 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:15 GMT", - "MS-CV": "6qmilOnov0aXqMGbb2wCow.0", + "Date": "Mon, 14 Mar 2022 08:16:30 GMT", + "MS-CV": "YjgRVQ7LmUuNUxq1t\u002B\u002BjtQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0TwcpYgAAAAASCNmzEP4SToujcd\u002B3iWfkUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "03/kuYgAAAAAw0mZ9mz6SRryB7veq\u002BCEhUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "28ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -63,7 +63,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -76,18 +76,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:15 GMT", - "MS-CV": "s9lyD6tN7kKnFa7jiZ4FJQ.0", + "Date": "Mon, 14 Mar 2022 08:16:30 GMT", + "MS-CV": "fInQFnIja0eTBJGPm9l2rA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0TwcpYgAAAAABWdULPh2mTZOGNnlPaQ65UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "03/kuYgAAAABLo7NyE0VwSaTJyNIySVH7UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "34ms" + "X-Processing-Time": "32ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:17.0215149\u002B00:00" + "expiresOn": "2022-03-15T08:16:31.7309507\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index a6600ccf3804..54760c3a83e5 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:14 GMT", - "MS-CV": "GI8o7Lr4wUqY7Yu/yAZP8w.0", + "Date": "Mon, 14 Mar 2022 08:16:30 GMT", + "MS-CV": "Skz3x3nTfEuMrvd2vL8AqQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0TgcpYgAAAAApChuq0yEmQbzmXG6C4kORUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "03vkuYgAAAAC5I/yycM8nS4iXsxUIG1AUUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "24ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "identity": { @@ -63,7 +63,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -75,18 +75,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:15 GMT", - "MS-CV": "\u002BrLVr8nbd06UezpmbvD60w.0", + "Date": "Mon, 14 Mar 2022 08:16:30 GMT", + "MS-CV": "y2VqNBV5QkehpuTtDik9gw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0TwcpYgAAAADswCZze3qqQoaZQnO4cmQMUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "03vkuYgAAAABV9dgMYe66SaGhQIrEptntUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "33ms" + "X-Processing-Time": "60ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:15.1984724\u002B00:00" + "expiresOn": "2022-03-15T08:16:31.0409987\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index 46556844554f..9a06251969cd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "createTokenWithScopes": [ @@ -33,14 +33,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:17 GMT", - "MS-CV": "KGSdecmcrU2MH0bs2YH\u002B/Q.0", + "Date": "Mon, 14 Mar 2022 08:16:31 GMT", + "MS-CV": "jsHfFRb\u002BzEurx7pW4LuAFQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0UQcpYgAAAACRE1qdzP3DRrk5ITBQej8OUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04PkuYgAAAACnBV6pSCzYR5Pnn\u002BweReM9UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "40ms" + "X-Processing-Time": "47ms" }, "ResponseBody": { "identity": { @@ -48,7 +48,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T20:00:17.4154127\u002B00:00" + "expiresOn": "2022-03-15T08:16:32.6752442\u002B00:00" } } }, @@ -71,20 +71,20 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 20:00:17 GMT", - "MS-CV": "NoDZO3vCpUKObOZo0Ldd8w.0", + "Date": "Mon, 14 Mar 2022 08:16:32 GMT", + "MS-CV": "uNg7BjuTb0yrBisCbvlITA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0UQcpYgAAAACtkRbN0qQCQIyWX/ykNcuNUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04PkuYgAAAAAljS3is1pOSIZxb/PyIc4TUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "244ms" + "X-Processing-Time": "121ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 477ed6922a1e..171664d5fca3 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -18,22 +18,22 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:20 GMT", - "MS-CV": "aSQAKH/oJ0ifFpj4GjMW6w.0", + "Date": "Mon, 14 Mar 2022 08:16:35 GMT", + "MS-CV": "1i2/G6Dp1kyAVCsG8rRcfA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0VQcpYgAAAAAk0yTXQg0FQrb55ZRLGPJzUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04/kuYgAAAADYpkkxzHFTTZk238PtLXRUUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "17ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 1ddb1ff782a8..849f302e125d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -32,12 +32,12 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:19 GMT", - "MS-CV": "wdNKvUI4GkGyg8S/kGKj2w.0", + "Date": "Mon, 14 Mar 2022 08:16:34 GMT", + "MS-CV": "8M/ox\u002BuFFEGwjPbtRWkDZw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0UwcpYgAAAAAeS5bIh5JBTIa91lHU/F5ZUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04vkuYgAAAAByQOpHjRneSoLf9/cOIAREUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", "X-Processing-Time": "17ms" diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 288edd171426..6101f039b579 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -20,7 +20,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -28,14 +28,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:19 GMT", - "MS-CV": "pcFb7tFONUmgyGQahwupfg.0", + "Date": "Mon, 14 Mar 2022 08:16:33 GMT", + "MS-CV": "ynuruFpJvUmp\u002B4woWbs6nA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0UwcpYgAAAACaObiTsa3\u002BRriOVrZBptM2UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04vkuYgAAAADqjbPbcMCmT5Unpe\u002B6BTXnUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -63,7 +63,7 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [] @@ -72,15 +72,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:19 GMT", - "MS-CV": "WhqEizjSDU635DdCQ\u002B6ZUA.0", + "Date": "Mon, 14 Mar 2022 08:16:33 GMT", + "MS-CV": "ZYP3TVubA0\u002BLSHb6gkWFFA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0UwcpYgAAAAC/e7j9grS1R4bWDilxLDiLUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04vkuYgAAAAB\u002BSVTPXe8QTpSEFZoO0AOAUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "13ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 6c2491199cab..7f62f148af0d 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -19,22 +19,22 @@ "Sec-Fetch-Site": "same-site", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:20 GMT", - "MS-CV": "en3bqsucgEWpXla6vkyYMA.0", + "Date": "Mon, 14 Mar 2022 08:16:34 GMT", + "MS-CV": "kH0xdl0UcU6ds2XMOtBSmg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0VAcpYgAAAAAWf\u002B\u002BenqVxQLXNVnHxQA/SUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "04/kuYgAAAABxAcur\u002BJMXQJp3Kh7xq2kwUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "20ms" + "X-Processing-Time": "14ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 9ebb534a238d..142b02caf7fb 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -19,23 +19,23 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:25 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:37 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:26 GMT", - "MS-CV": "nW2O25FL7Uy2iJMH0o1OXA.0", + "Date": "Mon, 14 Mar 2022 08:16:39 GMT", + "MS-CV": "SExzbaIU2Ee9FVdCsdQQrA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0WgcpYgAAAAAgavkiMvUkS7LC0vDc\u002BDlJUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "06PkuYgAAAACzO73/0u3ERa2k8oOegP1FUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "20ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 8a1895ce735f..2ee34db64bcd 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:25 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:36 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [ @@ -34,15 +34,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:25 GMT", - "MS-CV": "JAdWjDhMPk2GDFuHOpTGog.0", + "Date": "Mon, 14 Mar 2022 08:16:39 GMT", + "MS-CV": "lZDV3hWs5UePRqwHOA08yQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0WQcpYgAAAAA57dsz\u002B7RiQrhgfteT68/KUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05/kuYgAAAABUVQ\u002BveqB7S4ogw72UukoUUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "20ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index a0e1221a5c29..f222f92aaf96 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -21,8 +21,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:24 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:36 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 201, @@ -30,14 +30,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:24 GMT", - "MS-CV": "c46mDO4rhk6Jn\u002B1JvoRqLg.0", + "Date": "Mon, 14 Mar 2022 08:16:38 GMT", + "MS-CV": "SuTmDiPQfk2gyriCFb3Saw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0WQcpYgAAAABqqcv7GKKCRYZtMod\u002BbaGCUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05/kuYgAAAACf0zlrO5ZLSJKFhzoXTO1eUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "32ms" + "X-Processing-Time": "35ms" }, "ResponseBody": { "identity": { @@ -66,8 +66,8 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:24 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:36 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": { "scopes": [] @@ -76,15 +76,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:25 GMT", - "MS-CV": "Mm7v9brRBUyKATl\u002BsH\u002B3QQ.0", + "Date": "Mon, 14 Mar 2022 08:16:38 GMT", + "MS-CV": "5xtvYkIXk0STTji4Iqsjxg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0WQcpYgAAAAB6cWQrNo/CSITsYLJCsIoWUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05/kuYgAAAABH8P4QhsmlQpkYEi0m\u002B2yZUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 2b254e913993..c1168d349382 100644 --- a/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/browsers/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -20,23 +20,23 @@ "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/93.0.4577.0 Safari/537.36", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:25 GMT", - "x-ms-useragent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" + "x-ms-date": "Mon, 14 Mar 2022 08:16:37 GMT", + "x-ms-useragent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 OS/Win32" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:26 GMT", - "MS-CV": "kG2FLIAmIECNGTUyIUXCng.0", + "Date": "Mon, 14 Mar 2022 08:16:39 GMT", + "MS-CV": "SwsaqQtPuUioRrWMN6MYVQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0WgcpYgAAAACJDhhXd8\u002BOQ5WpjNc6r7K7UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "05/kuYgAAAAAZDlHTOkLzQaIwMcFwLPtrUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json index b72229d4f91f..27a91643ed05 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:56 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:11 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:57 GMT", - "MS-CV": "DBhnFhMOY0KaK2WAiR0alw.0", + "Date": "Mon, 14 Mar 2022 08:16:13 GMT", + "MS-CV": "8zNhAn0aDUCKYLgyYXiDwg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PQcpYgAAAADTTVDVfbU7R66T1yF9npW3UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0zvkuYgAAAADEsPtqQArkSLNlm2kUAoRxUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "33ms" + "X-Processing-Time": "72ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index 9ec10cc3c47a..9688047d055b 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:58 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:12 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:59 GMT", - "MS-CV": "ZnnZnpg3SU60ZCA6nL/PcQ.0", + "Date": "Mon, 14 Mar 2022 08:16:15 GMT", + "MS-CV": "UwWNHsgY5E\u002Ba8Jk7qDzUIg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PwcpYgAAAABp5Oh\u002B42CGQKucBWFuv56nUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0z/kuYgAAAAAbuhWsf91PQqMbf\u002BeIomSaUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "46ms" + "X-Processing-Time": "58ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:59.3868762\u002B00:00" + "expiresOn": "2022-03-15T08:16:15.7616107\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json index 6d5f15331576..0b8679e8ede8 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_creates_a_user_and_token.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "34", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "k4k9IoKBLYipoiXK3LctfBcfghISSb6AI45ji7ILZfg=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:57 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:11 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -25,14 +25,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:57 GMT", - "MS-CV": "8ESPslFiP0u6AB24PI/\u002Biw.0", + "Date": "Mon, 14 Mar 2022 08:16:13 GMT", + "MS-CV": "UCb7HKIyNE2Q84oN48iiGg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PQcpYgAAAABd71g7ckPRSadwfYdLDmsSUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0zvkuYgAAAAAGD5RLpHNERIL4AWqaYmEQUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "41ms" + "X-Processing-Time": "48ms" }, "ResponseBody": { "identity": { @@ -40,7 +40,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:57.9386582\u002B00:00" + "expiresOn": "2022-03-15T08:16:14.5611624\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json index 30bfe4aabcbd..cf34b60cbb4f 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_deletes_a_user.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:59 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:13 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:00 GMT", - "MS-CV": "9DSy8ECcIEqjXa5XWCkofA.0", + "Date": "Mon, 14 Mar 2022 08:16:15 GMT", + "MS-CV": "RaAZkTgu0UegYkeK/DXkvQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0QAcpYgAAAACpoHyozeD5RYN06AFDTdYwUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00PkuYgAAAACnupvFfLsGTKv/LnhBg\u002BmLUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "34ms" }, "ResponseBody": { "identity": { @@ -44,23 +44,23 @@ "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:00 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:13 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 20:00:00 GMT", - "MS-CV": "ZfLzaMWMvEWESdL8sW6wWw.0", + "Date": "Mon, 14 Mar 2022 08:16:16 GMT", + "MS-CV": "Nc0opbmQ1UidCD2\u002BZ\u002BZD8w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0QAcpYgAAAAAP8rvMaZDuTadT47nbBovSUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00PkuYgAAAACs70I4f2cTQJGHXR8J62nyUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "158ms" + "X-Processing-Time": "147ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index 89a676444aaa..a1b36086606e 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:58 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:12 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:58 GMT", - "MS-CV": "b3ZinLjME0i1PR4RhDdiNg.0", + "Date": "Mon, 14 Mar 2022 08:16:14 GMT", + "MS-CV": "zPqJgeTn/EeX1thq8Pzwug.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PgcpYgAAAADsGVzDN\u002BuhQLHpyCLDls/sUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0z/kuYgAAAADMod2XAzrsRJnAWKoSNIe5UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "25ms" }, "ResponseBody": { "identity": { @@ -46,10 +46,10 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:58 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:12 GMT" }, "RequestBody": { "scopes": [ @@ -62,18 +62,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:58 GMT", - "MS-CV": "o4at6Axp9UWS8Ftd73MFAA.0", + "Date": "Mon, 14 Mar 2022 08:16:14 GMT", + "MS-CV": "2kJIuQEiI0yFrl7BNUeENQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PgcpYgAAAACJtjbwbpvhRqGhe9Eq/My4UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0z/kuYgAAAACjEMS3ETcVR7tfiJzM2kuvUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "43ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:59.0766678\u002B00:00" + "expiresOn": "2022-03-15T08:16:15.4900159\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json index e6dc552c0f5d..5836429ca40d 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:57 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:11 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:58 GMT", - "MS-CV": "vQIuJNixRUijQYjzNpVwYg.0", + "Date": "Mon, 14 Mar 2022 08:16:14 GMT", + "MS-CV": "l3gRkFT4ZUCJoZ8nY9bGtw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PgcpYgAAAAC0\u002BaUl477RRYp9XUICXnMUUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0zvkuYgAAAACgO06V2bd8RLl/s1/Y8DKMUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -46,10 +46,10 @@ "Connection": "keep-alive", "Content-Length": "19", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "J\u002BdoRQjtFVYLx3qOvzptwBLjQWqy6OEWEEk1TY1\u002BrT4=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:57 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:11 GMT" }, "RequestBody": { "scopes": [ @@ -61,18 +61,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:58 GMT", - "MS-CV": "jSDsU8mybUGOn/hM9aU09w.0", + "Date": "Mon, 14 Mar 2022 08:16:14 GMT", + "MS-CV": "9WbgKpI110aUSQwApn6r8w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PgcpYgAAAACldz8KfFPsSIiXMvBSXI03UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0zvkuYgAAAAD0efb3xSw2So6ANvcnfvq2UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "39ms" + "X-Processing-Time": "36ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:58.4707092\u002B00:00" + "expiresOn": "2022-03-15T08:16:15.0300247\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json index 0693bbc1eef7..d897a72e85c6 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "fYTayOkxDFdoXd25BoJTvoTLLr5\u002BQVfLFXvdJep6oNs=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:59 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:12 GMT" }, "RequestBody": { "createTokenWithScopes": [ @@ -26,14 +26,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:59 GMT", - "MS-CV": "kqvyVMda7EGQ8uwzFd7ACA.0", + "Date": "Mon, 14 Mar 2022 08:16:15 GMT", + "MS-CV": "F7hlzh13AUWnaLGP\u002BZIOEA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0PwcpYgAAAAAx33H3LOzUTYqDV\u002BDA3a\u002BIUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0z/kuYgAAAAB6XYEomoqJR59p9zQ2MY\u002BSUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "51ms" + "X-Processing-Time": "47ms" }, "ResponseBody": { "identity": { @@ -41,7 +41,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:59.7862728\u002B00:00" + "expiresOn": "2022-03-15T08:16:16.0270872\u002B00:00" } } }, @@ -54,23 +54,23 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 19:59:59 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:13 GMT" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 20:00:00 GMT", - "MS-CV": "V20pijqi40KFNfGg09AHew.0", + "Date": "Mon, 14 Mar 2022 08:16:15 GMT", + "MS-CV": "Cbii/8kCh0il3Zygi5ynNw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0QAcpYgAAAAD/qhxqVbynR6MElZb9jH6GUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00PkuYgAAAABkiICsPSdPSrcIHc5t2Q57UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "98ms" + "X-Processing-Time": "121ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json index 67a63c673b89..b6a24394cd08 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:47 GMT", - "MS-CV": "JCq5rgRzJki9iJ4U4isggQ.0", + "Date": "Mon, 14 Mar 2022 08:16:05 GMT", + "MS-CV": "6FmnZ90kFkmY0vK46GEpXw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0MwcpYgAAAACwBuArDKNaRbG7Ip43CuUNUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0xfkuYgAAAADNdb7LvXWsRJtGm\u002B8gXZG6UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "269ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "identity": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json index de0f094cb22d..0f3226dc97b5 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_gets_a_token_in_a_single_request.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:51 GMT", - "MS-CV": "dUXRZKodCkSn97Mxz4Tixg.0", + "Date": "Mon, 14 Mar 2022 08:16:08 GMT", + "MS-CV": "slsVRFCBikGkblfeFQCabA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0NwcpYgAAAABVbFOI8WHIRLksfz50/LQ4UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0yfkuYgAAAACMhHCUpGsWTr5pjPOwYTzAUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "44ms" + "X-Processing-Time": "38ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:51.2743352\u002B00:00" + "expiresOn": "2022-03-15T08:16:09.2169469\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json index e3fdb79414b5..608869569e39 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_creates_a_user_and_token.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "34", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -21,16 +21,16 @@ "StatusCode": 201, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "115", + "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:48 GMT", - "MS-CV": "w1Ss6FIAKUWjqgPE4\u002Bh5Jw.0", + "Date": "Mon, 14 Mar 2022 08:16:06 GMT", + "MS-CV": "utiKSJ632kS7fQ34q\u002Ba0Bw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0NAcpYgAAAABg9gTRC8TgQ7VV8SKYEEcKUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0xvkuYgAAAABAB2zrLIRbR638KS76t247UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "39ms" + "X-Processing-Time": "43ms" }, "ResponseBody": { "identity": { @@ -38,7 +38,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:48.2062508\u002B00:00" + "expiresOn": "2022-03-15T08:16:06.730992\u002B00:00" } } } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json index 630b42804515..122ce52d9166 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_deletes_a_user.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:53 GMT", - "MS-CV": "C78FjLPiIEueLgF5RzSdqQ.0", + "Date": "Mon, 14 Mar 2022 08:16:10 GMT", + "MS-CV": "pQHTkSEQ\u002BUO/7U6\u002Byh/wAg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0OQcpYgAAAADrFPBAcG0oQq/MioYH1u3jUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0yvkuYgAAAAAKpeuuyrAVSoUTlKbxoy6nUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "22ms" }, "ResponseBody": { "identity": { @@ -42,21 +42,21 @@ "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 19:59:53 GMT", - "MS-CV": "R4OsAkJNREaYeYFIutzHxw.0", + "Date": "Mon, 14 Mar 2022 08:16:10 GMT", + "MS-CV": "Vgr2u/YaaEqdQgC23TbGvg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0OQcpYgAAAAAYpTWqDdqtQIjUq9RfAelaUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0yvkuYgAAAACRxmmb/YrmSLZflCWW2J/dUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "147ms" + "X-Processing-Time": "144ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json index dcf5f92b2899..f135d8db12e9 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_multiple_scopes.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:50 GMT", - "MS-CV": "lT3WQwwAWECoEhfUXtiKZA.0", + "Date": "Mon, 14 Mar 2022 08:16:07 GMT", + "MS-CV": "Syycumgd0Ea4HeSjFRonmQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0NQcpYgAAAADdq5jbQ3NuT6XKkEqv7kdnUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0yPkuYgAAAABgP07G/SJTRpkZSCnaeugrUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "31ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "identity": { @@ -44,7 +44,7 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -56,20 +56,20 @@ "StatusCode": 200, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Content-Length": "68", + "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:50 GMT", - "MS-CV": "vedvDjzdl0yUgx4fv2mP7A.0", + "Date": "Mon, 14 Mar 2022 08:16:07 GMT", + "MS-CV": "pPd14bXa5EuUHSgepITWhg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0NgcpYgAAAACG4MYZJaFwSILbgeJq65lvUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0yPkuYgAAAACa1idOMQmUTI3sSQkMoO8EUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "34ms" + "X-Processing-Time": "36ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:50.427813\u002B00:00" + "expiresOn": "2022-03-15T08:16:08.5366948\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json index 911a1012f388..cba7bb4ff71a 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_gets_a_token_for_a_user_single_scope.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:48 GMT", - "MS-CV": "F6YIeR7qpEeztgn16QUkrA.0", + "Date": "Mon, 14 Mar 2022 08:16:06 GMT", + "MS-CV": "nP9sye4I\u002BU\u002BVW4Czl718Lw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0NAcpYgAAAADTv5AybWBVRoXN4hIDC/m7UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0x/kuYgAAAADHJY4dI0JuSK57iTm0dwt6UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "26ms" + "X-Processing-Time": "36ms" }, "ResponseBody": { "identity": { @@ -44,7 +44,7 @@ "Connection": "keep-alive", "Content-Length": "19", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -57,18 +57,18 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:49 GMT", - "MS-CV": "yFVDHXo/b02J5NCPDYhDZg.0", + "Date": "Mon, 14 Mar 2022 08:16:06 GMT", + "MS-CV": "ta\u002BaACevVkWENfMLh7v1kA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0NQcpYgAAAACEYdqRdOuTSZd7fBsKFmsxUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0x/kuYgAAAAC8vZyubykdQbUyGQL/nY3PUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "36ms" + "X-Processing-Time": "31ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:49.2351354\u002B00:00" + "expiresOn": "2022-03-15T08:16:07.5924476\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json index 56de60e2bbde..233971ff2027 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad/recording_successfully_revokes_tokens_issued_for_a_user.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "41", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -24,14 +24,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "115", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:51 GMT", - "MS-CV": "8YR4HX4eq02\u002BTg0sr80ZSg.0", + "Date": "Mon, 14 Mar 2022 08:16:09 GMT", + "MS-CV": "T4ppMCdwTEaSXF4KvybOsA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0NwcpYgAAAAAXknUEEcuZQqbhLqXkfJpGUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0yfkuYgAAAABw2cSYBn1jQrGBKUdk60R3UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "38ms" + "X-Processing-Time": "35ms" }, "ResponseBody": { "identity": { @@ -39,7 +39,7 @@ }, "accessToken": { "token": "sanitized", - "expiresOn": "2022-03-10T19:59:52.0575326\u002B00:00" + "expiresOn": "2022-03-15T08:16:09.8947783\u002B00:00" } } }, @@ -52,21 +52,21 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", - "Date": "Wed, 09 Mar 2022 19:59:52 GMT", - "MS-CV": "7YPR//EBdkSfTKFc6ajLSA.0", + "Date": "Mon, 14 Mar 2022 08:16:09 GMT", + "MS-CV": "M4N00UTwWkW74gmRvyhjqg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0OAcpYgAAAAAKvf4g839xRqquPoDQwTu5UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0yfkuYgAAAAA67/C3MKO2Q4Jcc8M0L0FPUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "230ms" + "X-Processing-Time": "125ms" }, "ResponseBody": null } diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 6765c7a63d53..207a598e6a76 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -8,7 +8,7 @@ "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -16,15 +16,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 19:59:57 GMT", - "MS-CV": "GUUOQiAi3EWEXo2LCRkZWg.0", + "Date": "Mon, 14 Mar 2022 08:16:13 GMT", + "MS-CV": "Rp4gDQp3xk6Z8jKH/IpfCQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0PQcpYgAAAABwR/sF1CRXR5tq\u002BEp3PwZjUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0zfkuYgAAAAD4ad48oebgRrytYizwDMlwUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "30ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 6b137d90c850..7ef201eb2f9a 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -23,15 +23,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 19:59:55 GMT", - "MS-CV": "Oi3Ys3JeiU\u002Bb2QlrNEHdVw.0", + "Date": "Mon, 14 Mar 2022 08:16:11 GMT", + "MS-CV": "CQDGOr1Ik0KusxXPlbaKWA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0OwcpYgAAAABjpjf1CrBYQqBno6uWm54HUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0zPkuYgAAAAD1eBXYKEj4R5l0thPbhmjwUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "16ms" + "X-Processing-Time": "20ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 2a48e8d3c735..513aff6c4471 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -19,14 +19,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 19:59:54 GMT", - "MS-CV": "\u002BGvG/YtD202FZr8Wlb\u002BjBQ.0", + "Date": "Mon, 14 Mar 2022 08:16:11 GMT", + "MS-CV": "d8jl3wkLikO8tGZGb80Lmw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0OgcpYgAAAAAqUJPPx2PLQoGGHzgdGLgsUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0y/kuYgAAAAC/lWtg3CbJTrcWwINfYtBoUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "23ms" }, "ResponseBody": { "identity": { @@ -44,7 +44,7 @@ "Connection": "keep-alive", "Content-Length": "13", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -54,15 +54,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 19:59:54 GMT", - "MS-CV": "R9lYv0r2/kSJr/cMmGiwXQ.0", + "Date": "Mon, 14 Mar 2022 08:16:11 GMT", + "MS-CV": "mU2y3rDxMEy5dfVL\u002Bmy5zw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0OgcpYgAAAACQtdbJrTkvSZb7XS\u002Behw8aUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0y/kuYgAAAAAhKxC8gbZBSKn\u002Bcu6ApSUXUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "15ms" + "X-Processing-Time": "18ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index b9f25c772d6e..2314cfd44c0c 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_aad_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -9,7 +9,7 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": null, @@ -17,15 +17,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 19:59:56 GMT", - "MS-CV": "mTnayTeZYkey\u002BrVL8OaPqw.0", + "Date": "Mon, 14 Mar 2022 08:16:12 GMT", + "MS-CV": "KpWirZy24067Oz0YDefkyg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0PAcpYgAAAACwyRcYRzKxQaoTlF0XtDDqUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "0zfkuYgAAAAC/O6La8dVYTYQRP0dHoLvCUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "41ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json index 0dd2831fb133..9eca2ab201bb 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_delete_an_invalid_user.json @@ -8,25 +8,25 @@ "Accept-Encoding": "gzip,deflate", "Authorization": "Sanitized", "Connection": "keep-alive", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:01 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:15 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:02 GMT", - "MS-CV": "XX/qGIQksEu4OUw\u002Be4NHWw.0", + "Date": "Mon, 14 Mar 2022 08:16:17 GMT", + "MS-CV": "ghI2GKE38U6SP0zLj1aIzg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0QgcpYgAAAADMulDi37sPTYQGJaUrP1PNUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00fkuYgAAAACfKpi/4UQnQ7pRQjLBiSRhUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "21ms" + "X-Processing-Time": "26ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json index 46149a288a9c..9194c7fad107 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_for_an_invalid_user.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "26", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "EqW/vFkRi/EMVlRLG6\u002Bkt0X27SowO7NytIh/miHOZlY=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:01 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:14 GMT" }, "RequestBody": { "scopes": [ @@ -25,15 +25,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:01 GMT", - "MS-CV": "QUA/wO45s0muL\u002BvyJaD42A.0", + "Date": "Mon, 14 Mar 2022 08:16:16 GMT", + "MS-CV": "9cEK/vwioUeDNK0IXMqJLw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0QQcpYgAAAAD4YDJL/8L3SLTnDB88GmfsUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00fkuYgAAAAAnAAzwyVDzSqKsXkvf4iwLUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "23ms" + "X-Processing-Time": "20ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json index 2a53e54febfd..a16923c4e8d1 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_issue_a_token_without_any_scopes.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "0", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:00 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:14 GMT" }, "RequestBody": null, "StatusCode": 201, @@ -21,14 +21,14 @@ "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Length": "31", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:01 GMT", - "MS-CV": "h3WZ6/8dy0KVjv5tZhSyaw.0", + "Date": "Mon, 14 Mar 2022 08:16:16 GMT", + "MS-CV": "xS1ZA8w1EESqf/FiS37ZTA.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0QQcpYgAAAABtqsnrOiyGSJ6\u002BI5MI09p\u002BUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00fkuYgAAAACddTVFDbraTL/D8TyXhRDcUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "39ms" + "X-Processing-Time": "33ms" }, "ResponseBody": { "identity": { @@ -46,10 +46,10 @@ "Connection": "keep-alive", "Content-Length": "13", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "60\u002BXGy/KS72mYCMozQDW1tzfkFvdp5Qzbvub34UOQ5s=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:00 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:14 GMT" }, "RequestBody": { "scopes": [] @@ -58,15 +58,15 @@ "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:01 GMT", - "MS-CV": "FSkFEQ1bPUKBZTvkxZHuow.0", + "Date": "Mon, 14 Mar 2022 08:16:16 GMT", + "MS-CV": "T5zCf8bt4Uu3ldA7T9BiTg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0QQcpYgAAAADDZMkClTcKTaTt72Y6i2/iUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00fkuYgAAAAAbcDxqZbgAS5fKK/R\u002BCDDSUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "22ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json index 755b8e4e1f67..4d27af2503b7 100644 --- a/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json +++ b/sdk/communication/communication-identity/recordings/node/communicationidentityclient_playbacklive_error_cases_/recording_throws_an_error_when_attempting_to_revoke_a_token_from_an_invalid_user.json @@ -9,25 +9,25 @@ "Authorization": "Sanitized", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "47DEQpj8HBSa\u002B/TImW\u002B5JCeuQeRkm5NMpJWZG3hSuFU=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:01 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:14 GMT" }, "RequestBody": null, "StatusCode": 401, "ResponseHeaders": { "api-supported-versions": "2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-03-31-preview1, 2021-10-31-preview, 2021-11-01, 2022-06-01", "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:02 GMT", - "MS-CV": "uAppLBYX1UizUtFzxQzFQA.0", + "Date": "Mon, 14 Mar 2022 08:16:17 GMT", + "MS-CV": "y\u002BoJ8Syg0kqhnaETAqWY2Q.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0QgcpYgAAAABNFpHgZbaJSoMerWaochD3UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00fkuYgAAAABeJil5tprqRYyJqrdEXimbUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "21ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index 9b471e2025b8..bb6e60bdcc59 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", - "x-ms-content-sha256": "rZDDngVOkjW2nvS4235BqtpVaBc4aEfkr0S1I8YDG3E=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:06 GMT" + "x-ms-content-sha256": "Ah\u002BAYsTYCxDlGxtDLuIPje1sj3b77sESFS9DrvUpEg4=", + "x-ms-date": "Mon, 14 Mar 2022 08:16:19 GMT" }, "RequestBody": { "token": "sanitized" @@ -23,18 +23,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:07 GMT", - "MS-CV": "gI2F76PmXUS9b1JF6YzCRw.0", + "Date": "Mon, 14 Mar 2022 08:16:22 GMT", + "MS-CV": "qpT13E7cG0OwbFoltUedaQ.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0RwcpYgAAAAAQPwh/8V/yTpEuHzltEbOMUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "01vkuYgAAAABjqhnaJi7OSaF4wtdYNf2kUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "407ms" + "X-Processing-Time": "404ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T21:29:04.6951909\u002B00:00" + "expiresOn": "2022-03-14T09:24:39.7710282\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index 4f15b78ae2e1..d390d3264c18 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "57hhXfjFJ4reUHSXuwlHWm62DSRXMo4VffVX4YLJJbc=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:07 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:19 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:07 GMT", - "MS-CV": "Ip8330QgI02Hazrj8YBlGg.0", + "Date": "Mon, 14 Mar 2022 08:16:22 GMT", + "MS-CV": "8T9qtwOesUORxLYupBTrxw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0RwcpYgAAAACrkK1E2SgVSqPLcyAZlFfPUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "01vkuYgAAAAAID\u002BwdZWcxQ5fl0OR5u6FPUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "19ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index fcbe8cc1e181..fb1f79f6260b 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "H\u002BnYqfONMXXInH6CfRlv35rj5DRwtW5rY88/o2Yx4GE=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:08 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:20 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:08 GMT", - "MS-CV": "Ry2jSiMxzUigQi8NwQGJaw.0", + "Date": "Mon, 14 Mar 2022 08:16:22 GMT", + "MS-CV": "FaQt3aOM7E6RYS0BLqpbCw.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0SAcpYgAAAAC91Z52MOi3R5Ar6C\u002B0b2TbUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "01/kuYgAAAAC7Y39t3FXHSYaWtg9v3RemUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "29ms" + "X-Processing-Time": "36ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index 06c34c114295..113b1d59ef7d 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -10,10 +10,10 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized", "x-ms-content-sha256": "gtdDY7ecMyK\u002BwVq9aXDSvKuc5BiebgjLBB3AqaEwP0k=", - "x-ms-date": "Wed, 09 Mar 2022 20:00:07 GMT" + "x-ms-date": "Mon, 14 Mar 2022 08:16:20 GMT" }, "RequestBody": { "token": "sanitized" @@ -21,15 +21,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:08 GMT", - "MS-CV": "P3QpYhnyEUGDCHSyHYVG\u002BA.0", + "Date": "Mon, 14 Mar 2022 08:16:22 GMT", + "MS-CV": "AJP6Q8vVcUi8Z8JRXevZdg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0SAcpYgAAAAAb8GUDoPONQLnr6lsfL6T/UFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "01/kuYgAAAADcE4Wvu7EHRLeEQ\u002BP5JLWuUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "19ms" + "X-Processing-Time": "18ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json index 620c8cfb2eec..c86b25b6ef13 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_successfully_exchanges_a_teams_user_aad_token_for_a_communication_access_token.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -21,18 +21,18 @@ "api-supported-versions": "2021-03-31-preview1, 2021-10-31-preview, 2022-06-01", "Content-Length": "69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 09 Mar 2022 20:00:03 GMT", - "MS-CV": "SzDSc\u002BoAckKIm1/pRsXx\u002BA.0", + "Date": "Mon, 14 Mar 2022 08:16:18 GMT", + "MS-CV": "gih2b78lQkSw/qV3Mm0N1w.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", - "X-Azure-Ref": "0QwcpYgAAAADiU7mOivyxR4yWzm/76pXhUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "00/kuYgAAAACZHhANIQtESLCIctob4U97UFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "469ms" + "X-Processing-Time": "457ms" }, "ResponseBody": { "token": "sanitized", - "expiresOn": "2022-03-09T21:17:32.1007792\u002B00:00" + "expiresOn": "2022-03-14T09:40:34.5512479\u002B00:00" } } ], diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json index 14b1523f1bc4..198a790755be 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_empty_teams_user_aad_token.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:04 GMT", - "MS-CV": "HVk7YB9pW0up82nxVlGJ5w.0", + "Date": "Mon, 14 Mar 2022 08:16:19 GMT", + "MS-CV": "daAljhlwTUaPE7hi\u002BMle4Q.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0RAcpYgAAAACXYnHwp3avQJPUcoj8gcEMUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "01PkuYgAAAACUhzdXlCoAQKrKiOVE0XbdUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "25ms" + "X-Processing-Time": "16ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json index 0519cd7695bf..e6e7a28113ac 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_expired_teams_user_aad_token.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:06 GMT", - "MS-CV": "qZRNopBnM02xfUzIDvHgrg.0", + "Date": "Mon, 14 Mar 2022 08:16:20 GMT", + "MS-CV": "tuzZEc0nU0qfBI\u002BKIbFS9g.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0RgcpYgAAAAAZuqG\u002B8oPXS4hs2u9LuspTUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "01fkuYgAAAABWs9zozi1XRpOfLLt4WzhmUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "53ms" + "X-Processing-Time": "28ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json index c3655a3f8fe2..6856043d4613 100644 --- a/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json +++ b/sdk/communication/communication-identity/recordings/node/get_token_for_teams_user_playbacklive_aad/recording_throws_an_error_when_attempting_to_exchange_an_invalid_teams_user_aad_token.json @@ -10,7 +10,7 @@ "Connection": "keep-alive", "Content-Length": "21", "Content-Type": "application/json", - "User-Agent": "azsdk-js-azure-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", + "User-Agent": "azsdk-js-communication-identity/1.1.0-beta.2 core-rest-pipeline/1.5.1 Node/v12.22.10 OS/(x64-Windows_NT-10.0.22000)", "x-ms-client-request-id": "sanitized" }, "RequestBody": { @@ -19,15 +19,15 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Type": "application/json", - "Date": "Wed, 09 Mar 2022 20:00:05 GMT", - "MS-CV": "vThfqdiS7kKTFfwFpvxgYA.0", + "Date": "Mon, 14 Mar 2022 08:16:20 GMT", + "MS-CV": "6BkOmFIIwka2IRyWYktdCg.0", "Request-Context": "appId=", "Strict-Transport-Security": "max-age=2592000", "Transfer-Encoding": "chunked", - "X-Azure-Ref": "0RQcpYgAAAABRdzycjRY3TK8laI4/ddAUUFJHMDFFREdFMDcwOABmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", + "X-Azure-Ref": "01PkuYgAAAAAbxOEQBkexT7sm0ICoi\u002BCfUFJHMDFFREdFMDcxNQBmMDlhNGMxMy0yMWYxLTQ4ZWMtOWNmNy02NjU0NTY4NGI2NDI=", "X-Cache": "CONFIG_NOCACHE", "x-ms-client-request-id": "sanitized", - "X-Processing-Time": "13ms" + "X-Processing-Time": "24ms" }, "ResponseBody": { "error": { diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index f528665af96d..9b03cf192d32 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -43,12 +43,6 @@ const sanitizerOptions: SanitizerOptions = { }, ], uriSanitizers: [ - { - regex: true, - target: `/(https://)(?[^/',]*)/`, - value: "endpoint", - groupForReplace: "host_name", - }, { regex: true, target: `(.*)/identities/(?.*?)[/|?](.*)`, From 2c3762a354380a7e9445ee9f233bae65ab50be93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0vihl=C3=ADk?= Date: Wed, 16 Mar 2022 07:37:05 +0100 Subject: [PATCH 33/33] removed outdated comments --- .../communication-identity/test/public/utils/recordedClient.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts index 9b03cf192d32..507ec0f8e0c3 100644 --- a/sdk/communication/communication-identity/test/public/utils/recordedClient.ts +++ b/sdk/communication/communication-identity/test/public/utils/recordedClient.ts @@ -88,7 +88,6 @@ export async function createRecordedCommunicationIdentityClient( recorder.configureClientOptions({}) ); - // casting is a workaround to enable min-max testing return { client, recorder, @@ -120,6 +119,5 @@ export async function createRecordedCommunicationIdentityClientWithToken( recorder.configureClientOptions({}) ); - // casting is a workaround to enable min-max testing return { client, recorder }; }