From d02dbac5dba8bc10d68c722476f8dc16c42de82f Mon Sep 17 00:00:00 2001 From: colawwj <70128817+colawwj@users.noreply.github.com> Date: Fri, 10 Dec 2021 15:49:19 +0800 Subject: [PATCH] redis-track2-GA (#19123) --- common/config/rush/pnpm-lock.yaml | 5 +- sdk/redis/arm-rediscache/CHANGELOG.md | 27 +- sdk/redis/arm-rediscache/LICENSE.txt | 21 - sdk/redis/arm-rediscache/README.md | 4 + sdk/redis/arm-rediscache/_meta.json | 6 +- sdk/redis/arm-rediscache/package.json | 36 +- ...ng_patchschedules_create_for_redis_test.js | 44 +- ...ng_patchschedules_delete_for_redis_test.js | 42 +- ...ules_listbyredisresource_for_redis_test.js | 46 +- .../redis_test/recording_redis_create_test.js | 326 +-- .../redis_test/recording_redis_delete_test.js | 2524 ++++++++++++----- .../redis_test/recording_redis_get_test.js | 44 +- ...ecording_redis_listbyresourcegroup_test.js | 44 +- .../redis_test/recording_redis_update_test.js | 92 +- .../review/arm-rediscache.api.md | 16 +- sdk/redis/arm-rediscache/src/index.ts | 1 - sdk/redis/arm-rediscache/src/models/index.ts | 148 +- .../arm-rediscache/src/models/mappers.ts | 176 +- .../src/operations/firewallRules.ts | 6 +- .../src/operations/linkedServer.ts | 6 +- .../src/operations/operations.ts | 6 +- .../src/operations/patchSchedules.ts | 6 +- .../operations/privateEndpointConnections.ts | 6 +- .../src/operations/privateLinkResources.ts | 6 +- .../arm-rediscache/src/operations/redis.ts | 6 +- .../src/redisManagementClient.ts | 49 +- .../src/redisManagementClientContext.ts | 71 - 27 files changed, 2236 insertions(+), 1528 deletions(-) delete mode 100644 sdk/redis/arm-rediscache/LICENSE.txt delete mode 100644 sdk/redis/arm-rediscache/src/redisManagementClientContext.ts diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 07594c9d2c36..01c111b71e53 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -9586,7 +9586,7 @@ packages: dev: false file:projects/arm-rediscache.tgz: - resolution: {integrity: sha512-tz7W9ElsDyJVOyXZ3bEBZygn9/9Up4+ct470WAprZVgQdS39OI/HVZi4O1fOsLUn8YHYu8B5BHCFELzgqbQB2w==, tarball: file:projects/arm-rediscache.tgz} + resolution: {integrity: sha512-fiy6Vhv19bezcOW5slJhYJBE1cOtziVWRYGGQ6mOmyzatTT1nBsYnPClz9v5O1OeJmCvGTFfaKQn9dcRbzHD8w==, tarball: file:projects/arm-rediscache.tgz} name: '@rush-temp/arm-rediscache' version: 0.0.0 dependencies: @@ -9599,13 +9599,12 @@ packages: cross-env: 7.0.3 mkdirp: 1.0.4 mocha: 7.2.0 + rimraf: 3.0.2 rollup: 1.32.1 rollup-plugin-sourcemaps: 0.4.2_rollup@1.32.1 tslib: 2.3.1 typescript: 4.2.4 uglify-js: 3.14.3 - transitivePeerDependencies: - - supports-color dev: false file:projects/arm-relay.tgz: diff --git a/sdk/redis/arm-rediscache/CHANGELOG.md b/sdk/redis/arm-rediscache/CHANGELOG.md index da7bdf9ef949..79fdf890b107 100644 --- a/sdk/redis/arm-rediscache/CHANGELOG.md +++ b/sdk/redis/arm-rediscache/CHANGELOG.md @@ -1,26 +1,11 @@ # Release History + +## 6.0.0 (2021-12-10) -## 6.0.0-beta.2 (Unreleased) +The package of @azure/arm-rediscache is using our next generation design principles since version 6.0.0, which contains breaking changes. -### Features Added +To understand the detail of the change, please refer to [Changelog](https://aka.ms/js-track2-changelog). -### Breaking Changes +To migrate the existing applications to the latest version, please refer to [Migration Guide](https://aka.ms/js-track2-migration-guide). -### Bugs Fixed - -### Other Changes - -## 6.0.0-beta.1 (2021-10-09) - -This is the first preview for the new version of the `@azure/arm-rediscache` package that follows the new [guidelines for TypeScript SDKs](https://azure.github.io/azure-sdk/typescript_introduction.html) for Azure services. - -While this package remains auto generated, the SDK generator itself has undergone changes to comply with the above guidelines in order to generate packages that are idiomatic to the JavaScript/TypeScript ecosystem and consistent with other packages for Azure services. For more on this, please see [State of the Azure SDK 2021](https://devblogs.microsoft.com/azure-sdk/state-of-the-azure-sdk-2021/). - -Please note that this version has breaking changes, all of which were made after careful consideration during the authoring of the guidelines and user studies. - -**Noteworthy changes and features** -- Authentication: The packages `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` are no longer supported. Use package [@azure/identity](https://www.npmjs.com/package/@azure/identity) instead. Select a credential from Azure Identity examples based on the authentication method of your choice. -- Callbacks: Method overloads that used callbacks have been removed and the use of promises is encouraged instead. -- List operations now return an iterable result that follows the `PagedAsyncIterableIterator` interface as opposed to the previous model where you had to make a new request using the link to the next page. -- Long running operations i.e. the Lro related object returned by methods whose names started with `begin`, now uses `pollUntilDone` to check whether the request is finished, instead of `pollUntilFinished`. To get the final result, use the corresponding method that will have the suffix `AndWait`. -- The SDK only supports ECMAScript 2015 (ES6) and beyond, all projects that referenced this SDK should be upgraded to use ES6. +To learn more, please refer to our documentation [Quick Start](https://aka.ms/js-track2-quickstart). diff --git a/sdk/redis/arm-rediscache/LICENSE.txt b/sdk/redis/arm-rediscache/LICENSE.txt deleted file mode 100644 index ea8fb1516028..000000000000 --- a/sdk/redis/arm-rediscache/LICENSE.txt +++ /dev/null @@ -1,21 +0,0 @@ -The MIT License (MIT) - -Copyright (c) 2020 Microsoft - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/sdk/redis/arm-rediscache/README.md b/sdk/redis/arm-rediscache/README.md index d96ab86bee75..f4240ebb7900 100644 --- a/sdk/redis/arm-rediscache/README.md +++ b/sdk/redis/arm-rediscache/README.md @@ -53,6 +53,10 @@ const subscriptionId = "00000000-0000-0000-0000-000000000000"; const client = new RedisManagementClient(new DefaultAzureCredential(), subscriptionId); ``` + +### JavaScript Bundle +To use this client library in the browser, first you need to use a bundler. For details on how to do this, please refer to our [bundling documentation](https://aka.ms/AzureSDKBundling). + ## Key concepts ### RedisManagementClient diff --git a/sdk/redis/arm-rediscache/_meta.json b/sdk/redis/arm-rediscache/_meta.json index 34eca9a7891a..0f1344845723 100644 --- a/sdk/redis/arm-rediscache/_meta.json +++ b/sdk/redis/arm-rediscache/_meta.json @@ -1,7 +1,7 @@ { - "commit": "70c107255ecd734617cab71f514401151eadb1e9", + "commit": "76f8e0c50629ef12aa338d55782278ceca46212a", "readme": "specification/redis/resource-manager/readme.md", - "autorest_command": "autorest --version=3.1.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\mydev\\azure-sdk-for-js ../azure-rest-api-specs/specification/redis/resource-manager/readme.md --use=@autorest/typescript@6.0.0-beta.13", + "autorest_command": "autorest --version=3.1.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\mydev\\azure-sdk-for-js ../azure-rest-api-specs/specification/redis/resource-manager/readme.md --use=@autorest/typescript@6.0.0-alpha.16.20211130.1", "repository_url": "https://github.com/Azure/azure-rest-api-specs.git", - "use": "@autorest/typescript@6.0.0-beta.13" + "use": "@autorest/typescript@6.0.0-alpha.16.20211130.1" } \ No newline at end of file diff --git a/sdk/redis/arm-rediscache/package.json b/sdk/redis/arm-rediscache/package.json index 8ff1ce59dd11..62a427c0d9e1 100644 --- a/sdk/redis/arm-rediscache/package.json +++ b/sdk/redis/arm-rediscache/package.json @@ -3,27 +3,18 @@ "sdk-type": "mgmt", "author": "Microsoft Corporation", "description": "A generated SDK for RedisManagementClient.", - "version": "6.0.0-beta.2", - "engines": { - "node": ">=12.0.0" - }, + "version": "6.0.0", + "engines": { "node": ">=12.0.0" }, "dependencies": { + "@azure/core-lro": "^2.2.0", "@azure/abort-controller": "^1.0.0", - "@azure/arm-network": "^30.0.0-beta.3", - "@azure/core-auth": "^1.3.0", + "@azure/core-paging": "^1.2.0", "@azure/core-client": "^1.0.0", - "@azure/core-lro": "^2.2.0", - "@azure/core-paging": "^1.1.1", + "@azure/core-auth": "^1.3.0", "@azure/core-rest-pipeline": "^1.1.0", "tslib": "^2.2.0" }, - "keywords": [ - "node", - "azure", - "typescript", - "browser", - "isomorphic" - ], + "keywords": ["node", "azure", "typescript", "browser", "isomorphic"], "license": "MIT", "main": "./dist/index.js", "module": "./dist-esm/src/index.js", @@ -39,19 +30,19 @@ "rollup-plugin-sourcemaps": "^0.4.2", "typescript": "~4.2.0", "uglify-js": "^3.4.9", + "rimraf": "^3.0.0", "@azure/identity": "^2.0.1", "@azure-tools/test-recorder": "^1.0.0", "mocha": "^7.1.1", - "cross-env": "^7.0.2" + "cross-env": "^7.0.2", + "@azure/arm-network": "^26.0.0" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/redis/arm-rediscache", "repository": { "type": "git", "url": "https://github.com/Azure/azure-sdk-for-js.git" }, - "bugs": { - "url": "https://github.com/Azure/azure-sdk-for-js/issues" - }, + "bugs": { "url": "https://github.com/Azure/azure-sdk-for-js/issues" }, "files": [ "dist/**/*.js", "dist/**/*.js.map", @@ -71,14 +62,14 @@ "types/*" ], "scripts": { - "build": "tsc && rollup -c 2>&1 && npm run minify && mkdirp ./review && npm run extract-api", + "build": "npm run clean && tsc && rollup -c 2>&1 && npm run minify && mkdirp ./review && npm run extract-api", "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js", "prepack": "npm run build", "pack": "npm pack 2>&1", "extract-api": "api-extractor run --local", "lint": "echo skipped", "audit": "echo skipped", - "clean": "echo skipped", + "clean": "rimraf dist dist-browser dist-esm test-dist temp types *.tgz *.log", "build:node": "echo skipped", "build:browser": "echo skipped", "build:test": "echo skipped", @@ -87,14 +78,13 @@ "execute:samples": "echo skipped", "format": "echo skipped", "test": "npm run integration-test", - "prebuild": "echo skipped", "test:node": "echo skipped", "test:browser": "echo skipped", "unit-test": "npm run unit-test:node && npm run unit-test:browser", "unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node", "unit-test:browser": "echo skipped", "integration-test": "npm run integration-test:node && npm run integration-test:browser", - "integration-test:node": "mocha -r esm --require ts-node/register --timeout 1200000 --full-trace test/*.ts", + "integration-test:node": "mocha -r esm --require ts-node/register --timeout 1200000 --full-trace test/*.ts --reporter ../../../common/tools/mocha-multi-reporter.js", "integration-test:browser": "echo skipped", "docs": "echo skipped" }, diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_create_for_redis_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_create_for_redis_test.js index fe475f154975..8bad2326e99e 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_create_for_redis_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_create_for_redis_test.js @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '2da107f7-e92e-4f58-9bdd-6b58e1a20000', + '84e10da0-7734-4177-95ed-c343fa110c00', 'x-ms-ests-server', - '2.1.12071.17 - KRSLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=AheNjHVqKRNDh24Ip28o9aI; expires=Thu, 28-Oct-2021 02:49:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aj00YHOdl3hDtkuvG7B3aBY; expires=Sun, 09-Jan-2022 06:17:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4w9fM_MhFey9ynGTX2MO4-Y3sEi_E-AR3TQXg6wqqMcq6eOyoNfyX0jwdOVdNcLK2x1bH3NH3pEvllkkgTqQLQBRcy0QQNmz7opR_q87HT2ewhzSiY703FeG9YAyz4a3tEnNfxWw5HIncv_1fhE3AYF16zgqSsuJnPxE0o5szcwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevro4Y_dUmdOjdmM-xxIeERyAammLxU_fXMm0BFjN6Gryam5kov7ZKl_gZz1uvymQBPDrLLoqO6TBriLwzt0CUWa4Td8eGs0j75bizB6RMYAG_OX1RM2fgj6qxrP29R4zm42OgNJ4kxSC-TF38kdhj3v6QDlpw0WJRFY4Jrqf2L0N8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:34 GMT', + 'Fri, 10 Dec 2021 06:17:43 GMT', 'Content-Length', '980' ]); @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'aee2f65e-a3f8-4c92-b384-e4323aaf1200', + '84e10da0-7734-4177-95ed-c343fd110c00', 'x-ms-ests-server', - '2.1.12071.16 - KRSLR2 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=AtdhcdHm1rpNsm-HBZ4aCKY; expires=Thu, 28-Oct-2021 02:49:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlmAU1lmfU9KlHkPK7z1ytY; expires=Sun, 09-Jan-2022 06:17:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6YRJy-L2LoF1AQZMfh0qLfMZc8lJc4qWmW4n82HzMhuwxiyJwsevziZvuWiGCXrC5FsweST7EJJ8p1y7mXzSCphAglMRALxy742CIU-iZR9uz2BFXcYW8R2m4-qJZ1-deKPv5hQp-izbT5C5sJn7Le_yqHnPmnZxyAJJ_aGoUPYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVq6btDm7NGy4_wKtJqC9RKREojz1ZINuaqzFZnCIvVcl5j81Mz0wbTo9rf8qRSDhJUvP8eQQzRT2XwYxkx3jbuGvaKmv_pFVbSgYNUgwldL03eJforDlxwS5Z_5mn6STV8Ix5Lgf9JFF8Pcheji0CRji0jG0q32BaoW6bYcVb3YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:34 GMT', + 'Fri, 10 Dec 2021 06:17:44 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=a4fbf508-2b27-4913-a337-b5bb4196ec7f&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=f0865052-3e3d-4802-a699-f514e6dd35d8&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,21 +93,21 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ab07f05c-0ccb-4c02-be36-3e513fdb1100', + '84e10da0-7734-4177-95ed-c34302120c00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AmJrVvGzZ-9PtVXj1GzRDKUWPr5BAQAAAL555NgOAAAA; expires=Thu, 28-Oct-2021 02:49:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Arf3x9GtCWRPsA6uJHKAajYWPr5BAQAAAAfoRNkOAAAA; expires=Sun, 09-Jan-2022 06:17:44 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 28 Sep 2021 02:49:34 GMT', + 'Fri, 10 Dec 2021 06:17:44 GMT', 'Content-Length', - '1351' + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -129,9 +129,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - 'a54b44c7-aa8b-4e0d-b729-4d89ec33ee25', + '34f2e078-c082-4f32-b7ba-d4927615f7d8', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -139,11 +139,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-writes', - '1196', + '1194', 'x-ms-correlation-request-id', - '95ff8743-1fe8-46b4-a346-7e339950f1ac', + '4eca8878-421c-478f-b407-a0146b69c5a3', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024935Z:95ff8743-1fe8-46b4-a346-7e339950f1ac', + 'SOUTHEASTASIA:20211210T061745Z:4eca8878-421c-478f-b407-a0146b69c5a3', 'Date', - 'Tue, 28 Sep 2021 02:49:34 GMT' + 'Fri, 10 Dec 2021 06:17:44 GMT' ]); diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_delete_for_redis_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_delete_for_redis_test.js index 008d958aa5b6..72f6a2e0e10b 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_delete_for_redis_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_delete_for_redis_test.js @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '720ca505-9718-42d5-96f5-9ce95b2b1200', + 'b3700a5a-2a8c-4bf0-9312-fdebe40a0c00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR2 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=Ak69H1zEcT1KkMxGnCRELJs; expires=Thu, 28-Oct-2021 03:04:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsCyynbGeLFAnvVQhQRVtuw; expires=Sun, 09-Jan-2022 06:32:53 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMhhjln1my4vASUDgSzqKDTTNCx3k1ak9yFxP7-KF4DWf44XvU4EoN4M0ndJp1LwSXrcmMO16eBKY_th0Hq681W2nhIQNlHnmV14BSZsBxvgFljRszTO4po4G9S_h26zJElx8-L73Y4xy069WcTpB0CSyaExAdlHCGtze4bD3MnMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrbZjKEHrQnIc4g-Z15ecHiB12YwUca-CtKHf5Yvi0BK6hQz_ghjJFS2hJgvkw_i7P9oxXWRmY6AoLY5C6J9U2FeueXi6XqzhjTdejytbst7udiQjHLLeKJQq9LOzeZnIQeJSQ-JwEGN3HgzVQFj6C63LjY-yNDVbdiS5h88ZLgVUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 03:04:44 GMT', + 'Fri, 10 Dec 2021 06:32:53 GMT', 'Content-Length', '980' ]); @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '720ca505-9718-42d5-96f5-9ce95e2b1200', + '1306231f-1899-4d48-aeca-9001a26a0b00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR2 ProdSlices', + '2.1.12261.14 - SEASLR1 ProdSlices', 'Set-Cookie', - 'fpc=AjfTNyEUMutMmZgV6jLKitk; expires=Thu, 28-Oct-2021 03:04:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AuB47QCT2BhLpP6WBg_eah4; expires=Sun, 09-Jan-2022 06:32:53 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrtmVjTnBZz2-8qJdbkHp3-jBcs598V06EaXiYYpyT84T-kmEgeLniee8oVeNHjyKPsfqlYsZT1ZRdJvgQeMx2Cb8w8qCxbylkkMZDy5SpBQ6NmvAjgb1fN1647QZsJW77c-lLU_oYkgBSTBusaJMKbgb8fFOgrI4LSH26HdsFpOMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrh5s8Av6w9TcJf7rAPhe-5cI0dnKGbbvOTS3c7COmKENYyyEsvTGfMcV9tmZW4Z9SVulgobMZgEq22MiVYUbLnFM7KO_JxGpdejRnV3329aAwiqTu03dvFy3PIdkTxeipDUIegkr1s6EAd7tz9_M5ygtujx-QCi3WFnkVKaxZiZggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 03:04:44 GMT', + 'Fri, 10 Dec 2021 06:32:53 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=43e5e312-a6b4-4938-860c-30f17eaf5c47&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=4bf5b58e-b81b-4806-ba27-c72e031cc200&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,21 +93,21 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '84581fe2-705a-448a-97d0-56f4c58b1200', + '9e4deb1d-59f9-4f91-a0fa-cb1ee5920b00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR2 ProdSlices', + '2.1.12261.14 - KRSLR2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AoBMqXCw69BInowxovNyDFcWPr5BAQAAAEx95NgOAAAA; expires=Thu, 28-Oct-2021 03:04:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsBkd_z3n39Gv_zy3FQ2cYIWPr5BAQAAAJXrRNkOAAAA; expires=Sun, 09-Jan-2022 06:32:53 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, 28 Sep 2021 03:04:44 GMT', + 'Fri, 10 Dec 2021 06:32:53 GMT', 'Content-Length', - '1351' + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -121,9 +121,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'x-ms-request-id', - '1969d928-6b69-4046-ab2b-c1f3cfd767a3', + '50013109-4fba-4432-863e-20a78ed62630', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -133,11 +133,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'x-ms-ratelimit-remaining-subscription-deletes', '14999', 'x-ms-correlation-request-id', - '4e3a389b-ac03-47d3-874f-ea947b7f48d8', + '985e3c3a-410a-4e76-9592-b61f31dd19e0', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030445Z:4e3a389b-ac03-47d3-874f-ea947b7f48d8', + 'SOUTHEASTASIA:20211210T063254Z:985e3c3a-410a-4e76-9592-b61f31dd19e0', 'Date', - 'Tue, 28 Sep 2021 03:04:44 GMT', + 'Fri, 10 Dec 2021 06:32:54 GMT', 'Content-Length', '0' ]); diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_listbyredisresource_for_redis_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_listbyredisresource_for_redis_test.js index 15fa1774e613..3a1370999d00 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_listbyredisresource_for_redis_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_patchschedules_listbyredisresource_for_redis_test.js @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '46849707-a8ee-4333-b86a-9f2f28950000', + '84e10da0-7734-4177-95ed-c34306120c00', 'x-ms-ests-server', - '2.1.12071.17 - KRSLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=ApWEtzmpfYdGgHx-bbwo_tM; expires=Thu, 28-Oct-2021 02:49:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AnaOv5VNRfNOmbK67dqSh4Q; expires=Sun, 09-Jan-2022 06:17:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRyGlga6vq8KS6WJ1BrGZArXLFVy34NWiL8iElS3kAf4eXHcajyTvLFdzWbzpXV7PDgQ6aD1s_DA3o5xUA84L3rCU7uRQ7echzvTWABCnPzOQzSSIC8ahWwo0IhLY1VUOO1ipDHrdWi15X80fkkJ3x-hKOpaKcIfqmZan2xrDAVIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevre1I7BxQiA1cCffsiJvtvilkH-Brs9GAohAZ0Dj6RTYS07HlAeo0kGztxKRAclR-7oBdvHqAbihuQ2AAUOeFvo4ye5KwFkfAaOO4ITOrfx0tv-dnUQKhSK1H5vUxgUNujd72cv4E0xvtrizsvTUjcoifiIR9v6c2j94su1s8OxoAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:35 GMT', + 'Fri, 10 Dec 2021 06:17:44 GMT', 'Content-Length', '980' ]); @@ -58,32 +58,30 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '791d4b96-cf7d-4212-8f5b-a085969f1200', + '20616d55-2ea3-43e7-9507-b18d00300b00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - SEASLR1 ProdSlices', 'Set-Cookie', - 'fpc=Am6A6WJIm2hIjL7CW8ynFoE; expires=Thu, 28-Oct-2021 02:49:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AoFarHd8eaFAmMbtvR1cRCk; expires=Sun, 09-Jan-2022 06:17:45 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrk6t6v0kFqP47wAd5LUvUaP7izg8x-1ckWu0eKyqjJ2laVQtOATUBDH1_o1nf4D6mfedb7W6ev3RUX-Fb6ADqxm41IErM8RXtoe9cFLlNQFq3ZJXUijBziDad5XUBoCGXcyWpiXuUu-fHo39JBmvng_2MNc46sfnN2pkvXcv85FcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrwSAl6sQEoH0fmIJlc362UR5UgbIScrh6ZIendCCrBvi_h_OY6JsJD_C6UqRGHSK-vFBkBfBlc02Zf4mebxIg-1ZSJ9a5bcer9OTweSzqXkZBgkdqfzCQwcL0eaSX15WIQkqq026BP6_rCCOrvmT8q7vrauHt1PzElRg5GHLG0QwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:35 GMT', + 'Fri, 10 Dec 2021 06:17:45 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=05993f71-e2c9-49bc-b5bb-09b287fc2a99&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=ef12933b-e61b-4816-bec1-4de8cba12601&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', 'Pragma', 'no-cache', - 'Content-Length', - '1351', 'Content-Type', 'application/json; charset=utf-8', 'Expires', @@ -95,19 +93,21 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ab07f05c-0ccb-4c02-be36-3e5148db1100', + 'e407fa4b-b48e-461f-b002-2dafeac80b00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Am-_ixQDEVhPrHdM2WueSl0WPr5BAQAAAL955NgOAAAA; expires=Thu, 28-Oct-2021 02:49:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=As_5n-a3fkpAqqqWJcdzZcMWPr5BAQAAAAjoRNkOAAAA; expires=Sun, 09-Jan-2022 06:17: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', - 'Tue, 28 Sep 2021 02:49:35 GMT' + 'Fri, 10 Dec 2021 06:17:45 GMT', + 'Content-Length', + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -129,9 +129,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - 'e69289cb-e6b6-4bc2-add7-5c0d3c27ff3b', + 'a8ae7068-6043-43df-ba34-9917a789b57d', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -139,11 +139,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11990', + '11958', 'x-ms-correlation-request-id', - '3fe5819e-1e8e-445a-acc1-cce5d0658723', + 'a6eeb31b-e422-4787-a347-73c7e6d2b803', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024935Z:3fe5819e-1e8e-445a-acc1-cce5d0658723', + 'SOUTHEASTASIA:20211210T061745Z:a6eeb31b-e422-4787-a347-73c7e6d2b803', 'Date', - 'Tue, 28 Sep 2021 02:49:35 GMT' + 'Fri, 10 Dec 2021 06:17:45 GMT' ]); diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_create_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_create_test.js index efb848a54ce5..2366b36e8635 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_create_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_create_test.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "baab33ab9d66c6c6e51c0f1b7a5984cc"; +module.exports.hash = "18a015d325496a2230c7ca151e525fcc"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '791d4b96-cf7d-4212-8f5b-a085069f1200', + '84e10da0-7734-4177-95ed-c343fe100c00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=AsJNfFGjz1pIlJ2YKXXOj0s; expires=Thu, 28-Oct-2021 02:49:18 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ar_XcBcv1EJHiiXUdI4V9LA; expires=Sun, 09-Jan-2022 06:17:15 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrO76yzqtUgNRoE1eIK-xAaKR-EpLlF8BcAwDCd0IyaM0cZoH4RIrt4XAlhS2T6PG7UXrj1AAQrJ5nDou4_K9unZIArhmKg7E0WMfWIVnbcBzVzZ5I_rzEn5_MfWtECi1qaaIKO66Hs0Eu5atDtGNWm4ngE6k1C3ISl9OrE-E2xEQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrpvDbtAU739-xc8lGHvLcJupEi6HHOqTy2p3BiQQ3GZOXYOuYPqAD3BEtq5SkTT-2WI3a8JQXmMKih2P-JXAa0l_tR_Ve7lpxWUUgQzdSXfLh6grMPgJyN20c01-cQk-ailxQvROqHXo0vZ_qXyrXXAoTW04nhPvYysteofrzA08gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:18 GMT', + 'Fri, 10 Dec 2021 06:17:15 GMT', 'Content-Length', '980' ]); @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ba098c41-5e24-43b7-aaf4-4a46acef1100', + '20616d55-2ea3-43e7-9507-b18d072f0b00', 'x-ms-ests-server', - '2.1.12071.16 - KRSLR2 ProdSlices', + '2.1.12261.14 - SEASLR1 ProdSlices', 'Set-Cookie', - 'fpc=Ag_MoVXdm8tDuAtH088A0xY; expires=Thu, 28-Oct-2021 02:49:18 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArUzQ09ADp5EsumyyETev10; expires=Sun, 09-Jan-2022 06:17:15 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmEz3Pl_9ipMOT_RQkWm-FF1G5q_VTiUMyVj9m5WBnp4DWGl06W0Il9H8_2mkjPrdjzE5FD-h0OhjR_M6jASaR3Ze66V3mQW83J9EVd-MVs7Aqjd959E7cNZfe6LsuTt96nZ3jWk7vqcT6n9axPXRjNUIBP6GkU1bV57P7WcP5_UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmOU9iGQTg31GsWSyqlffey5BDrAFj8kUHRZExmLTuFNjoxo7W-LNogTdRmvDsOhtHe-ht-a9qc6uQoqSMn2rZcaKFMjSR54hRYDQB7llZdm7XjNu6SR3Iq5k8HuXCL_k-4-B1aYi-ErwzoxCYN4lY3VbN4VypHJsjStuU2khv-ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:18 GMT', + 'Fri, 10 Dec 2021 06:17:15 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=52d60697-153f-4346-98d4-9611384f2b31&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=89b74ffe-8576-4a85-aa9d-7b7ec8dc0141&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,27 +93,27 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'f9d979f1-57a4-42d5-bd48-4debeb890000', + '9e4deb1d-59f9-4f91-a0fa-cb1e10750b00', 'x-ms-ests-server', - '2.1.12071.17 - KRSLR1 ProdSlices', + '2.1.12261.14 - KRSLR2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=ApYwTW-qYMxFrgPCmDcxQmUWPr5BAQAAAK155NgOAAAA; expires=Thu, 28-Oct-2021 02:49:18 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AhpLrG4EAiNKhaRgLBD7XsUWPr5BAQAAAOvnRNkOAAAA; expires=Sun, 09-Jan-2022 06:17:16 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 28 Sep 2021 02:49:18 GMT', + 'Fri, 10 Dec 2021 06:17:15 GMT', 'Content-Length', - '1351' + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex', {"location":"eastus","properties":{"addressSpace":{"addressPrefixes":["10.0.0.0/16"]}}}) .query(true) - .reply(201, {"name":"networknamex","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex","etag":"W/\"b4ca6076-51b6-49c7-b262-7ee4754ba4eb\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Updating","resourceGuid":"2a0b207d-c156-4852-bb89-a5cdc18b544a","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}, [ + .reply(201, {"name":"networknamex","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex","etag":"W/\"f8fcacf8-ef0c-472d-877a-e8dc5b675975\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Updating","resourceGuid":"f29a78a1-30bc-416b-a3da-d46ec6640d65","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}, [ 'Cache-Control', 'no-cache', 'Pragma', @@ -127,15 +127,15 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Retry-After', '3', 'x-ms-request-id', - '33c7836d-665b-4203-b112-c8d03efd8f5e', + '2b2ae2b3-979a-4345-a96e-5a7dd0cc449a', 'Azure-AsyncOperation', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/33c7836d-665b-4203-b112-c8d03efd8f5e?api-version=2021-03-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/2b2ae2b3-979a-4345-a96e-5a7dd0cc449a?api-version=2021-05-01', 'x-ms-correlation-request-id', - '962a5e0d-d582-40c9-b0c2-ff8e66226b97', + '6df826de-2d74-4350-ac8d-ce8d99bddc36', 'Azure-AsyncNotification', 'Enabled', 'x-ms-arm-service-request-id', - 'b609f49a-d7fa-4c4f-99ea-297a73b9c882', + '4ea5e19d-991c-4e6b-842e-5099df5fc6bd', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'Server', @@ -145,225 +145,15 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'x-ms-ratelimit-remaining-subscription-writes', '1199', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024923Z:962a5e0d-d582-40c9-b0c2-ff8e66226b97', + 'SOUTHEASTASIA:20211210T061727Z:6df826de-2d74-4350-ac8d-ce8d99bddc36', 'X-Content-Type-Options', 'nosniff', 'Date', - 'Tue, 28 Sep 2021 02:49:22 GMT' + 'Fri, 10 Dec 2021 06:17:26 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/33c7836d-665b-4203-b112-c8d03efd8f5e') - .query(true) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e94767cb97757551e74df3d16f9cfc","92ff078f3cd6f41e000000"], [ - 'Cache-Control', - 'no-cache', - 'Pragma', - 'no-cache', - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'Content-Encoding', - 'gzip', - 'Expires', - '-1', - 'Retry-After', - '10', - 'Vary', - 'Accept-Encoding', - 'x-ms-request-id', - 'bd7fe79b-6736-408c-a779-9eb53897e457', - 'x-ms-correlation-request-id', - '46f29927-4088-4892-98ff-9353ab3c5863', - 'x-ms-arm-service-request-id', - 'b3167d09-b97b-4f73-b043-fe31dd24f81f', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'x-ms-ratelimit-remaining-subscription-reads', - '11999', - 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024923Z:46f29927-4088-4892-98ff-9353ab3c5863', - 'X-Content-Type-Options', - 'nosniff', - 'Date', - 'Tue, 28 Sep 2021 02:49:22 GMT' -]); - -nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/33c7836d-665b-4203-b112-c8d03efd8f5e') - .query(true) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e94767cb97757551e74df3d16f9cfc","92ff078f3cd6f41e000000"], [ - 'Cache-Control', - 'no-cache', - 'Pragma', - 'no-cache', - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'Content-Encoding', - 'gzip', - 'Expires', - '-1', - 'Retry-After', - '20', - 'Vary', - 'Accept-Encoding', - 'x-ms-request-id', - '6f1cc11b-1af8-44a5-863f-b723ed698338', - 'x-ms-correlation-request-id', - '05f35462-0a86-4586-a537-048900a8f2bc', - 'x-ms-arm-service-request-id', - '146cb18e-8734-4041-ad77-7f9d61d9cc8d', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'x-ms-ratelimit-remaining-subscription-reads', - '11998', - 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024923Z:05f35462-0a86-4586-a537-048900a8f2bc', - 'X-Content-Type-Options', - 'nosniff', - 'Date', - 'Tue, 28 Sep 2021 02:49:22 GMT' -]); - -nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/33c7836d-665b-4203-b112-c8d03efd8f5e') - .query(true) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e94767cb97757551e74df3d16f9cfc","92ff078f3cd6f41e000000"], [ - 'Cache-Control', - 'no-cache', - 'Pragma', - 'no-cache', - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'Content-Encoding', - 'gzip', - 'Expires', - '-1', - 'Retry-After', - '20', - 'Vary', - 'Accept-Encoding', - 'x-ms-request-id', - '4b64a2b7-cfd5-4e76-b870-73c5a8452297', - 'x-ms-correlation-request-id', - 'f89e9795-669c-4985-a214-e51f28e0b4b3', - 'x-ms-arm-service-request-id', - 'e27b979e-1640-45ea-98dc-5689d4703dce', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'x-ms-ratelimit-remaining-subscription-reads', - '11997', - 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024924Z:f89e9795-669c-4985-a214-e51f28e0b4b3', - 'X-Content-Type-Options', - 'nosniff', - 'Date', - 'Tue, 28 Sep 2021 02:49:23 GMT' -]); - -nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/33c7836d-665b-4203-b112-c8d03efd8f5e') - .query(true) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e94767cb97757551e74df3d16f9cfc","92ff078f3cd6f41e000000"], [ - 'Cache-Control', - 'no-cache', - 'Pragma', - 'no-cache', - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'Content-Encoding', - 'gzip', - 'Expires', - '-1', - 'Retry-After', - '40', - 'Vary', - 'Accept-Encoding', - 'x-ms-request-id', - 'eafb496d-961d-4943-aa85-2d1abe7553e4', - 'x-ms-correlation-request-id', - 'a42fbe1d-97d2-4f2f-b98e-b9102e3653bc', - 'x-ms-arm-service-request-id', - '4d688cb4-7f3f-4a2e-b637-55231ff82234', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'x-ms-ratelimit-remaining-subscription-reads', - '11996', - 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024924Z:a42fbe1d-97d2-4f2f-b98e-b9102e3653bc', - 'X-Content-Type-Options', - 'nosniff', - 'Date', - 'Tue, 28 Sep 2021 02:49:23 GMT' -]); - -nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/33c7836d-665b-4203-b112-c8d03efd8f5e') - .query(true) - .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e94767cb97757551e74df3d16f9cfc","92ff078f3cd6f41e000000"], [ - 'Cache-Control', - 'no-cache', - 'Pragma', - 'no-cache', - 'Transfer-Encoding', - 'chunked', - 'Content-Type', - 'application/json; charset=utf-8', - 'Content-Encoding', - 'gzip', - 'Expires', - '-1', - 'Retry-After', - '40', - 'Vary', - 'Accept-Encoding', - 'x-ms-request-id', - 'eca88406-0e86-493b-8dc0-bd36ff6763bd', - 'x-ms-correlation-request-id', - '72bf0b4d-808b-44c2-b42b-1b41ac00bb11', - 'x-ms-arm-service-request-id', - '7ecaf9fc-090d-4294-9a39-b135a604c521', - 'Strict-Transport-Security', - 'max-age=31536000; includeSubDomains', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'Server', - 'Microsoft-HTTPAPI/2.0', - 'x-ms-ratelimit-remaining-subscription-reads', - '11995', - 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024925Z:72bf0b4d-808b-44c2-b42b-1b41ac00bb11', - 'X-Content-Type-Options', - 'nosniff', - 'Date', - 'Tue, 28 Sep 2021 02:49:24 GMT' -]); - -nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/33c7836d-665b-4203-b112-c8d03efd8f5e') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/2b2ae2b3-979a-4345-a96e-5a7dd0cc449a') .query(true) .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e947afd7d3699ecff2d947bf71f24b","fe1f4f9490471d000000"], [ 'Cache-Control', @@ -381,11 +171,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - 'f22c9cf5-7f8c-4248-a556-6aaaf16fe9a8', + '646c8f16-ccac-44ac-92fd-470979fcefdd', 'x-ms-correlation-request-id', - 'b1724d5d-2ae2-4536-af3d-7c486fa787a2', + 'aec487e1-c036-4d3c-9dcf-a7797cfd2429', 'x-ms-arm-service-request-id', - '690b280c-d96b-4ec8-81e4-7c27ece9161e', + 'b0f87e2b-e247-4804-8613-4af83e60cdab', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'Server', @@ -393,19 +183,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11994', + '11999', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024925Z:b1724d5d-2ae2-4536-af3d-7c486fa787a2', + 'SOUTHEASTASIA:20211210T061727Z:aec487e1-c036-4d3c-9dcf-a7797cfd2429', 'X-Content-Type-Options', 'nosniff', 'Date', - 'Tue, 28 Sep 2021 02:49:24 GMT' + 'Fri, 10 Dec 2021 06:17:26 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetworknamex', {"properties":{"addressPrefix":"10.0.0.0/24"}}) .query(true) - .reply(201, {"name":"subnetworknamex","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetworknamex","etag":"W/\"34e68542-cb92-4729-ac5d-84b849d542b3\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}, [ + .reply(201, {"name":"subnetworknamex","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetworknamex","etag":"W/\"a8460cbc-2eb9-467e-8030-05643cea002e\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}, [ 'Cache-Control', 'no-cache', 'Pragma', @@ -419,13 +209,13 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Retry-After', '3', 'x-ms-request-id', - '31c298bf-d021-4104-82ab-ed595ef9ae38', + '96e20f6d-926e-4d8c-acae-ea9779c2759c', 'Azure-AsyncOperation', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/31c298bf-d021-4104-82ab-ed595ef9ae38?api-version=2021-03-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/96e20f6d-926e-4d8c-acae-ea9779c2759c?api-version=2021-05-01', 'x-ms-correlation-request-id', - '5a41a40a-0e24-4af0-bc14-776627b46d4c', + '6087723b-aa8e-4124-9cdf-5dbb9407f0f9', 'x-ms-arm-service-request-id', - '95955578-2d96-42f9-92a5-18a7ef418da4', + '16239e29-fcc2-457a-a85d-42a745e22811', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'Server', @@ -435,15 +225,15 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'x-ms-ratelimit-remaining-subscription-writes', '1198', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024925Z:5a41a40a-0e24-4af0-bc14-776627b46d4c', + 'SOUTHEASTASIA:20211210T061730Z:6087723b-aa8e-4124-9cdf-5dbb9407f0f9', 'X-Content-Type-Options', 'nosniff', 'Date', - 'Tue, 28 Sep 2021 02:49:24 GMT' + 'Fri, 10 Dec 2021 06:17:29 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/31c298bf-d021-4104-82ab-ed595ef9ae38') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/96e20f6d-926e-4d8c-acae-ea9779c2759c') .query(true) .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e947afd7d3699ecff2d947bf71f24b","fe1f4f9490471d000000"], [ 'Cache-Control', @@ -461,11 +251,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - '83a45b3d-caf1-4b5a-b196-d50894c82cff', + 'da6f3536-cd29-4450-8e6a-4b302d2d6df7', 'x-ms-correlation-request-id', - 'b7768a15-de6a-4282-ad3f-0270a78c955d', + '9d127208-5044-427b-94eb-01117c40a9cc', 'x-ms-arm-service-request-id', - '635e883a-478e-4682-8ec1-9573624627b0', + '1540d776-7929-446c-8bf6-dcf0e325776b', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'Server', @@ -473,19 +263,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11993', + '11998', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024926Z:b7768a15-de6a-4282-ad3f-0270a78c955d', + 'SOUTHEASTASIA:20211210T061730Z:9d127208-5044-427b-94eb-01117c40a9cc', 'X-Content-Type-Options', 'nosniff', 'Date', - 'Tue, 28 Sep 2021 02:49:26 GMT' + 'Fri, 10 Dec 2021 06:17:29 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Cache/redis/myrediscachexxx111', {"zones":["1"],"location":"eastus","properties":{"redisConfiguration":{"maxmemory-policy":"allkeys-lru"},"enableNonSslPort":true,"shardCount":2,"minimumTlsVersion":"1.2","sku":{"name":"Premium","family":"P","capacity":1},"subnetId":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetworknamex","staticIP":"10.0.0.5"}}) .query(true) - .reply(201, {"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Cache/Redis/myrediscachexxx111","location":"East US","name":"myrediscachexxx111","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"4.0.14","sku":{"name":"Premium","family":"P","capacity":1},"enableNonSslPort":true,"instances":[{"sslPort":15000,"nonSslPort":13000,"isMaster":false,"isPrimary":false},{"sslPort":15001,"nonSslPort":13001,"isMaster":false,"isPrimary":false},{"sslPort":15002,"nonSslPort":13002,"isMaster":false,"isPrimary":false},{"sslPort":15003,"nonSslPort":13003,"isMaster":false,"isPrimary":false}],"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","redisConfiguration":{"maxmemory-policy":"allkeys-lru","maxclients":"7500","maxmemory-reserved":"200","maxfragmentationmemory-reserved":"300","maxmemory-delta":"200"},"accessKeys":{"primaryKey":"8ybKetYwvgeRyIrsdEeS53o3XI55bnWhyUw723b0Vc8=","secondaryKey":"zBZ3dUhgwU6vQgFbnSNhCrgxZ4QQncqhzYKobLOIdJ0="},"hostName":"myrediscachexxx111.redis.cache.windows.net","port":6379,"sslPort":6380,"subnetId":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetworknamex","staticIP":"10.0.0.5","shardCount":2,"linkedServers":[]},"zones":["1"]}, [ + .reply(201, {"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Cache/Redis/myrediscachexxx111","location":"East US","name":"myrediscachexxx111","type":"Microsoft.Cache/Redis","tags":{},"properties":{"provisioningState":"Creating","redisVersion":"4.0.14","sku":{"name":"Premium","family":"P","capacity":1},"enableNonSslPort":true,"instances":[{"sslPort":15000,"nonSslPort":13000,"isMaster":false,"isPrimary":false},{"sslPort":15001,"nonSslPort":13001,"isMaster":false,"isPrimary":false},{"sslPort":15002,"nonSslPort":13002,"isMaster":false,"isPrimary":false},{"sslPort":15003,"nonSslPort":13003,"isMaster":false,"isPrimary":false}],"minimumTlsVersion":"1.2","publicNetworkAccess":"Enabled","redisConfiguration":{"maxmemory-policy":"allkeys-lru","maxclients":"7500","maxmemory-reserved":"200","maxfragmentationmemory-reserved":"300","maxmemory-delta":"200"},"accessKeys":{"primaryKey":"DLWjdz0ED5G5es4ZC0LqwNapxgwoDqOWnAzCaEONTSA=","secondaryKey":"uQWCYWtpSVHCBi2obSPc4sqFmoLaaF6OhAzCaFJITpk="},"hostName":"myrediscachexxx111.redis.cache.windows.net","port":6379,"sslPort":6380,"subnetId":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetworknamex","staticIP":"10.0.0.5","shardCount":2,"linkedServers":[]},"zones":["1"]}, [ 'Cache-Control', 'no-cache', 'Pragma', @@ -499,9 +289,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Location', 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Cache/redis/myrediscachexxx111?api-version=2020-12-01', 'x-ms-request-id', - '63a7c40b-62c6-41e8-98c2-73f09f6c010c', + '3dd15a8c-0a99-4d1f-8b27-9fe82ad8d45c', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -509,13 +299,13 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-writes', - '1197', + '1195', 'x-ms-correlation-request-id', - '9f6e576d-0af6-454b-b47c-3116b20233bd', + 'b2bed04f-1a8f-4d52-a8a6-11d109f4300c', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024933Z:9f6e576d-0af6-454b-b47c-3116b20233bd', + 'SOUTHEASTASIA:20211210T061742Z:b2bed04f-1a8f-4d52-a8a6-11d109f4300c', 'Date', - 'Tue, 28 Sep 2021 02:49:32 GMT' + 'Fri, 10 Dec 2021 06:17:41 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -537,9 +327,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - '75643f2f-f9fd-4c4a-93c3-e90ea4c5f0f9', + '673267f5-d493-400a-9543-74b642c8253f', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -547,11 +337,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11992', + '11960', 'x-ms-correlation-request-id', - 'c80d4646-f8ee-453e-88cd-e0a601381622', + 'f3d8b5be-3508-4b9b-995f-56fdc67e4db9', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024933Z:c80d4646-f8ee-453e-88cd-e0a601381622', + 'SOUTHEASTASIA:20211210T061742Z:f3d8b5be-3508-4b9b-995f-56fdc67e4db9', 'Date', - 'Tue, 28 Sep 2021 02:49:33 GMT' + 'Fri, 10 Dec 2021 06:17:42 GMT' ]); diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_delete_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_delete_test.js index 6b89845ce762..a34eda147ea9 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_delete_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_delete_test.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "8c2682d7281f12e52dc19ecd4daa097d"; +module.exports.hash = "6613a07d0a1b7824ac441a1504fe16e9"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '84581fe2-705a-448a-97d0-56f4d28b1200', + 'b3700a5a-2a8c-4bf0-9312-fdebee0a0c00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR2 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=AmeXlfhSQTtCtHzXkGEgEDU; expires=Thu, 28-Oct-2021 03:04:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=At-7uoSTphxIs92_AyNa1lk; expires=Sun, 09-Jan-2022 06:32:54 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrLZgVRBPcv1bUoJYFDFqcBrbniBRwgXiSvJvGkndNlBqHlUXeLhmu0hnP2yEoAQHBUhpcuOqI4inyXqTPtmlgSmJQ6eIQ1tt2CKQOD4JudCnaBQPsmf2W5Rp2DNW79bi41AfKQ9jw5hr8uxaSAAddIWMTBI1NHcTd5fuDPbDNMkYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrebHpP6xMFCT6YeR9hFZda4_ctXNnqFzoNO1UiGDj8jNtWwB_x7IAx0o3ABE2y4zhXmEdCqrVTs3zUgnsUF7WvbiUAAFm_1rAamWUxU9lzx7PWQmL_wV5RuWac6mmVkoPRFcoMcM4SQ8P9luHVV-Sp5y3jc07fAkNXx77UATdo3ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 03:04:45 GMT', + 'Fri, 10 Dec 2021 06:32:54 GMT', 'Content-Length', '980' ]); @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c41e99e2-d088-4724-9f13-5c79eb6a1200', + '515b7f7a-a6ec-4d9d-a61d-90fdeb600c00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=AvZJBJ3Rua5CmGTc5BECI68; expires=Thu, 28-Oct-2021 03:04:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Aqo59Xeh0LxBilemm6BsNHU; expires=Sun, 09-Jan-2022 06:32:54 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrqivJB98zAMrJjHeDqKQYp_HW6SZxv0QYz5dpALcehK_3o13IkSMt96fsykpL-ZQUFZ1t1ftrCqNexyCDoUhSk2y2D9lAIkCsflFb0CCA72FixJpLPMLyJkuEOBuSi9M_iTa1A7MiZE89XJR5hCQ7ZOgQEKBK2cXvBnQN70hH38wgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxOHEpkUP4Xqa3PDUIDBLCJLz5a5fJNOjJy0qCjEbVcEkyO7amR-_E0BH857mMYWPm5-bCMMpiwO8DuxGrftNM2Yo1-nnFanPs6ETQO1UrRqhGyF3fBAKbXWtoVAk9p76eMN-Su7Ogx_qhalSmKVRpDE-ZVpUq16MVHcEzpdYYgAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 03:04:45 GMT', + 'Fri, 10 Dec 2021 06:32:54 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=f3e4c1e5-c3ed-42a8-bf29-713ab7ce75fa&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=9c6790a4-b4f2-4c5d-a485-cbb0e794f6c1&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,21 +93,21 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'c41e99e2-d088-4724-9f13-5c79f26a1200', + '9e4deb1d-59f9-4f91-a0fa-cb1ef2920b00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - KRSLR2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=AiMlY1O1doxPolaZrpwGbDgWPr5BAQAAAE195NgOAAAA; expires=Thu, 28-Oct-2021 03:04:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AmegroT4Q0pKp-lPe08957EWPr5BAQAAAJbrRNkOAAAA; expires=Sun, 09-Jan-2022 06:32:54 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', 'Set-Cookie', 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', 'Date', - 'Tue, 28 Sep 2021 03:04:45 GMT', + 'Fri, 10 Dec 2021 06:32:54 GMT', 'Content-Length', - '1351' + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -121,11 +121,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c9624211-42da-4ffc-8329-7fc9c894426b', + '9388d2da-d74d-45eb-8880-bc748535a34a', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -135,17 +135,17 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'x-ms-ratelimit-remaining-subscription-deletes', '14998', 'x-ms-correlation-request-id', - '3a9162e5-3c32-4546-952f-7c58951704fa', + 'a2243c26-70c6-4286-8d74-6704ff53281d', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030446Z:3a9162e5-3c32-4546-952f-7c58951704fa', + 'SOUTHEASTASIA:20211210T063255Z:a2243c26-70c6-4286-8d74-6704ff53281d', 'Date', - 'Tue, 28 Sep 2021 03:04:46 GMT', + 'Fri, 10 Dec 2021 06:32:55 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -155,11 +155,419 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '853c7978-10f6-4f63-b59c-1444a4058008', + 'cfba2048-4bce-46d8-b9d7-684a45192f90', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11998', + 'x-ms-correlation-request-id', + '0553c680-2ca1-44b0-93f9-0f9880c43ae2', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063256Z:0553c680-2ca1-44b0-93f9-0f9880c43ae2', + 'Date', + 'Fri, 10 Dec 2021 06:32:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '6d2c14aa-91f2-461c-a909-5f05ea11f9bf', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11997', + 'x-ms-correlation-request-id', + 'edca9c54-d4ce-4c05-8ecc-db4d26802441', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063258Z:edca9c54-d4ce-4c05-8ecc-db4d26802441', + 'Date', + 'Fri, 10 Dec 2021 06:32:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + 'a5b58b4c-f54f-486f-8d6f-9d220feb6d5a', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11996', + 'x-ms-correlation-request-id', + 'f01b2a73-d38e-42a3-804a-7a9a52829694', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063300Z:f01b2a73-d38e-42a3-804a-7a9a52829694', + 'Date', + 'Fri, 10 Dec 2021 06:33:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '0e50f9b9-4898-43b6-a5c8-b18abcedfbbe', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11995', + 'x-ms-correlation-request-id', + 'dad72580-2cb4-45ad-9c32-f8f12a46d8d7', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063303Z:dad72580-2cb4-45ad-9c32-f8f12a46d8d7', + 'Date', + 'Fri, 10 Dec 2021 06:33:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '079189fe-0b57-4298-afc6-3c83b8086817', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11994', + 'x-ms-correlation-request-id', + '57d0db8c-226b-40ed-92b3-50c1df8b1ac2', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063305Z:57d0db8c-226b-40ed-92b3-50c1df8b1ac2', + 'Date', + 'Fri, 10 Dec 2021 06:33:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + 'b0a3a15d-8eec-4a63-b194-66a61c41deb2', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11993', + 'x-ms-correlation-request-id', + '89da1d98-c5b2-499e-ba41-467d6968feb4', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063307Z:89da1d98-c5b2-499e-ba41-467d6968feb4', + 'Date', + 'Fri, 10 Dec 2021 06:33:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '122565c7-bd11-4888-b18a-095f6f333031', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11992', + 'x-ms-correlation-request-id', + '8585d997-05af-4904-9bf7-0b51fd0f7856', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063310Z:8585d997-05af-4904-9bf7-0b51fd0f7856', + 'Date', + 'Fri, 10 Dec 2021 06:33:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '41dac0c5-74cd-4277-8e86-7cabd3a16e14', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11991', + 'x-ms-correlation-request-id', + '26c85ad7-7019-4684-93a8-163d79f63aa0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063312Z:26c85ad7-7019-4684-93a8-163d79f63aa0', + 'Date', + 'Fri, 10 Dec 2021 06:33:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '6847aa90-aff1-49e9-bca0-9462e40329bb', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11990', + 'x-ms-correlation-request-id', + '756fb394-de5c-47dd-acfa-a556ca47d168', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063314Z:756fb394-de5c-47dd-acfa-a556ca47d168', + 'Date', + 'Fri, 10 Dec 2021 06:33:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + 'e4f9d1bd-a39c-4b92-abe3-d086fb1dde9a', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11989', + 'x-ms-correlation-request-id', + '3ce7b926-dc0a-465f-9b44-396e775f195d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063317Z:3ce7b926-dc0a-465f-9b44-396e775f195d', + 'Date', + 'Fri, 10 Dec 2021 06:33:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '31c46603-89b9-4b67-9bb3-0bb3a5e3d9a5', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11988', + 'x-ms-correlation-request-id', + 'b59e7b54-d852-4303-a983-f60cf175a494', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063319Z:b59e7b54-d852-4303-a983-f60cf175a494', + 'Date', + 'Fri, 10 Dec 2021 06:33:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '9368a81c-c20d-44e0-9e1a-7e8975e40058', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11987', + 'x-ms-correlation-request-id', + 'cfac4687-1bf7-4ee5-b1d7-bc13d41ca55a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063321Z:cfac4687-1bf7-4ee5-b1d7-bc13d41ca55a', + 'Date', + 'Fri, 10 Dec 2021 06:33:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + 'c3231fb6-08e0-4687-8cbc-e57701eeb996', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -169,17 +577,493 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'x-ms-ratelimit-remaining-subscription-reads', '11986', 'x-ms-correlation-request-id', - '382987f0-9a50-4fec-a4d5-1051915dafd4', + 'e954da5e-2143-4be1-8ce4-2398e144ce31', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063323Z:e954da5e-2143-4be1-8ce4-2398e144ce31', + 'Date', + 'Fri, 10 Dec 2021 06:33:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + 'b992d2d9-266b-47d1-8399-3929e1ca6740', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11985', + 'x-ms-correlation-request-id', + 'b74e2829-c686-42d2-8849-d76cc7e7ece9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063326Z:b74e2829-c686-42d2-8849-d76cc7e7ece9', + 'Date', + 'Fri, 10 Dec 2021 06:33:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '79e3ee36-c73e-47a2-866d-071b7e738769', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11984', + 'x-ms-correlation-request-id', + '21b9d25c-fb2e-4fd0-b971-ef6f7f10b73d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063328Z:21b9d25c-fb2e-4fd0-b971-ef6f7f10b73d', + 'Date', + 'Fri, 10 Dec 2021 06:33:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '4fe61fd5-84b2-4145-b0b4-646fa28ea7e1', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11983', + 'x-ms-correlation-request-id', + '100479a1-adb4-4d59-87ff-12039810cc56', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063330Z:100479a1-adb4-4d59-87ff-12039810cc56', + 'Date', + 'Fri, 10 Dec 2021 06:33:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '1b377949-61fb-41ad-bafd-991096bb679e', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11982', + 'x-ms-correlation-request-id', + '6267b82d-2717-41cb-8e4f-083e691d2787', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063333Z:6267b82d-2717-41cb-8e4f-083e691d2787', + 'Date', + 'Fri, 10 Dec 2021 06:33:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '4eb2f43e-7933-4ec3-8765-0836cdf71b29', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11981', + 'x-ms-correlation-request-id', + '23382234-f1de-4eaa-b3b8-db6eccb70840', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063335Z:23382234-f1de-4eaa-b3b8-db6eccb70840', + 'Date', + 'Fri, 10 Dec 2021 06:33:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + 'd056cc47-a04e-4cd3-8e3d-4a64921d0a84', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11980', + 'x-ms-correlation-request-id', + '166f509a-0d08-4374-90ae-1273783567f3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063337Z:166f509a-0d08-4374-90ae-1273783567f3', + 'Date', + 'Fri, 10 Dec 2021 06:33:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '3d7df76c-f50b-406e-b611-1464da8f0cd9', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11979', + 'x-ms-correlation-request-id', + 'c58db45e-cd12-4ca3-8953-7e4d3c422442', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063340Z:c58db45e-cd12-4ca3-8953-7e4d3c422442', + 'Date', + 'Fri, 10 Dec 2021 06:33:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '2e089821-a799-4e4d-a504-52ad6e11e3ab', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11978', + 'x-ms-correlation-request-id', + 'f60e1bae-9342-4d38-b5a2-17042aa39e1e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063342Z:f60e1bae-9342-4d38-b5a2-17042aa39e1e', + 'Date', + 'Fri, 10 Dec 2021 06:33:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + 'd597aa9c-95a8-4d1d-b22a-5970a3ca39a3', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11977', + 'x-ms-correlation-request-id', + '219c3d98-d634-48eb-ac2e-596f230d14ed', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063344Z:219c3d98-d634-48eb-ac2e-596f230d14ed', + 'Date', + 'Fri, 10 Dec 2021 06:33:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '5c6a1e4a-0bca-4570-9de8-e53261c7f2c3', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11976', + 'x-ms-correlation-request-id', + '4cb89d39-cd4a-456d-b503-8f8c5c9efd69', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063347Z:4cb89d39-cd4a-456d-b503-8f8c5c9efd69', + 'Date', + 'Fri, 10 Dec 2021 06:33:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '3e3f315a-abf1-44c0-823f-45f14bb872ac', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11975', + 'x-ms-correlation-request-id', + 'ef85d8d9-b5d2-437c-bfde-ce4e17134a57', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063349Z:ef85d8d9-b5d2-437c-bfde-ce4e17134a57', + 'Date', + 'Fri, 10 Dec 2021 06:33:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '8f8d4dba-bb52-4cfa-b9e8-3d832deb0242', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11974', + 'x-ms-correlation-request-id', + '7074fe2b-8b27-4fd9-9e73-50078100e72e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063351Z:7074fe2b-8b27-4fd9-9e73-50078100e72e', + 'Date', + 'Fri, 10 Dec 2021 06:33:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '509fed58-d4e9-4da0-b560-300b23778b41', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11973', + 'x-ms-correlation-request-id', + 'db47ab85-a01a-4519-9fc8-905cb8b5ae2c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063354Z:db47ab85-a01a-4519-9fc8-905cb8b5ae2c', + 'Date', + 'Fri, 10 Dec 2021 06:33:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '1764918c-6580-4a59-a30c-6d8402852cc1', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11972', + 'x-ms-correlation-request-id', + 'd760c90d-3901-475c-8dc5-9927558e3ce0', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030447Z:382987f0-9a50-4fec-a4d5-1051915dafd4', + 'SOUTHEASTASIA:20211210T063356Z:d760c90d-3901-475c-8dc5-9927558e3ce0', 'Date', - 'Tue, 28 Sep 2021 03:04:46 GMT', + 'Fri, 10 Dec 2021 06:33:55 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -189,11 +1073,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '2152d98f-a7fa-4c3a-8051-6efad05caf94', + '0f0dbabb-c877-4157-b519-fe4d19899a74', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -201,19 +1085,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11985', + '11971', 'x-ms-correlation-request-id', - '34b4f9e5-221a-464b-a6fa-7ca71bf54508', + '6b0fb4fe-e741-4bde-b2ee-f9049e817892', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030449Z:34b4f9e5-221a-464b-a6fa-7ca71bf54508', + 'SOUTHEASTASIA:20211210T063359Z:6b0fb4fe-e741-4bde-b2ee-f9049e817892', 'Date', - 'Tue, 28 Sep 2021 03:04:48 GMT', + 'Fri, 10 Dec 2021 06:33:58 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -223,11 +1107,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'aa5cdf05-0f5a-4288-847e-7fdaa7a5d2cb', + '408ae747-609b-4f03-acfa-18ad9e68f5ea', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -235,19 +1119,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11984', + '11970', 'x-ms-correlation-request-id', - '743fd220-7275-429b-ab14-42923b7e2a13', + '52059a75-5d7c-48cf-bd0c-2b6b07a9788d', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030451Z:743fd220-7275-429b-ab14-42923b7e2a13', + 'SOUTHEASTASIA:20211210T063401Z:52059a75-5d7c-48cf-bd0c-2b6b07a9788d', 'Date', - 'Tue, 28 Sep 2021 03:04:50 GMT', + 'Fri, 10 Dec 2021 06:34:01 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -257,11 +1141,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '7930373c-6c68-4985-a663-c9c65f0d1c32', + 'd7ac1425-f253-4590-8154-1a113552fa18', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -269,19 +1153,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11983', + '11969', 'x-ms-correlation-request-id', - '82e8bc2c-db8a-4168-8e6a-f8f28f1ab125', + '3ef77abc-d1d6-4fe6-bdea-6cf370dbdf9f', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030453Z:82e8bc2c-db8a-4168-8e6a-f8f28f1ab125', + 'SOUTHEASTASIA:20211210T063403Z:3ef77abc-d1d6-4fe6-bdea-6cf370dbdf9f', 'Date', - 'Tue, 28 Sep 2021 03:04:53 GMT', + 'Fri, 10 Dec 2021 06:34:03 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -291,11 +1175,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '75fb8899-7ae1-48e5-9abf-0986e461d541', + '3fb01067-5dd3-40c7-af4d-fb9506ab7d23', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -303,19 +1187,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11982', + '11968', 'x-ms-correlation-request-id', - 'a1c5701c-079b-4acd-b185-3ce82a58a2b3', + '09cf7d33-94cf-46f5-b4c1-d998f89b5cee', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030456Z:a1c5701c-079b-4acd-b185-3ce82a58a2b3', + 'SOUTHEASTASIA:20211210T063406Z:09cf7d33-94cf-46f5-b4c1-d998f89b5cee', 'Date', - 'Tue, 28 Sep 2021 03:04:55 GMT', + 'Fri, 10 Dec 2021 06:34:05 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -325,11 +1209,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '8a6ec990-2d31-4502-914c-b43e2e9397af', + 'bc5ae588-30c3-45d6-8919-a3b7c4ac02b6', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -337,19 +1221,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11981', + '11967', 'x-ms-correlation-request-id', - '91bb6650-ebf0-429d-bb86-02cbef1dc357', + '7d7418fe-42bf-4844-9da1-0672cce80878', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030458Z:91bb6650-ebf0-429d-bb86-02cbef1dc357', + 'SOUTHEASTASIA:20211210T063408Z:7d7418fe-42bf-4844-9da1-0672cce80878', 'Date', - 'Tue, 28 Sep 2021 03:04:57 GMT', + 'Fri, 10 Dec 2021 06:34:07 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -359,11 +1243,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'f0db7b46-c8ab-4ec4-9114-7a683fecda40', + '8432a3b2-2002-44f1-9998-64429d251325', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -371,19 +1255,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11980', + '11966', 'x-ms-correlation-request-id', - '1feb5461-7a9f-4dc6-8b02-cf024dbbda3f', + 'cd4c240c-6249-4b2a-9983-1fe3a0d1ca5d', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030500Z:1feb5461-7a9f-4dc6-8b02-cf024dbbda3f', + 'SOUTHEASTASIA:20211210T063410Z:cd4c240c-6249-4b2a-9983-1fe3a0d1ca5d', 'Date', - 'Tue, 28 Sep 2021 03:05:00 GMT', + 'Fri, 10 Dec 2021 06:34:10 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -393,11 +1277,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '810c8839-d854-4376-98e4-3bf42120241e', + '90a0e4b3-6ada-48b8-9f48-399a0cd8aed3', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -405,19 +1289,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11979', + '11965', 'x-ms-correlation-request-id', - '741d9b08-a713-4478-8a75-48f065b060d4', + '6affdb36-bcce-4c0d-af05-6381c8b38aeb', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030503Z:741d9b08-a713-4478-8a75-48f065b060d4', + 'SOUTHEASTASIA:20211210T063413Z:6affdb36-bcce-4c0d-af05-6381c8b38aeb', 'Date', - 'Tue, 28 Sep 2021 03:05:02 GMT', + 'Fri, 10 Dec 2021 06:34:12 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -427,11 +1311,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c7895d69-077d-4e39-8091-e3ca006546c7', + '79be37b3-7426-4f7c-8911-c3b71467876f', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -439,19 +1323,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11978', + '11964', 'x-ms-correlation-request-id', - '7c389fab-0006-42bd-8912-c29d68bed182', + 'eca4e1ec-fdb8-440b-9f3e-5489184348f4', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030505Z:7c389fab-0006-42bd-8912-c29d68bed182', + 'SOUTHEASTASIA:20211210T063415Z:eca4e1ec-fdb8-440b-9f3e-5489184348f4', 'Date', - 'Tue, 28 Sep 2021 03:05:04 GMT', + 'Fri, 10 Dec 2021 06:34:14 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -461,11 +1345,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '15869aca-5c75-4c10-b019-3a0fd520f591', + '68e540d2-3a44-4dad-b462-f7a13fc90571', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -473,19 +1357,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11977', + '11963', 'x-ms-correlation-request-id', - 'f2ed2b36-318d-4511-bac0-8c8f759b6775', + 'dddd8b72-620b-4c55-8df4-2ff8181143d5', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030507Z:f2ed2b36-318d-4511-bac0-8c8f759b6775', + 'SOUTHEASTASIA:20211210T063417Z:dddd8b72-620b-4c55-8df4-2ff8181143d5', 'Date', - 'Tue, 28 Sep 2021 03:05:07 GMT', + 'Fri, 10 Dec 2021 06:34:17 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -495,11 +1379,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '103876e1-b477-448b-9d9a-d275be093869', + '2053800e-e160-493e-8ba4-7b1f25a28708', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -507,19 +1391,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11976', + '11962', 'x-ms-correlation-request-id', - 'fd07c20c-e68a-41c4-9a77-a94889afd8e6', + '9ee8e8f9-4234-41b2-a6ef-c1e559d40500', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030510Z:fd07c20c-e68a-41c4-9a77-a94889afd8e6', + 'SOUTHEASTASIA:20211210T063420Z:9ee8e8f9-4234-41b2-a6ef-c1e559d40500', 'Date', - 'Tue, 28 Sep 2021 03:05:09 GMT', + 'Fri, 10 Dec 2021 06:34:19 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -529,11 +1413,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '248c12da-a8a8-41a9-b427-d3d79496a760', + 'f1239eed-a436-465d-bd5d-c9418f726edb', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -541,19 +1425,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11975', + '11961', 'x-ms-correlation-request-id', - 'b9d1e18e-5c7f-4318-a5c8-62f8917656d1', + 'cdca414d-5d6a-41c1-8608-b715be7fe198', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030512Z:b9d1e18e-5c7f-4318-a5c8-62f8917656d1', + 'SOUTHEASTASIA:20211210T063422Z:cdca414d-5d6a-41c1-8608-b715be7fe198', 'Date', - 'Tue, 28 Sep 2021 03:05:11 GMT', + 'Fri, 10 Dec 2021 06:34:21 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -563,11 +1447,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '095d6f81-f44b-4078-8d1b-f8440d3eb4c1', + '989978f6-8445-4724-abb0-91e45ade4df4', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -575,19 +1459,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11974', + '11960', 'x-ms-correlation-request-id', - '3a31ad60-951c-43b6-b06f-39a590540a33', + 'a073b746-73db-45bd-8ce4-daf3bcb81b0a', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030515Z:3a31ad60-951c-43b6-b06f-39a590540a33', + 'SOUTHEASTASIA:20211210T063424Z:a073b746-73db-45bd-8ce4-daf3bcb81b0a', 'Date', - 'Tue, 28 Sep 2021 03:05:14 GMT', + 'Fri, 10 Dec 2021 06:34:23 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -597,11 +1481,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'adce0dc3-5eb2-4b80-851d-c8dc5c83fb2a', + 'a70b9d51-de2e-47b8-95a4-d5db79d14873', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -609,19 +1493,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11973', + '11959', 'x-ms-correlation-request-id', - '37d36dad-1cf4-4cb8-b067-5dd0fbc3e941', + '2be5fb2f-3c37-44e0-9008-7d12f35f9ca4', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030517Z:37d36dad-1cf4-4cb8-b067-5dd0fbc3e941', + 'SOUTHEASTASIA:20211210T063427Z:2be5fb2f-3c37-44e0-9008-7d12f35f9ca4', 'Date', - 'Tue, 28 Sep 2021 03:05:16 GMT', + 'Fri, 10 Dec 2021 06:34:26 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -631,11 +1515,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c94a1d83-b7ab-42e3-aaf3-2d032c161c1e', + '501153f5-16fe-430e-ad80-97dab2ef33a3', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -643,19 +1527,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11972', + '11958', 'x-ms-correlation-request-id', - '6261193b-0fb9-43f4-b1cb-e0e2ddcd4474', + 'e876944e-42af-4796-9766-c266bab42c7e', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030519Z:6261193b-0fb9-43f4-b1cb-e0e2ddcd4474', + 'SOUTHEASTASIA:20211210T063429Z:e876944e-42af-4796-9766-c266bab42c7e', 'Date', - 'Tue, 28 Sep 2021 03:05:18 GMT', + 'Fri, 10 Dec 2021 06:34:28 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -665,11 +1549,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'ee709435-1b01-4ba7-a42f-4149675f7b03', + '32cf1dfd-50a2-46e1-b5f1-61476caf2cc3', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -677,19 +1561,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11971', + '11957', 'x-ms-correlation-request-id', - '6adce475-0eb4-411d-bb45-20ffdb6cd91d', + '3a36fff0-6258-48eb-9371-10795c87e65b', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030522Z:6adce475-0eb4-411d-bb45-20ffdb6cd91d', + 'SOUTHEASTASIA:20211210T063431Z:3a36fff0-6258-48eb-9371-10795c87e65b', 'Date', - 'Tue, 28 Sep 2021 03:05:22 GMT', + 'Fri, 10 Dec 2021 06:34:30 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -699,11 +1583,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '6b027f23-be88-422d-a63d-be5830eb064b', + '9765bcb4-066f-487b-9e8c-efdfc69ba146', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -711,19 +1595,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11970', + '11956', 'x-ms-correlation-request-id', - 'db84d2ec-b45d-4534-99eb-8989621336c6', + 'a25b2d07-9958-4183-8679-298938b385d7', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030524Z:db84d2ec-b45d-4534-99eb-8989621336c6', + 'SOUTHEASTASIA:20211210T063434Z:a25b2d07-9958-4183-8679-298938b385d7', 'Date', - 'Tue, 28 Sep 2021 03:05:24 GMT', + 'Fri, 10 Dec 2021 06:34:33 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -733,11 +1617,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'b1174c0a-9bad-4c79-bca4-a8bbb40827ca', + 'ef667ab9-87eb-4580-8181-a9b847f9b347', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -745,19 +1629,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11969', + '11955', 'x-ms-correlation-request-id', - '4d8803ea-3fc7-43dd-bb48-81b84753b9fd', + 'dc88b289-4f25-4a44-b5cf-1c6da9e6c0ce', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030526Z:4d8803ea-3fc7-43dd-bb48-81b84753b9fd', + 'SOUTHEASTASIA:20211210T063436Z:dc88b289-4f25-4a44-b5cf-1c6da9e6c0ce', 'Date', - 'Tue, 28 Sep 2021 03:05:26 GMT', + 'Fri, 10 Dec 2021 06:34:35 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -767,11 +1651,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '468583d5-97f0-4d6f-9238-6085a660ab75', + '9d3c3ea8-3ef3-4b4e-b88e-8919d861f7ae', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -779,19 +1663,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11968', + '11954', 'x-ms-correlation-request-id', - 'c8e60875-dd0e-4124-a403-1cbba903e266', + 'cc8ab9bc-44c1-4234-ac25-f93634f34c2c', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030529Z:c8e60875-dd0e-4124-a403-1cbba903e266', + 'SOUTHEASTASIA:20211210T063438Z:cc8ab9bc-44c1-4234-ac25-f93634f34c2c', 'Date', - 'Tue, 28 Sep 2021 03:05:29 GMT', + 'Fri, 10 Dec 2021 06:34:37 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -801,11 +1685,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'f23f9ee5-596f-4547-9329-eb1fde1c03a8', + 'da51c179-b2cb-4cc9-841b-e4ee5943e3ca', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -813,19 +1697,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11967', + '11953', 'x-ms-correlation-request-id', - '46e9502b-f2df-40b2-910b-2d58c1b1389a', + 'ba17d54a-8768-4f1f-8543-4e790db08990', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030531Z:46e9502b-f2df-40b2-910b-2d58c1b1389a', + 'SOUTHEASTASIA:20211210T063441Z:ba17d54a-8768-4f1f-8543-4e790db08990', 'Date', - 'Tue, 28 Sep 2021 03:05:31 GMT', + 'Fri, 10 Dec 2021 06:34:40 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -835,11 +1719,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '959ed0d9-71ee-47aa-8228-87602b63a703', + '60ef5f00-a64a-4fba-ab3a-54187dbcc963', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -847,19 +1731,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11966', + '11952', 'x-ms-correlation-request-id', - '99b4773b-c9de-4400-a98b-da9c69dcbd72', + 'cf8b0501-250f-4721-ba77-5e8813af1253', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030537Z:99b4773b-c9de-4400-a98b-da9c69dcbd72', + 'SOUTHEASTASIA:20211210T063443Z:cf8b0501-250f-4721-ba77-5e8813af1253', 'Date', - 'Tue, 28 Sep 2021 03:05:37 GMT', + 'Fri, 10 Dec 2021 06:34:42 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -869,11 +1753,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '72bc3b72-f5e3-4e20-b039-683640a7437e', + '137b4bce-6bbf-4311-a3b1-ad35455a8bf8', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -881,19 +1765,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11965', + '11951', 'x-ms-correlation-request-id', - 'bb082141-f369-4d2c-831b-07b56f87b52b', + '4ec4f259-0d62-4586-87a7-754fb4d00285', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030540Z:bb082141-f369-4d2c-831b-07b56f87b52b', + 'SOUTHEASTASIA:20211210T063445Z:4ec4f259-0d62-4586-87a7-754fb4d00285', 'Date', - 'Tue, 28 Sep 2021 03:05:39 GMT', + 'Fri, 10 Dec 2021 06:34:44 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -903,11 +1787,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '33258056-05bc-4cd6-8667-1843e93eacc0', + 'b5490297-5266-4f14-92a3-a28844d7f290', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -915,19 +1799,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11964', + '11950', 'x-ms-correlation-request-id', - '43452bdc-7cc7-4f9c-ae69-343cdb32d9e4', + '81101737-b247-44a1-8cae-a4297107d574', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030542Z:43452bdc-7cc7-4f9c-ae69-343cdb32d9e4', + 'SOUTHEASTASIA:20211210T063448Z:81101737-b247-44a1-8cae-a4297107d574', 'Date', - 'Tue, 28 Sep 2021 03:05:42 GMT', + 'Fri, 10 Dec 2021 06:34:48 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -937,11 +1821,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'aa9274aa-f12d-438b-9c68-07f58e0353d6', + '42f81704-58f1-4278-9f8f-0d815775f850', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -949,19 +1833,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11963', + '11949', 'x-ms-correlation-request-id', - '2fee2aa9-3f41-421e-b909-6538944d743a', + '3179f45f-5923-4336-9085-37c8b4d8c088', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030544Z:2fee2aa9-3f41-421e-b909-6538944d743a', + 'SOUTHEASTASIA:20211210T063450Z:3179f45f-5923-4336-9085-37c8b4d8c088', 'Date', - 'Tue, 28 Sep 2021 03:05:44 GMT', + 'Fri, 10 Dec 2021 06:34:50 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -971,11 +1855,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '2c507064-c4ed-4cb7-a3e3-65a4dbd0710c', + 'e21d37f9-41d5-431f-9a3a-0b48a5e474a3', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -983,19 +1867,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11962', + '11948', 'x-ms-correlation-request-id', - '3a4c09a3-230f-472e-af49-303e26dea456', + 'bd78a748-23a6-425f-bcb7-497047c329e3', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030547Z:3a4c09a3-230f-472e-af49-303e26dea456', + 'SOUTHEASTASIA:20211210T063452Z:bd78a748-23a6-425f-bcb7-497047c329e3', 'Date', - 'Tue, 28 Sep 2021 03:05:46 GMT', + 'Fri, 10 Dec 2021 06:34:52 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1005,11 +1889,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '9eac85e9-c5a5-4897-aa92-8956f20b007d', + '28cdda89-b037-4766-aefb-febfdb31e0d7', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1017,19 +1901,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11961', + '11947', 'x-ms-correlation-request-id', - 'e66583c5-0775-4b6a-bda5-98ba0fddca02', + 'd99f7ce0-520d-4768-9b2c-3bc8da118a8e', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030549Z:e66583c5-0775-4b6a-bda5-98ba0fddca02', + 'SOUTHEASTASIA:20211210T063454Z:d99f7ce0-520d-4768-9b2c-3bc8da118a8e', 'Date', - 'Tue, 28 Sep 2021 03:05:49 GMT', + 'Fri, 10 Dec 2021 06:34:54 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1039,11 +1923,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '67887d98-7b94-4502-a978-3caa3fb057ab', + 'a232c362-3071-4df1-b328-baf076f993cc', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1051,19 +1935,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11960', + '11946', 'x-ms-correlation-request-id', - '2e951876-40f9-4dd1-b00d-5e6fb897623b', + 'f98639a2-cabc-4d71-8e3d-6de0c5be365b', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030551Z:2e951876-40f9-4dd1-b00d-5e6fb897623b', + 'SOUTHEASTASIA:20211210T063457Z:f98639a2-cabc-4d71-8e3d-6de0c5be365b', 'Date', - 'Tue, 28 Sep 2021 03:05:51 GMT', + 'Fri, 10 Dec 2021 06:34:57 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1073,11 +1957,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '98f40e10-adf4-4e78-a9a9-40f3912fee17', + '9b6d5779-342e-43f0-9894-5ac4dc66661b', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1085,19 +1969,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11959', + '11945', 'x-ms-correlation-request-id', - 'ec704677-05a9-47f1-b49c-10b6df75300d', + 'eab1f8c5-fbc5-4ffb-b69d-86ab30f874b9', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030554Z:ec704677-05a9-47f1-b49c-10b6df75300d', + 'SOUTHEASTASIA:20211210T063459Z:eab1f8c5-fbc5-4ffb-b69d-86ab30f874b9', 'Date', - 'Tue, 28 Sep 2021 03:05:53 GMT', + 'Fri, 10 Dec 2021 06:34:59 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1107,11 +1991,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'f6b530ff-963b-43fc-bbb5-0df05053cfe7', + '048773fe-0449-473e-b5dc-9bbd71bf9041', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1119,19 +2003,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11958', + '11944', 'x-ms-correlation-request-id', - 'dc4d4c81-c5a7-4cd6-9b56-8e48b87d6c91', + '6c8628c8-2e50-4e7f-835d-2f2fb440ea66', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030556Z:dc4d4c81-c5a7-4cd6-9b56-8e48b87d6c91', + 'SOUTHEASTASIA:20211210T063501Z:6c8628c8-2e50-4e7f-835d-2f2fb440ea66', 'Date', - 'Tue, 28 Sep 2021 03:05:56 GMT', + 'Fri, 10 Dec 2021 06:35:01 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1141,11 +2025,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '7a609f67-698e-4a6b-b24c-b8f23610d36a', + '0cb47908-7795-4ed6-9438-53da79f2a343', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1153,19 +2037,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11957', + '11943', 'x-ms-correlation-request-id', - '4d40b222-418c-49c7-aeb4-37d3c7e0ad1d', + 'faed2349-c948-4d2a-9a4f-e9b2d31a16c0', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030558Z:4d40b222-418c-49c7-aeb4-37d3c7e0ad1d', + 'SOUTHEASTASIA:20211210T063504Z:faed2349-c948-4d2a-9a4f-e9b2d31a16c0', 'Date', - 'Tue, 28 Sep 2021 03:05:58 GMT', + 'Fri, 10 Dec 2021 06:35:04 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1175,11 +2059,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'e5f1740a-72b2-494d-bfa1-2b9dea6e9810', + '74f9f50e-fc0d-484e-94ba-3dafaa3f6cd7', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1187,19 +2071,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11956', + '11942', 'x-ms-correlation-request-id', - '1524d87d-87c6-42d5-96a1-3ccec71f3d6a', + '9a03003b-0864-4189-8112-db0f23bf09f0', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030601Z:1524d87d-87c6-42d5-96a1-3ccec71f3d6a', + 'SOUTHEASTASIA:20211210T063506Z:9a03003b-0864-4189-8112-db0f23bf09f0', 'Date', - 'Tue, 28 Sep 2021 03:06:00 GMT', + 'Fri, 10 Dec 2021 06:35:06 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1209,11 +2093,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'a174fabf-9c6d-4fbb-a53f-6e0fe58e9f3a', + '406715c3-35aa-43dd-bb4b-8205cf186dba', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1221,19 +2105,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11955', + '11941', 'x-ms-correlation-request-id', - 'dde3f8ad-7340-49fb-81cb-a5e716f87755', + '2617f8ac-2118-41c2-b15d-6ba7c4e106bd', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030603Z:dde3f8ad-7340-49fb-81cb-a5e716f87755', + 'SOUTHEASTASIA:20211210T063508Z:2617f8ac-2118-41c2-b15d-6ba7c4e106bd', 'Date', - 'Tue, 28 Sep 2021 03:06:03 GMT', + 'Fri, 10 Dec 2021 06:35:08 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1243,11 +2127,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'a88e7b5a-a4ec-46ac-85fd-8190403369b7', + 'c86a07a8-5a2b-41c4-b99c-6569c7a80ddc', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1255,19 +2139,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11954', + '11940', 'x-ms-correlation-request-id', - 'f07fd107-14cb-4f6e-8ce8-53c9ca48912e', + '6bb3bfd2-71ad-41b0-89c3-b1f818dd6218', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030605Z:f07fd107-14cb-4f6e-8ce8-53c9ca48912e', + 'SOUTHEASTASIA:20211210T063511Z:6bb3bfd2-71ad-41b0-89c3-b1f818dd6218', 'Date', - 'Tue, 28 Sep 2021 03:06:05 GMT', + 'Fri, 10 Dec 2021 06:35:11 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1277,11 +2161,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '804512b3-6158-4f84-afee-970c9d3a745a', + 'c0172d32-ed70-45fa-b2cc-53740fddbf98', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1289,19 +2173,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11953', + '11939', 'x-ms-correlation-request-id', - 'c362e354-f553-4d0c-8312-a4640f2cba6d', + 'e8351299-7b49-4f12-973b-9d2a8d5b8b5f', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030608Z:c362e354-f553-4d0c-8312-a4640f2cba6d', + 'SOUTHEASTASIA:20211210T063513Z:e8351299-7b49-4f12-973b-9d2a8d5b8b5f', 'Date', - 'Tue, 28 Sep 2021 03:06:07 GMT', + 'Fri, 10 Dec 2021 06:35:13 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1311,11 +2195,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'bc5049aa-f492-44fc-8630-4a26c63b6845', + '8aa01098-fae8-4644-9265-cb04de0d2719', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1323,19 +2207,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11952', + '11938', 'x-ms-correlation-request-id', - '9ca3e78a-32bb-4eb1-83ca-39e93a60f7bf', + '5d77a3d8-a7e2-4e43-9ca3-f6a1c77e21b2', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030610Z:9ca3e78a-32bb-4eb1-83ca-39e93a60f7bf', + 'SOUTHEASTASIA:20211210T063515Z:5d77a3d8-a7e2-4e43-9ca3-f6a1c77e21b2', 'Date', - 'Tue, 28 Sep 2021 03:06:10 GMT', + 'Fri, 10 Dec 2021 06:35:15 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1345,11 +2229,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '5e9e78f0-d867-4f4a-a5f5-1fec04ddcb3f', + '377d8c73-421a-4773-90b0-d8bcf2f1bd1b', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1357,19 +2241,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11951', + '11937', 'x-ms-correlation-request-id', - '17548f22-c071-4488-96f7-46b85984dcc7', + '403ea81e-b621-4980-a295-6a70c3ae5238', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030612Z:17548f22-c071-4488-96f7-46b85984dcc7', + 'SOUTHEASTASIA:20211210T063518Z:403ea81e-b621-4980-a295-6a70c3ae5238', 'Date', - 'Tue, 28 Sep 2021 03:06:12 GMT', + 'Fri, 10 Dec 2021 06:35:18 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1379,11 +2263,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '2514ce50-da99-4a62-aeea-240dd9f04101', + '428d96b2-74e0-4ddc-a862-2b01e8f95808', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1391,19 +2275,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11950', + '11936', 'x-ms-correlation-request-id', - '3c120e13-2d47-4f97-bc52-d4e86d8ba688', + 'ba55572e-1893-4d91-a5dd-5bac5608641d', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030615Z:3c120e13-2d47-4f97-bc52-d4e86d8ba688', + 'SOUTHEASTASIA:20211210T063520Z:ba55572e-1893-4d91-a5dd-5bac5608641d', 'Date', - 'Tue, 28 Sep 2021 03:06:14 GMT', + 'Fri, 10 Dec 2021 06:35:20 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1413,11 +2297,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c6a031c5-a54a-43b7-8c3e-e7884f32c7ed', + '7e2a72d4-00c5-4dfb-b635-d747c8cfc661', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1425,19 +2309,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11949', + '11935', 'x-ms-correlation-request-id', - '0c46c6c5-d52a-451b-9788-9a4910f2ad6a', + '129c301e-281e-4dfa-9618-7d48cad158be', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030617Z:0c46c6c5-d52a-451b-9788-9a4910f2ad6a', + 'SOUTHEASTASIA:20211210T063522Z:129c301e-281e-4dfa-9618-7d48cad158be', 'Date', - 'Tue, 28 Sep 2021 03:06:17 GMT', + 'Fri, 10 Dec 2021 06:35:22 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1447,11 +2331,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '021b6407-6ccf-4a7f-b858-1c8ad639a599', + '312e87f7-3b3a-46e0-b5b6-5f258b1c1827', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1459,19 +2343,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11948', + '11934', 'x-ms-correlation-request-id', - '4b791663-43e9-47e4-ad8c-5d17b8fef48d', + '08c711c0-7887-4560-a06a-b3cfa192fbe0', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030619Z:4b791663-43e9-47e4-ad8c-5d17b8fef48d', + 'SOUTHEASTASIA:20211210T063525Z:08c711c0-7887-4560-a06a-b3cfa192fbe0', 'Date', - 'Tue, 28 Sep 2021 03:06:19 GMT', + 'Fri, 10 Dec 2021 06:35:25 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1481,11 +2365,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '2e9ae193-aa23-4e99-9aeb-d55b8d8d4923', + 'bdeb81d6-0ffc-4a4a-8707-aff03feaed26', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1493,19 +2377,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11947', + '11933', 'x-ms-correlation-request-id', - '7c2691bb-0182-4291-b099-1cc1e05cba9e', + '66323a6f-267b-48df-8708-57f6b0e8fa5a', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030622Z:7c2691bb-0182-4291-b099-1cc1e05cba9e', + 'SOUTHEASTASIA:20211210T063527Z:66323a6f-267b-48df-8708-57f6b0e8fa5a', 'Date', - 'Tue, 28 Sep 2021 03:06:22 GMT', + 'Fri, 10 Dec 2021 06:35:27 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1515,11 +2399,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '7c689d59-a83e-413e-8a2a-7d7d5915caf8', + '86a65d50-8616-404d-9b67-52cbb1d44ab5', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1527,19 +2411,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11946', + '11932', 'x-ms-correlation-request-id', - 'c9fb2c4b-27e9-4988-865d-46cd907e4ea6', + 'e91a2998-2e95-4d6b-a39e-83b9807392a6', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030625Z:c9fb2c4b-27e9-4988-865d-46cd907e4ea6', + 'SOUTHEASTASIA:20211210T063529Z:e91a2998-2e95-4d6b-a39e-83b9807392a6', 'Date', - 'Tue, 28 Sep 2021 03:06:24 GMT', + 'Fri, 10 Dec 2021 06:35:29 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1549,11 +2433,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'cc1b8b09-3523-44a7-9744-bbe0856bad9f', + 'f014974d-c562-4584-9fba-fc699c129f3b', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1561,19 +2445,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11945', + '11931', 'x-ms-correlation-request-id', - 'd674bf36-57ae-4f15-9275-06de2ffe847e', + '09258cb6-1d63-4261-8cd7-f52c3ec102f6', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030628Z:d674bf36-57ae-4f15-9275-06de2ffe847e', + 'SOUTHEASTASIA:20211210T063532Z:09258cb6-1d63-4261-8cd7-f52c3ec102f6', 'Date', - 'Tue, 28 Sep 2021 03:06:27 GMT', + 'Fri, 10 Dec 2021 06:35:32 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1583,11 +2467,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'dd5e4f2a-70af-425e-9e1b-8ac202937dce', + '3f966401-9a80-488e-8c78-7b07360c208c', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1595,19 +2479,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11944', + '11930', 'x-ms-correlation-request-id', - 'fe3df451-31ee-4701-92ae-a638bba51590', + 'b041b249-8495-4354-8288-ffe9df24cefb', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030631Z:fe3df451-31ee-4701-92ae-a638bba51590', + 'SOUTHEASTASIA:20211210T063534Z:b041b249-8495-4354-8288-ffe9df24cefb', 'Date', - 'Tue, 28 Sep 2021 03:06:30 GMT', + 'Fri, 10 Dec 2021 06:35:34 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1617,11 +2501,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'd9164a7b-57b6-4703-aac2-33e707cf1262', + '2ad370c3-35ef-4cc1-9cc6-4150549d432e', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1629,19 +2513,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11943', + '11929', 'x-ms-correlation-request-id', - '508c78e1-406e-40c5-9e5c-df9982051db9', + 'acb4446f-0a22-47dd-ac42-8b9bf68bf44f', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030634Z:508c78e1-406e-40c5-9e5c-df9982051db9', + 'SOUTHEASTASIA:20211210T063536Z:acb4446f-0a22-47dd-ac42-8b9bf68bf44f', 'Date', - 'Tue, 28 Sep 2021 03:06:35 GMT', + 'Fri, 10 Dec 2021 06:35:36 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1651,11 +2535,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '3f2f6352-6a0a-4d85-a490-d17e381ee0f2', + 'da7ded8f-7f62-4e13-a152-9e0453e7a272', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1663,19 +2547,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11942', + '11928', 'x-ms-correlation-request-id', - '7965e496-b44e-4ebe-8fa6-ea6c2efc026a', + '9f008935-f0ea-4196-9bcf-cf5709907bde', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030637Z:7965e496-b44e-4ebe-8fa6-ea6c2efc026a', + 'SOUTHEASTASIA:20211210T063539Z:9f008935-f0ea-4196-9bcf-cf5709907bde', 'Date', - 'Tue, 28 Sep 2021 03:06:37 GMT', + 'Fri, 10 Dec 2021 06:35:38 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1685,11 +2569,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '5946ec4b-d395-4c47-9587-73f26db71ae3', + 'd96dd328-51b4-4518-9a13-fbdbb8754312', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1697,19 +2581,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11941', + '11927', 'x-ms-correlation-request-id', - '1f446997-c49c-4259-8a0e-854539ae6f1d', + 'f523dfd8-484b-459c-8f41-180070aafff4', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030641Z:1f446997-c49c-4259-8a0e-854539ae6f1d', + 'SOUTHEASTASIA:20211210T063541Z:f523dfd8-484b-459c-8f41-180070aafff4', 'Date', - 'Tue, 28 Sep 2021 03:06:41 GMT', + 'Fri, 10 Dec 2021 06:35:41 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1719,11 +2603,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'a9c64006-37f1-4757-b98c-6e4878491338', + 'a6fe5332-5986-4e95-a4cb-22129f26b486', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1731,19 +2615,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11940', + '11926', 'x-ms-correlation-request-id', - '0b0272df-32a3-4e60-8bef-23ba1755d8bd', + '425a7933-9bb2-4e24-8c8a-28cb858e9cca', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030643Z:0b0272df-32a3-4e60-8bef-23ba1755d8bd', + 'SOUTHEASTASIA:20211210T063543Z:425a7933-9bb2-4e24-8c8a-28cb858e9cca', 'Date', - 'Tue, 28 Sep 2021 03:06:43 GMT', + 'Fri, 10 Dec 2021 06:35:43 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1753,11 +2637,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '381528a2-f610-4271-b15f-413c549074df', + '73970cec-2f30-4647-aa64-2b8089a67358', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1765,19 +2649,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11939', + '11925', 'x-ms-correlation-request-id', - '535ddc70-26c6-46e1-94e8-acf1798b1229', + '9d0214fc-f332-4693-80be-bb564d37cf21', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030646Z:535ddc70-26c6-46e1-94e8-acf1798b1229', + 'SOUTHEASTASIA:20211210T063546Z:9d0214fc-f332-4693-80be-bb564d37cf21', 'Date', - 'Tue, 28 Sep 2021 03:06:45 GMT', + 'Fri, 10 Dec 2021 06:35:45 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1787,11 +2671,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'ebf1f33f-ab3f-4d1c-82dc-481567058412', + '80d9b700-8546-459e-8453-fa4640ebc09b', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1799,19 +2683,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11938', + '11924', 'x-ms-correlation-request-id', - 'c1717076-0fcc-45d6-9b28-146826247f48', + '9ec3be8c-1e77-4f59-a156-f58d3e418467', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030648Z:c1717076-0fcc-45d6-9b28-146826247f48', + 'SOUTHEASTASIA:20211210T063548Z:9ec3be8c-1e77-4f59-a156-f58d3e418467', 'Date', - 'Tue, 28 Sep 2021 03:06:48 GMT', + 'Fri, 10 Dec 2021 06:35:48 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1821,11 +2705,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'eaeda977-9c19-44bf-a08f-f69787bdff29', + '63fdd2de-70db-42f6-b2d2-132494f2152b', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1833,19 +2717,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11937', + '11923', 'x-ms-correlation-request-id', - 'c6af2134-01f9-403d-9b60-55c8c7d5f119', + '79bb6482-6b58-49f2-9971-eb0eea539051', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030650Z:c6af2134-01f9-403d-9b60-55c8c7d5f119', + 'SOUTHEASTASIA:20211210T063550Z:79bb6482-6b58-49f2-9971-eb0eea539051', 'Date', - 'Tue, 28 Sep 2021 03:06:50 GMT', + 'Fri, 10 Dec 2021 06:35:50 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1855,11 +2739,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '2c170c54-150a-4080-86dd-fb85c0524647', + '2124c653-4a12-4f14-8043-90ee2e76e6b2', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1867,19 +2751,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11936', + '11922', 'x-ms-correlation-request-id', - '68bee8e1-2007-4baa-aa97-00c6ec46736f', + 'cdbef28f-7cf3-4b4b-a052-a1d61511a4f4', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030653Z:68bee8e1-2007-4baa-aa97-00c6ec46736f', + 'SOUTHEASTASIA:20211210T063553Z:cdbef28f-7cf3-4b4b-a052-a1d61511a4f4', 'Date', - 'Tue, 28 Sep 2021 03:06:52 GMT', + 'Fri, 10 Dec 2021 06:35:52 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1889,11 +2773,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '994b3265-cab2-4885-8851-36f2005dacbb', + '2224b600-26f3-49a1-ac20-74272f53bbb7', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1901,19 +2785,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11935', + '11921', 'x-ms-correlation-request-id', - 'f4dac703-2201-4af8-8c5b-af604cc92abc', + '3c112ffc-0310-4041-9531-778939172fb5', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030655Z:f4dac703-2201-4af8-8c5b-af604cc92abc', + 'SOUTHEASTASIA:20211210T063555Z:3c112ffc-0310-4041-9531-778939172fb5', 'Date', - 'Tue, 28 Sep 2021 03:06:54 GMT', + 'Fri, 10 Dec 2021 06:35:54 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1923,11 +2807,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'b7f8c235-cadc-42fa-8972-042334324b43', + '4583b9c1-db39-46af-8589-30f4ed7e8cbe', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1935,19 +2819,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11934', + '11920', 'x-ms-correlation-request-id', - '7610d097-e1c4-45cd-9fd1-e2ef6fa59cd8', + '922970c6-52e2-445b-a7f6-a0638cad5986', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030657Z:7610d097-e1c4-45cd-9fd1-e2ef6fa59cd8', + 'SOUTHEASTASIA:20211210T063557Z:922970c6-52e2-445b-a7f6-a0638cad5986', 'Date', - 'Tue, 28 Sep 2021 03:06:57 GMT', + 'Fri, 10 Dec 2021 06:35:57 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1957,11 +2841,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '631cfc54-01f9-4d15-8d7a-d6652e136f71', + '0a0b0ac2-ed59-42e7-9a63-2a2bad183766', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -1969,19 +2853,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11933', + '11919', 'x-ms-correlation-request-id', - '5e2219c4-f9b6-4bbb-96c4-3d4877282159', + '93c5de44-82d1-4928-87aa-8c418b7cbc3a', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030700Z:5e2219c4-f9b6-4bbb-96c4-3d4877282159', + 'SOUTHEASTASIA:20211210T063600Z:93c5de44-82d1-4928-87aa-8c418b7cbc3a', 'Date', - 'Tue, 28 Sep 2021 03:06:59 GMT', + 'Fri, 10 Dec 2021 06:35:59 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -1991,11 +2875,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '1db4f5b1-0d92-449f-8f93-9611892a9bdf', + '32908982-7b22-4156-b99e-644488f807a6', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2003,19 +2887,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11932', + '11918', 'x-ms-correlation-request-id', - '56598813-7cd1-47d6-9930-60f400d7980a', + '5ca6b7fc-4eba-4ea9-851f-7a89769c5c1e', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030702Z:56598813-7cd1-47d6-9930-60f400d7980a', + 'SOUTHEASTASIA:20211210T063602Z:5ca6b7fc-4eba-4ea9-851f-7a89769c5c1e', 'Date', - 'Tue, 28 Sep 2021 03:07:01 GMT', + 'Fri, 10 Dec 2021 06:36:01 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2025,11 +2909,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c950a47c-8da4-4104-9488-3d552ec533b9', + 'f56b69ca-0828-4aa4-95bd-60c160becaa8', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2037,19 +2921,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11931', + '11917', 'x-ms-correlation-request-id', - '66316aa8-e958-4ac6-acbd-8581e9080c40', + 'beac265a-cceb-4a8f-bb8b-bd070680c95c', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030704Z:66316aa8-e958-4ac6-acbd-8581e9080c40', + 'SOUTHEASTASIA:20211210T063604Z:beac265a-cceb-4a8f-bb8b-bd070680c95c', 'Date', - 'Tue, 28 Sep 2021 03:07:04 GMT', + 'Fri, 10 Dec 2021 06:36:04 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2059,11 +2943,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '9da5ff62-a905-404c-92bf-6205d7cafc2d', + '5c3c274d-834e-46cd-b892-2fb340d0afe2', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2071,19 +2955,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11930', + '11916', 'x-ms-correlation-request-id', - 'd49e2416-e9ac-4aff-8fbd-0a6524a6d8e9', + 'cdd5fb82-7595-49ed-bec7-a655d23a2b06', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030707Z:d49e2416-e9ac-4aff-8fbd-0a6524a6d8e9', + 'SOUTHEASTASIA:20211210T063607Z:cdd5fb82-7595-49ed-bec7-a655d23a2b06', 'Date', - 'Tue, 28 Sep 2021 03:07:06 GMT', + 'Fri, 10 Dec 2021 06:36:06 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2093,11 +2977,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c2e3fb47-467d-4858-953b-cc4a3ef81f54', + '41413d77-8d93-4426-970d-f97f047c06e9', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2105,19 +2989,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11929', + '11915', 'x-ms-correlation-request-id', - 'a1d0b062-4a3b-4fd3-baad-5b8b71f9c31a', + 'b0f5d47a-7f9d-4a8c-9add-2ad66f3ede74', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030709Z:a1d0b062-4a3b-4fd3-baad-5b8b71f9c31a', + 'SOUTHEASTASIA:20211210T063609Z:b0f5d47a-7f9d-4a8c-9add-2ad66f3ede74', 'Date', - 'Tue, 28 Sep 2021 03:07:08 GMT', + 'Fri, 10 Dec 2021 06:36:08 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2127,11 +3011,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '1260b0c6-1beb-4196-8275-e1198917d4ad', + 'e51922e7-a98f-4cd8-82a0-d6d615ebe888', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2139,19 +3023,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11928', + '11914', 'x-ms-correlation-request-id', - '89cf1cc1-60c2-4222-bc19-22aba69d73a4', + '592e9c3d-6e94-4e11-9ea4-9680e99f84c4', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030711Z:89cf1cc1-60c2-4222-bc19-22aba69d73a4', + 'SOUTHEASTASIA:20211210T063611Z:592e9c3d-6e94-4e11-9ea4-9680e99f84c4', 'Date', - 'Tue, 28 Sep 2021 03:07:11 GMT', + 'Fri, 10 Dec 2021 06:36:11 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2161,11 +3045,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '21d8ec5c-15f7-40c4-9f94-7b077d13c6e4', + '6602a52c-51f4-403b-b8b3-ef0c1eab454b', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2173,19 +3057,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11927', + '11913', 'x-ms-correlation-request-id', - 'fefaf885-b357-4eea-990c-80a179d06a4f', + 'ea96a45b-d16b-4058-a0a0-4bb95d12d66e', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030714Z:fefaf885-b357-4eea-990c-80a179d06a4f', + 'SOUTHEASTASIA:20211210T063614Z:ea96a45b-d16b-4058-a0a0-4bb95d12d66e', 'Date', - 'Tue, 28 Sep 2021 03:07:13 GMT', + 'Fri, 10 Dec 2021 06:36:13 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2195,11 +3079,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'f12ddb16-02ad-409b-96c7-87ccdd2b3c46', + '2893a76a-64fd-4282-9dee-f5ac5ace9b20', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2207,19 +3091,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11926', + '11912', 'x-ms-correlation-request-id', - '038e4d74-bd65-4ebf-9005-b12a06a0b25f', + 'a032ef67-c363-4397-8151-e3d532358b56', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030716Z:038e4d74-bd65-4ebf-9005-b12a06a0b25f', + 'SOUTHEASTASIA:20211210T063616Z:a032ef67-c363-4397-8151-e3d532358b56', 'Date', - 'Tue, 28 Sep 2021 03:07:15 GMT', + 'Fri, 10 Dec 2021 06:36:15 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2229,11 +3113,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '41322feb-6cad-407a-8fbf-ba5420f64cdb', + '881177a4-1ea5-4ae9-a2a3-41a4e15fd1de', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2241,19 +3125,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11925', + '11911', 'x-ms-correlation-request-id', - '2cf6dd73-8154-4935-adb0-08c28df0fe29', + '1f01f017-d725-4147-9adf-0b3ac3682b82', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030718Z:2cf6dd73-8154-4935-adb0-08c28df0fe29', + 'SOUTHEASTASIA:20211210T063618Z:1f01f017-d725-4147-9adf-0b3ac3682b82', 'Date', - 'Tue, 28 Sep 2021 03:07:18 GMT', + 'Fri, 10 Dec 2021 06:36:18 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2263,11 +3147,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'e73d4bfa-e8ed-4a12-ba29-243cc6b1def8', + 'c0769e7a-7311-4dcb-90c4-5ea463969f79', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2275,19 +3159,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11924', + '11910', 'x-ms-correlation-request-id', - '5452a778-5264-4223-b565-195a3423a4b8', + 'abc481f0-c62a-4580-8dd9-419e7c23b304', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030721Z:5452a778-5264-4223-b565-195a3423a4b8', + 'SOUTHEASTASIA:20211210T063620Z:abc481f0-c62a-4580-8dd9-419e7c23b304', 'Date', - 'Tue, 28 Sep 2021 03:07:20 GMT', + 'Fri, 10 Dec 2021 06:36:20 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2297,11 +3181,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '92646756-6dd6-4813-b970-1eec6fd0fcb4', + 'c87bb54b-7bb3-4b87-8387-835f8809411e', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2309,19 +3193,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11923', + '11909', 'x-ms-correlation-request-id', - '24805fa7-d9cc-4825-ac88-60129a55509f', + '141626af-054f-4b0b-898b-c5d56f58073c', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030723Z:24805fa7-d9cc-4825-ac88-60129a55509f', + 'SOUTHEASTASIA:20211210T063623Z:141626af-054f-4b0b-898b-c5d56f58073c', 'Date', - 'Tue, 28 Sep 2021 03:07:22 GMT', + 'Fri, 10 Dec 2021 06:36:22 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2331,11 +3215,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'e364916e-9236-4fdb-a116-5e54c7ef32f6', + 'f9814612-3bd0-4b15-95c6-7bf1d9a1f43c', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2343,19 +3227,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11922', + '11908', 'x-ms-correlation-request-id', - 'dd8172f0-b032-4d9d-80f1-d6623bc9fd3d', + '91de88a0-ff68-4983-a549-669be59bf75f', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030725Z:dd8172f0-b032-4d9d-80f1-d6623bc9fd3d', + 'SOUTHEASTASIA:20211210T063625Z:91de88a0-ff68-4983-a549-669be59bf75f', 'Date', - 'Tue, 28 Sep 2021 03:07:25 GMT', + 'Fri, 10 Dec 2021 06:36:24 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2365,11 +3249,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '9a44a96a-fed6-4be5-b54f-86f192c6ab82', + '16b435cd-5906-4b89-abb2-4c54075d0a39', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2377,19 +3261,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11921', + '11907', 'x-ms-correlation-request-id', - '42467b08-7eed-41b6-834f-a88d52f16005', + '154be10b-d2af-4925-9c70-3ca7a7d1dd17', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030728Z:42467b08-7eed-41b6-834f-a88d52f16005', + 'SOUTHEASTASIA:20211210T063627Z:154be10b-d2af-4925-9c70-3ca7a7d1dd17', 'Date', - 'Tue, 28 Sep 2021 03:07:27 GMT', + 'Fri, 10 Dec 2021 06:36:27 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2399,11 +3283,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '77569352-afe8-483b-adff-f34d9fa642f7', + 'f8537ef1-18cf-4481-8960-6b0c6736ce53', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2411,19 +3295,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11920', + '11906', 'x-ms-correlation-request-id', - '74ebdad5-2840-4a65-bee8-2c34d6ae340a', + '29b868d2-bec0-4fee-9cd9-e00588695719', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030730Z:74ebdad5-2840-4a65-bee8-2c34d6ae340a', + 'SOUTHEASTASIA:20211210T063630Z:29b868d2-bec0-4fee-9cd9-e00588695719', 'Date', - 'Tue, 28 Sep 2021 03:07:29 GMT', + 'Fri, 10 Dec 2021 06:36:29 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2433,11 +3317,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '9d303276-1832-4406-8e17-2f60668ce50e', + 'b36e5ec6-4d34-4036-9b05-bb8d4e7e70fa', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2445,19 +3329,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11919', + '11905', 'x-ms-correlation-request-id', - 'd6dfa82d-1534-48d5-bfac-c0335126a656', + 'b5bc28ad-b037-4df8-b21c-61e2b4eeb58f', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030732Z:d6dfa82d-1534-48d5-bfac-c0335126a656', + 'SOUTHEASTASIA:20211210T063632Z:b5bc28ad-b037-4df8-b21c-61e2b4eeb58f', 'Date', - 'Tue, 28 Sep 2021 03:07:32 GMT', + 'Fri, 10 Dec 2021 06:36:31 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2467,11 +3351,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '17c1f8d2-7cc7-4617-94e3-2d5985ead8c2', + 'b7aefc7c-969d-40b8-923e-24b3b3fa928b', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2479,19 +3363,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11918', + '11904', 'x-ms-correlation-request-id', - '5b7f509d-4e17-4a81-983c-a324e05101ee', + '7732bd0d-3e84-4924-831a-1240e6f19f10', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030735Z:5b7f509d-4e17-4a81-983c-a324e05101ee', + 'SOUTHEASTASIA:20211210T063634Z:7732bd0d-3e84-4924-831a-1240e6f19f10', 'Date', - 'Tue, 28 Sep 2021 03:07:34 GMT', + 'Fri, 10 Dec 2021 06:36:34 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2501,11 +3385,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'e77f3721-8a25-45a1-be82-31a69580566c', + '3c9d8cce-cfd0-419d-8924-2e1ed47d0fb8', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2513,19 +3397,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11917', + '11903', 'x-ms-correlation-request-id', - '3e6d3b7b-fde7-4020-9b46-8c09c649d3cc', + 'fc0c7f91-0893-424a-a72b-ff873f40c51c', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030737Z:3e6d3b7b-fde7-4020-9b46-8c09c649d3cc', + 'SOUTHEASTASIA:20211210T063637Z:fc0c7f91-0893-424a-a72b-ff873f40c51c', 'Date', - 'Tue, 28 Sep 2021 03:07:36 GMT', + 'Fri, 10 Dec 2021 06:36:36 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2535,11 +3419,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'ba1bd907-d81c-4a8b-a731-ccf80ed2705f', + 'd24e904a-bb9d-48a0-b156-5ea965c34bfb', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2547,19 +3431,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11916', + '11902', 'x-ms-correlation-request-id', - '33c05447-ac3f-44ee-b3bc-735c04870c82', + 'dbc86f63-5574-4ca1-b8ac-0846c63d898a', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030739Z:33c05447-ac3f-44ee-b3bc-735c04870c82', + 'SOUTHEASTASIA:20211210T063639Z:dbc86f63-5574-4ca1-b8ac-0846c63d898a', 'Date', - 'Tue, 28 Sep 2021 03:07:39 GMT', + 'Fri, 10 Dec 2021 06:36:38 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2569,11 +3453,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'd690a9f8-a1a4-4325-9cbd-cd887001360a', + '2381fadf-9d22-4547-aaf8-a9f70adfa7a6', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2581,19 +3465,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11915', + '11901', 'x-ms-correlation-request-id', - '58e467df-6154-4f43-a885-2478b5ab85eb', + 'd0a43450-0028-472d-83f8-8d9896c6c38a', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030742Z:58e467df-6154-4f43-a885-2478b5ab85eb', + 'SOUTHEASTASIA:20211210T063641Z:d0a43450-0028-472d-83f8-8d9896c6c38a', 'Date', - 'Tue, 28 Sep 2021 03:07:41 GMT', + 'Fri, 10 Dec 2021 06:36:41 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2603,11 +3487,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '96930182-6e7e-498f-b5ff-4cb7a18cf144', + '31d757c9-bb2c-4467-9b93-d9d6cb3fdf5a', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2615,19 +3499,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11914', + '11900', 'x-ms-correlation-request-id', - 'aa7776ad-3234-4334-8190-7d3f6122dcce', + '7a1221d1-171d-42c3-b0ee-a93efcea53af', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030744Z:aa7776ad-3234-4334-8190-7d3f6122dcce', + 'SOUTHEASTASIA:20211210T063644Z:7a1221d1-171d-42c3-b0ee-a93efcea53af', 'Date', - 'Tue, 28 Sep 2021 03:07:44 GMT', + 'Fri, 10 Dec 2021 06:36:43 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2637,11 +3521,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c727a21b-0111-449f-80ba-b51f0f07a8cb', + '95a92bb0-7e52-4b59-805b-b4e582270e58', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2649,19 +3533,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11913', + '11899', 'x-ms-correlation-request-id', - 'f42dfb9f-7ed3-4b70-a3d7-ca9a848d96ca', + 'e0531561-c725-49ba-8e1c-9ac5ae3123e1', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030747Z:f42dfb9f-7ed3-4b70-a3d7-ca9a848d96ca', + 'SOUTHEASTASIA:20211210T063646Z:e0531561-c725-49ba-8e1c-9ac5ae3123e1', 'Date', - 'Tue, 28 Sep 2021 03:07:46 GMT', + 'Fri, 10 Dec 2021 06:36:45 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2671,11 +3555,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c77e9f54-2247-4da5-9adb-810311a5a16f', + '7a405254-8691-492a-a7d7-7ba62f2274ab', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2683,19 +3567,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11912', + '11898', 'x-ms-correlation-request-id', - '58a85ab6-12bf-45e5-afba-e8d04eec76e3', + '04a31192-49c3-46d6-92ac-53a82b99f590', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030749Z:58a85ab6-12bf-45e5-afba-e8d04eec76e3', + 'SOUTHEASTASIA:20211210T063648Z:04a31192-49c3-46d6-92ac-53a82b99f590', 'Date', - 'Tue, 28 Sep 2021 03:07:49 GMT', + 'Fri, 10 Dec 2021 06:36:48 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2705,11 +3589,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '6b206ff6-7fc5-4cbd-a0e5-70400d6aa1fa', + 'c8083af6-f8d2-431d-9ead-e56cb1e86f41', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2717,19 +3601,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11911', + '11897', 'x-ms-correlation-request-id', - 'f6c0b154-5ee1-4fe4-b153-56a0e10f3b4e', + 'de1d4554-abf6-4dba-9dd4-5e39cb832ffa', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030751Z:f6c0b154-5ee1-4fe4-b153-56a0e10f3b4e', + 'SOUTHEASTASIA:20211210T063651Z:de1d4554-abf6-4dba-9dd4-5e39cb832ffa', 'Date', - 'Tue, 28 Sep 2021 03:07:51 GMT', + 'Fri, 10 Dec 2021 06:36:50 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2739,11 +3623,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '760d3c51-4d6d-4e82-b506-3a81c330d4f5', + '4e9959b0-5853-4bb1-b546-3a577b83ba84', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2751,19 +3635,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11910', + '11896', 'x-ms-correlation-request-id', - 'd5bfe7c6-7b10-4c6a-925c-dddcab612247', + 'd213ae99-3baa-4170-8198-f0c0c71cf3b3', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030754Z:d5bfe7c6-7b10-4c6a-925c-dddcab612247', + 'SOUTHEASTASIA:20211210T063653Z:d213ae99-3baa-4170-8198-f0c0c71cf3b3', 'Date', - 'Tue, 28 Sep 2021 03:07:54 GMT', + 'Fri, 10 Dec 2021 06:36:52 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2773,11 +3657,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'c8f3c9e8-cfb4-4bfa-af44-b0dc17341147', + '70285054-9b3e-4d5b-9a11-ce8e71aeb508', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2785,19 +3669,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11909', + '11895', 'x-ms-correlation-request-id', - 'bf1b0582-da89-42b4-a184-ff6b8536ffc5', + '000761c3-8ad5-4e52-bd15-601521ddd474', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030756Z:bf1b0582-da89-42b4-a184-ff6b8536ffc5', + 'SOUTHEASTASIA:20211210T063655Z:000761c3-8ad5-4e52-bd15-601521ddd474', 'Date', - 'Tue, 28 Sep 2021 03:07:56 GMT', + 'Fri, 10 Dec 2021 06:36:54 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2807,11 +3691,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '84a83a7b-aa28-41eb-885c-594763811b4d', + 'bcebda0f-c58d-46f6-8d50-96183eadb6e0', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2819,19 +3703,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11908', + '11894', 'x-ms-correlation-request-id', - '3a751bf0-bbd5-44da-b2d3-0a006b5a8416', + '1728fcac-138e-4e4c-8d7f-a9d7f584942d', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030758Z:3a751bf0-bbd5-44da-b2d3-0a006b5a8416', + 'SOUTHEASTASIA:20211210T063658Z:1728fcac-138e-4e4c-8d7f-a9d7f584942d', 'Date', - 'Tue, 28 Sep 2021 03:07:58 GMT', + 'Fri, 10 Dec 2021 06:36:57 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2841,11 +3725,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '485348f1-a8b5-4ca8-92dd-e98d6df4d759', + '410f9982-2961-44a4-b480-8dbf90f3e985', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2853,19 +3737,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11907', + '11893', 'x-ms-correlation-request-id', - '66844100-eacb-4d9b-b14d-1d393c89e636', + '86437337-2a9d-43d7-95d3-4a2c882192f6', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030801Z:66844100-eacb-4d9b-b14d-1d393c89e636', + 'SOUTHEASTASIA:20211210T063700Z:86437337-2a9d-43d7-95d3-4a2c882192f6', 'Date', - 'Tue, 28 Sep 2021 03:08:01 GMT', + 'Fri, 10 Dec 2021 06:36:59 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2875,11 +3759,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '4a37ab9a-bf4b-459b-9f8b-4981b34393e4', + '1d827388-d478-4d40-bb31-b31ceb1161fd', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2887,19 +3771,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11906', + '11892', 'x-ms-correlation-request-id', - '6850140e-1f2b-428a-af87-c5261361ae29', + '4c1bb8b2-06ea-4609-9402-ab977d8b1eb7', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030803Z:6850140e-1f2b-428a-af87-c5261361ae29', + 'SOUTHEASTASIA:20211210T063702Z:4c1bb8b2-06ea-4609-9402-ab977d8b1eb7', 'Date', - 'Tue, 28 Sep 2021 03:08:03 GMT', + 'Fri, 10 Dec 2021 06:37:01 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2909,11 +3793,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '7a70e76a-bea6-45ea-8501-a2d4ad6798b8', + 'c40ce8ad-1bf7-48ad-87c3-2e93323910db', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2921,19 +3805,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11905', + '11891', 'x-ms-correlation-request-id', - '7a179a2f-be79-463e-b7c1-fced9323dff0', + '34480db2-2604-471c-abce-d795094b27e0', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030805Z:7a179a2f-be79-463e-b7c1-fced9323dff0', + 'SOUTHEASTASIA:20211210T063705Z:34480db2-2604-471c-abce-d795094b27e0', 'Date', - 'Tue, 28 Sep 2021 03:08:05 GMT', + 'Fri, 10 Dec 2021 06:37:04 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2943,11 +3827,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '885e4d98-24b0-45be-94e9-a7d008cc46c4', + 'a7c18158-83cd-4831-a054-5d10ed38ca9f', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2955,19 +3839,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11904', + '11890', 'x-ms-correlation-request-id', - '9222d6e6-1151-47a8-a36c-ada92e862123', + '023582be-260e-4a4e-a6d7-fb0616f831c8', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030808Z:9222d6e6-1151-47a8-a36c-ada92e862123', + 'SOUTHEASTASIA:20211210T063707Z:023582be-260e-4a4e-a6d7-fb0616f831c8', 'Date', - 'Tue, 28 Sep 2021 03:08:08 GMT', + 'Fri, 10 Dec 2021 06:37:06 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -2977,11 +3861,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '26be9aed-e7f9-4bcc-9e39-cbbad14bbc53', + '96b45903-396c-42f3-b194-dd683316749a', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -2989,19 +3873,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11903', + '11889', 'x-ms-correlation-request-id', - 'a27d521e-eaa3-4c3c-baa9-e3b0a1e46a9a', + 'fada7095-5ea1-4438-acf8-7d6ef1049505', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030810Z:a27d521e-eaa3-4c3c-baa9-e3b0a1e46a9a', + 'SOUTHEASTASIA:20211210T063709Z:fada7095-5ea1-4438-acf8-7d6ef1049505', 'Date', - 'Tue, 28 Sep 2021 03:08:10 GMT', + 'Fri, 10 Dec 2021 06:37:09 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -3011,11 +3895,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '5026958e-e13c-43c9-b596-c74ddf644df5', + '9f79b6ea-7ccf-435e-b7c6-6a5d42fceeef', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3023,19 +3907,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11902', + '11888', 'x-ms-correlation-request-id', - 'f482f361-fd28-4f62-939b-b87df6bdadb8', + '0fe428b4-be81-4b8d-b7fe-d02ed2100e84', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030813Z:f482f361-fd28-4f62-939b-b87df6bdadb8', + 'SOUTHEASTASIA:20211210T063712Z:0fe428b4-be81-4b8d-b7fe-d02ed2100e84', 'Date', - 'Tue, 28 Sep 2021 03:08:13 GMT', + 'Fri, 10 Dec 2021 06:37:12 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -3045,11 +3929,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'ba66a456-8172-4e9a-a4ec-0b8de0749d90', + '4c1d578b-5681-4e75-b90d-eea17724eddc', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3057,19 +3941,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11901', + '11887', 'x-ms-correlation-request-id', - '84ed1d48-070c-4a74-a3b1-944fc676dcb9', + '0b937828-cc86-452e-97eb-f672785e25c3', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030815Z:84ed1d48-070c-4a74-a3b1-944fc676dcb9', + 'SOUTHEASTASIA:20211210T063714Z:0b937828-cc86-452e-97eb-f672785e25c3', 'Date', - 'Tue, 28 Sep 2021 03:08:15 GMT', + 'Fri, 10 Dec 2021 06:37:14 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -3079,11 +3963,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'bdcac188-0ce5-4bfb-b6ee-9af8c31681fa', + '9b704d65-cd40-46e5-b39b-a81b3cf3a393', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3091,19 +3975,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11900', + '11886', 'x-ms-correlation-request-id', - 'ea45e675-7a8f-43fd-8c98-54d2da9ddea4', + '10260b69-0863-4895-b256-98c6378669fa', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030818Z:ea45e675-7a8f-43fd-8c98-54d2da9ddea4', + 'SOUTHEASTASIA:20211210T063716Z:10260b69-0863-4895-b256-98c6378669fa', 'Date', - 'Tue, 28 Sep 2021 03:08:17 GMT', + 'Fri, 10 Dec 2021 06:37:16 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -3113,11 +3997,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'b91a65b8-5223-4faa-974e-b866b926c201', + '37d063d2-7e8c-441d-821a-3c2dbd88df8c', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3125,19 +4009,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11899', + '11885', 'x-ms-correlation-request-id', - '431e2648-d2f3-43b7-9f6d-280a1aadf58a', + 'a51ff957-107c-45c1-b10e-3af02630756d', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030820Z:431e2648-d2f3-43b7-9f6d-280a1aadf58a', + 'SOUTHEASTASIA:20211210T063719Z:a51ff957-107c-45c1-b10e-3af02630756d', 'Date', - 'Tue, 28 Sep 2021 03:08:20 GMT', + 'Fri, 10 Dec 2021 06:37:18 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -3147,11 +4031,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - '7fb2fa93-d6d6-4820-b935-df2deaaf5ad8', + '97bf8fac-b5b2-43de-8fd6-005641137224', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3159,51 +4043,155 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11898', + '11884', 'x-ms-correlation-request-id', - '16c28bd1-ddb8-4085-8107-8d2c1d7f69ff', + '33206b4b-fc4f-40bf-aee7-b8a2c3d38c2f', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030826Z:16c28bd1-ddb8-4085-8107-8d2c1d7f69ff', + 'SOUTHEASTASIA:20211210T063721Z:33206b4b-fc4f-40bf-aee7-b8a2c3d38c2f', 'Date', - 'Tue, 28 Sep 2021 03:08:25 GMT', + 'Fri, 10 Dec 2021 06:37:21 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) - .reply(504, {"error":{"code":"GatewayTimeout","message":"The gateway did not receive a response from 'Microsoft.Cache' within the specified time period."}}, [ + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '73b00e4c-4633-4484-9d2e-9a6b5df38566', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11883', + 'x-ms-correlation-request-id', + '67c2ba23-43c9-4682-b3c3-2906d4f25028', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063723Z:67c2ba23-43c9-4682-b3c3-2906d4f25028', + 'Date', + 'Fri, 10 Dec 2021 06:37:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '0c4af4e2-102e-43dc-9b9b-6b384749693f', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11882', + 'x-ms-correlation-request-id', + 'bda63d4e-5772-4d04-a793-1669c081d136', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063725Z:bda63d4e-5772-4d04-a793-1669c081d136', + 'Date', + 'Fri, 10 Dec 2021 06:37:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ 'Cache-Control', 'no-cache', 'Pragma', 'no-cache', - 'Content-Type', - 'application/json; charset=utf-8', 'Expires', '-1', - 'x-ms-failure-cause', - 'service', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'f32869dd-a926-45a0-9e82-60797261b329', + '68380af0-2b6b-4349-b9d6-aa88f515f19c', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11881', 'x-ms-correlation-request-id', - 'f32869dd-a926-45a0-9e82-60797261b329', + '70873f0c-cc32-48ad-b239-f84085802708', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030928Z:f32869dd-a926-45a0-9e82-60797261b329', + 'SOUTHEASTASIA:20211210T063728Z:70873f0c-cc32-48ad-b239-f84085802708', + 'Date', + 'Fri, 10 Dec 2021 06:37:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', + 'x-ms-request-id', + '92c97c40-f727-4668-802f-7ab5697072dd', + 'x-rp-server-mvid', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11880', + 'x-ms-correlation-request-id', + '3486634b-ae1b-47d9-8344-d705d004f093', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211210T063730Z:3486634b-ae1b-47d9-8344-d705d004f093', 'Date', - 'Tue, 28 Sep 2021 03:09:28 GMT', - 'Connection', - 'close', + 'Fri, 10 Dec 2021 06:37:30 GMT', 'Content-Length', - '143' + '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(202, "", [ 'Cache-Control', @@ -3213,11 +4201,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'Location', - 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b?api-version=2020-12-01', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a?api-version=2020-12-01', 'x-ms-request-id', - 'b41ee15b-7c7b-4586-9d32-1af4cbbf2282', + '2c2c51e0-fb41-4bc5-9edc-cf1fa1d0c386', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3225,19 +4213,19 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11896', + '11879', 'x-ms-correlation-request-id', - '007269e8-ec34-43a8-a80b-bdcda145e92b', + '0ca1198d-cf1c-48d9-bd80-ce63aec74ebe', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030941Z:007269e8-ec34-43a8-a80b-bdcda145e92b', + 'SOUTHEASTASIA:20211210T063732Z:0ca1198d-cf1c-48d9-bd80-ce63aec74ebe', 'Date', - 'Tue, 28 Sep 2021 03:09:41 GMT', + 'Fri, 10 Dec 2021 06:37:32 GMT', 'Content-Length', '0' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) - .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/c9624211-42da-4ffc-8329-7fc9c894426b') + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Cache/locations/East%20US/operationresults/9388d2da-d74d-45eb-8880-bc748535a34a') .query(true) .reply(200, "", [ 'Cache-Control', @@ -3247,9 +4235,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Expires', '-1', 'x-ms-request-id', - '71bd099e-581a-48f0-9d10-5dbf1f7bfb72', + '65e9db80-3034-4fac-927c-449bed991ee2', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3257,13 +4245,13 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11895', + '11878', 'x-ms-correlation-request-id', - '1c519040-93c7-4c8d-87d0-f5a5f881bb3b', + '445d169d-69a2-46c3-bfbb-630c1fc43622', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030947Z:1c519040-93c7-4c8d-87d0-f5a5f881bb3b', + 'SOUTHEASTASIA:20211210T063735Z:445d169d-69a2-46c3-bfbb-630c1fc43622', 'Date', - 'Tue, 28 Sep 2021 03:09:47 GMT', + 'Fri, 10 Dec 2021 06:37:35 GMT', 'Content-Length', '0' ]); @@ -3287,9 +4275,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - '4dfad72b-a011-4b2d-8978-8175c8376556', + '87d65fc8-05fb-4307-9901-a0ef1f792a20', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -3297,11 +4285,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11894', + '11877', 'x-ms-correlation-request-id', - 'f219b3aa-9068-47e4-a0ba-339c01f40b9c', + '2cf3c026-e566-42a5-8e95-c8b8bda9ea7a', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030949Z:f219b3aa-9068-47e4-a0ba-339c01f40b9c', + 'SOUTHEASTASIA:20211210T063736Z:2cf3c026-e566-42a5-8e95-c8b8bda9ea7a', 'Date', - 'Tue, 28 Sep 2021 03:09:49 GMT' + 'Fri, 10 Dec 2021 06:37:36 GMT' ]); diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_get_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_get_test.js index 2a0d0c4a65d6..2d4bb04ade97 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_get_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_get_test.js @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '46849707-a8ee-4333-b86a-9f2f15950000', + '056f2747-a290-418e-88dc-c958d17f0a00', 'x-ms-ests-server', - '2.1.12071.17 - KRSLR1 ProdSlices', + '2.1.12261.14 - SEASLR2 ProdSlices', 'Set-Cookie', - 'fpc=ApP6-qs9mgxFnCVlcJMyHko; expires=Thu, 28-Oct-2021 02:49:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AgxTHnZQ80ZPm341EbE4_pA; expires=Sun, 09-Jan-2022 06:17:42 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrkzmc3nU0s6ziuxcpgQZcIOnr6QrOYVzfsYKG9Old4Y8PT-MASte1ML_xBzuoatSM3yzMZdTogecRx0KYbjSE8oF3eubDVSaWTgnwVsmKk9_HvOBSxCN6iheB5X35w4J9HPdIv8YeCC4IeYrdQe7Y8zsW3DWE4zGQI6_1_BdzUHAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrCl6uQ7BQnORuLdf7qvpP6u1kzb4BP-UrFK2ZGWhCayipQLUh5fo7GU6yRE6Of9sCO01W-fTz45iqRUVqutGgXfyNDunv-JMbmU0oqSAz5BsXdWlf0TjqkhGhzCNl6IE3ST3Q7MIdoHKEGhpx6EZ7tmZXvj4WBP06zDJiJ8OnUOggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:33 GMT', + 'Fri, 10 Dec 2021 06:17:42 GMT', 'Content-Length', '980' ]); @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'ba098c41-5e24-43b7-aaf4-4a4629f01100', + 'e64ab049-807d-4477-81d6-ab385db50a00', 'x-ms-ests-server', - '2.1.12071.16 - KRSLR2 ProdSlices', + '2.1.12261.14 - SEASLR1 ProdSlices', 'Set-Cookie', - 'fpc=AjyFg87GoY9Nq8mtw589JJ0; expires=Thu, 28-Oct-2021 02:49:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AldqMJ3dwSBEgAcsTc43rL8; expires=Sun, 09-Jan-2022 06:17:42 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrrRv2boOfOGVyuWSQYqUYal-8SZZbdTh8cCKqXW_MwEkvqsmGU4nRZ5tH0gkAISj7hYgm0S10iPz35Fl2KtJFRxIkPa0U5iFnK0kf4XoowGXg0xPDmeU01QvFOFABj1uSh_5N9DdLLEkqIW4UAhznRc7303eO4aS25ijW9dFiscMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrSfjoWes1E9g5I4d4nWwjqDUZl3o-h2xV8eawQVtUFogmvSmiVgNLfT4pSnCCGZ8ALmvLkudA_j6xH0-jfGUmAf6hRXODODNdw3ao1dlVmFIOZUoShS1Ly2COIo5Tjfh4lGd-mJSsjWzRNBf_m_yVHkqGB-lrbYvApjpiYNPc6SEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:33 GMT', + 'Fri, 10 Dec 2021 06:17:42 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=20227b87-d6cd-4173-a0d2-490602eae8e9&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=74cdcda5-4721-47a5-b19a-0bea4ec94aff&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,21 +93,21 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '791d4b96-cf7d-4212-8f5b-a0858d9f1200', + '056f2747-a290-418e-88dc-c958d97f0a00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - SEASLR2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=As2fhR0oeKhNpykdaasGiHwWPr5BAQAAAL155NgOAAAA; expires=Thu, 28-Oct-2021 02:49:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Agw0jDqiLrtDlWBhK5AZZHYWPr5BAQAAAAboRNkOAAAA; expires=Sun, 09-Jan-2022 06:17: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', - 'Tue, 28 Sep 2021 02:49:33 GMT', + 'Fri, 10 Dec 2021 06:17:43 GMT', 'Content-Length', - '1351' + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -129,9 +129,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - 'fb9210fd-4e92-4ad2-93ed-fc7698550f8c', + 'a9b2b96f-bf5e-4671-ae3b-673fb401a368', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -139,11 +139,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11991', + '11959', 'x-ms-correlation-request-id', - '2bb41c11-4286-426b-be2f-6680421cc216', + 'f13b7553-a865-4b5d-bcb1-a9d425e522e2', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024934Z:2bb41c11-4286-426b-be2f-6680421cc216', + 'SOUTHEASTASIA:20211210T061744Z:f13b7553-a865-4b5d-bcb1-a9d425e522e2', 'Date', - 'Tue, 28 Sep 2021 02:49:34 GMT' + 'Fri, 10 Dec 2021 06:17:43 GMT' ]); diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_listbyresourcegroup_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_listbyresourcegroup_test.js index 696c17e2ff2e..9437ca811df1 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_listbyresourcegroup_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_listbyresourcegroup_test.js @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'f9222132-b683-47ff-a49e-b4f286a81100', + '056f2747-a290-418e-88dc-c958f37f0a00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR2 ProdSlices', + '2.1.12261.14 - SEASLR2 ProdSlices', 'Set-Cookie', - 'fpc=AjpOovHmyt9NgFXYxehPjcI; expires=Thu, 28-Oct-2021 02:49:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AlQt9FqctHJHl_oEaHexlc0; expires=Sun, 09-Jan-2022 06:17:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr1ReOZjgf0q7vWR65GdP0hx9R6ZTUMlRbgy8PIgUZ2f3H3pymKGyQs84Bx9NZC_ux8YV2KqKSAyHOl_JtO9P_8mD45KdioFcGecyNA_g7WdTPMWekBqQ3z0PuzTYw2xxtPslJjMSAMvhj8E0v-55Vyjz7I0ckuI4_gdWx3aJaFcogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVq0hVfke-twU-tcW3hAFbHGs4B436hXKe_dGRfv0AYnqScxEXJLANxRPledmpb2zzmGOBkfrzBYGivBPVXqpxZ2G9VAt8vJbNXIR8_vABPkjQTTTj3_G6r2Jm7TcMioI_u5KAZaki4bA6cUZAlQwrAeZ5w59mkUwgoBZSqDNoGIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:35 GMT', + 'Fri, 10 Dec 2021 06:17:45 GMT', 'Content-Length', '980' ]); @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '791d4b96-cf7d-4212-8f5b-a0859a9f1200', + 'e407fa4b-b48e-461f-b002-2daff7c80b00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=AgidRWo3judFvOJGWP_u1rY; expires=Thu, 28-Oct-2021 02:49:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=ArTBlyCR8XtPjVeWR_gULMU; expires=Sun, 09-Jan-2022 06:17:46 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgsbrWq0yjPnKGLDvojNCDQrbGUm_6Re7ij9BZuhBNpF1Jww6DCSnLdq6PEuzMuicqIgp2SBiaFKadtMN_E2YSbFZzoWvL-sEw1G-S3mqj6GiqSQqRy5lqahsnZjxrO-9Pf4uEPuB4MvnDCXbC80U2xTUH6UhBAy0vG8xfY66Q0QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6Hlt5PDEJZUpi0B7WBd7PF8LdVvmkvhTVohRldioc0_9RiLBTcCaq5DJMlhDMC-YTe5Ijz7ShuaLxs2JCdse4MQBd3c7J_9iRLsySaXDdBd1_HKZacAXJOq2MP-WeaJZsfU3fmRqym2SrsspERYY1e1mJY95LrDeFjm5tFDkQN0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:35 GMT', + 'Fri, 10 Dec 2021 06:17:46 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=e291fb01-250b-417f-a497-b50a58eca3cc&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=99b2bee5-30c1-4a58-bf59-98df1caae906&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,21 +93,21 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'f9d979f1-57a4-42d5-bd48-4deb6e8a0000', + '8072c932-7798-47de-b5c9-9457c22b0b00', 'x-ms-ests-server', - '2.1.12071.17 - KRSLR1 ProdSlices', + '2.1.12261.14 - SEASLR2 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=Aoea2JppXmBJtkV-1Ue8p5IWPr5BAQAAAL955NgOAAAA; expires=Thu, 28-Oct-2021 02:49:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=AsUQWghbkmBPi7ZV9eTO45YWPr5BAQAAAAroRNkOAAAA; expires=Sun, 09-Jan-2022 06:17: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', - 'Tue, 28 Sep 2021 02:49:35 GMT', + 'Fri, 10 Dec 2021 06:17:46 GMT', 'Content-Length', - '1351' + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -129,9 +129,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - '01984311-1590-4991-861e-15f7b14d17ed', + '5e2dca7a-840e-4f22-afe4-7c49c4c7bb23', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -139,11 +139,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11989', + '11957', 'x-ms-correlation-request-id', - '6f139cf6-018e-41c9-99b8-c1d0c710f8c5', + 'ce3b20a7-7a65-4eda-a3c3-a7aa3500cc61', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024936Z:6f139cf6-018e-41c9-99b8-c1d0c710f8c5', + 'SOUTHEASTASIA:20211210T061747Z:ce3b20a7-7a65-4eda-a3c3-a7aa3500cc61', 'Date', - 'Tue, 28 Sep 2021 02:49:36 GMT' + 'Fri, 10 Dec 2021 06:17:46 GMT' ]); diff --git a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_update_test.js b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_update_test.js index fb8659fcbd03..25a2ecb92184 100644 --- a/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_update_test.js +++ b/sdk/redis/arm-rediscache/recordings/node/redis_test/recording_redis_update_test.js @@ -1,6 +1,6 @@ let nock = require('nock'); -module.exports.hash = "0cc7ad135f8e0c1b076126ea485bd3ea"; +module.exports.hash = "591ba36f130e275b18c853cff71daa89"; module.exports.testInfo = {"uniqueName":{},"newDate":{}} @@ -23,19 +23,19 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '46849707-a8ee-4333-b86a-9f2f32950000', + 'e407fa4b-b48e-461f-b002-2daf01c90b00', 'x-ms-ests-server', - '2.1.12071.17 - KRSLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'Set-Cookie', - 'fpc=AhgoP7GVDa5LgKfIpM23JGM; expires=Thu, 28-Oct-2021 02:49:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=Ah9VojNl_mdPgaOn7qdBhT4; expires=Sun, 09-Jan-2022 06:17:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrKZttJrwUBHh5v-u08E7mCXSbtaw7mD6mdw5wc2HTurCqkps8X9crdkK8q7ah4VEW3kOee8fGrlDC_-NLuCyk6PyDm3BlIVU8QdNatWZxp_BS6usicSuYK0vlp9GwRY12dQT0ge_nyRbtTlrRs_624DRzG0zystFPlOMd7ou2_RsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNO1j8eFAjyfTDO15FekdJGbfR6h0dQf6kEAx7-X1WwWQgRoy_w0R9g1WKQc35A_owSKAdDodx45ljT7Qi_MSFDHnsRXw-kjSM1X_cW2IFTqAcix9d4Jot0u0vXea_M1-egfptjc2hjMPu5gkHQGHr2NgrtsJf12dsctMq2HcbWQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:36 GMT', + 'Fri, 10 Dec 2021 06:17:46 GMT', 'Content-Length', '980' ]); @@ -58,25 +58,25 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - 'd8394544-8497-4b9f-986e-ff4941a41100', + 'e64ab049-807d-4477-81d6-ab388bb50a00', 'x-ms-ests-server', - '2.1.12071.16 - KRSLR2 ProdSlices', + '2.1.12261.14 - SEASLR1 ProdSlices', 'Set-Cookie', - 'fpc=Ajb8tTPgyBNDtMSzI-YzjnU; expires=Thu, 28-Oct-2021 02:49:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=As7OrrX2GR9AmTiSlVmDxbE; expires=Sun, 09-Jan-2022 06:17:47 GMT; path=/; secure; HttpOnly; SameSite=None', 'Set-Cookie', - 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrlKTxxUb6RQUJaH3gQ2sgCEjVxELufur47acYWEtfqxwPbABsbzyjK0NwHjrfzlWcRn-xD3CtwzusERGQTJyf69Ji0ozAF_TUgfqbtrSumqX2mRUUAfb0JJmIHwiDXU9pCXqFfTbFA_FODSFZNdCEluI4Q7jFYmD941CZUL-8bOUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrF2SLBTlj7O9cDKg3BpcQT9Hnp_OXJbBJkEru5LaHbGWLm3vBXo2_PDu4w1t3hcF-tbdZ3sh6jf0uDZFwKNjAUA6sbFX0o9fVyoMcFCoEtoiA2hl8YbsdIddirXNgNtrW_IEC8C_1DM8axDO8jcsCc36Ptf-2ICaUyj6FT0aLiZIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; 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, 28 Sep 2021 02:49:36 GMT', + 'Fri, 10 Dec 2021 06:17:47 GMT', 'Content-Length', '1753' ]); nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) - .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.1&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=25f926d8-ff70-4af5-8043-dfbd8f28aa83&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('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&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=3274ce62-d2a5-4143-a3b8-313bd79e711f&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":"access_token"}, [ 'Cache-Control', 'no-store, no-cache', @@ -93,21 +93,21 @@ nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) 'P3P', 'CP="DSP CUR OTPi IND OTRi ONL FIN"', 'x-ms-request-id', - '9e574ff0-b0e5-4838-a6c0-a7cb386c1100', + 'e407fa4b-b48e-461f-b002-2daf03c90b00', 'x-ms-ests-server', - '2.1.12071.16 - SEASLR1 ProdSlices', + '2.1.12261.14 - KRSLR1 ProdSlices', 'x-ms-clitelem', '1,0,0,,', 'Set-Cookie', - 'fpc=At0Bvvse7kpFuCNG-1Uos9oWPr5BAQAAAMB55NgOAAAA; expires=Thu, 28-Oct-2021 02:49:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'fpc=As2Cq_D92KBIi4XOROjnFRUWPr5BAQAAAAroRNkOAAAA; expires=Sun, 09-Jan-2022 06:17: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', - 'Tue, 28 Sep 2021 02:49:36 GMT', + 'Fri, 10 Dec 2021 06:17:47 GMT', 'Content-Length', - '1351' + '1374' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -129,9 +129,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - '7749b169-e8cb-474c-964b-61f1003e0b35', + '266496ae-a378-4ebb-ab1f-f5ecb688a819', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -139,13 +139,13 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11988', + '11956', 'x-ms-correlation-request-id', - 'fb18f47a-b847-40ce-b5cc-3922e80a2225', + '02901870-fe18-40c1-b905-0345c20eb7b1', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T024937Z:fb18f47a-b847-40ce-b5cc-3922e80a2225', + 'SOUTHEASTASIA:20211210T061748Z:02901870-fe18-40c1-b905-0345c20eb7b1', 'Date', - 'Tue, 28 Sep 2021 02:49:36 GMT' + 'Fri, 10 Dec 2021 06:17:47 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -167,9 +167,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - '5756828d-785d-498a-b545-0fe294de6697', + '96c4d062-400c-4246-b9c2-077d1d15dad2', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -179,11 +179,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'x-ms-ratelimit-remaining-subscription-reads', '11999', 'x-ms-correlation-request-id', - '92abfbef-6537-46ba-a0b1-887889f9ef88', + 'd5ce5f3d-45a8-4223-8baf-a28567d24272', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T025438Z:92abfbef-6537-46ba-a0b1-887889f9ef88', + 'SOUTHEASTASIA:20211210T062249Z:d5ce5f3d-45a8-4223-8baf-a28567d24272', 'Date', - 'Tue, 28 Sep 2021 02:54:38 GMT' + 'Fri, 10 Dec 2021 06:22:48 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -205,9 +205,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - 'afb7f21f-f01d-4a91-8141-4d659d2df406', + 'e52d6a6f-af16-4741-93be-783ce35a01e9', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -215,13 +215,13 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11998', + '11999', 'x-ms-correlation-request-id', - '73bcaa08-87e1-44ee-b4b6-dcb9f5aaec3d', + 'b07df4b3-56d4-44f4-81cd-2cbf4d678632', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T025940Z:73bcaa08-87e1-44ee-b4b6-dcb9f5aaec3d', + 'SOUTHEASTASIA:20211210T062750Z:b07df4b3-56d4-44f4-81cd-2cbf4d678632', 'Date', - 'Tue, 28 Sep 2021 02:59:40 GMT' + 'Fri, 10 Dec 2021 06:27:50 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -243,9 +243,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - 'a2d7cf4a-3d20-426b-894a-ed8e529afcf8', + 'd1515584-9e7f-4153-8984-915342bee654', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -253,13 +253,13 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-reads', - '11987', + '11999', 'x-ms-correlation-request-id', - 'bba977d7-b2de-4ad6-8693-fffc6490e915', + '5dd02701-aac1-4a9e-b000-f90224c3cd48', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030442Z:bba977d7-b2de-4ad6-8693-fffc6490e915', + 'SOUTHEASTASIA:20211210T063252Z:5dd02701-aac1-4a9e-b000-f90224c3cd48', 'Date', - 'Tue, 28 Sep 2021 03:04:41 GMT' + 'Fri, 10 Dec 2021 06:32:52 GMT' ]); nock('https://management.azure.com:443', {"encodedQueryParams":true}) @@ -281,9 +281,9 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Vary', 'Accept-Encoding', 'x-ms-request-id', - 'f671fd97-358f-4c5b-851f-c2d4830e67b2', + '342321a2-3235-42a8-8c2e-5bdcb6255d88', 'x-rp-server-mvid', - 'c8066022-f720-49e8-9fec-c4ac03b5b4cd', + 'fb971f96-3ecd-4b9f-a956-95033cc50857', 'Strict-Transport-Security', 'max-age=31536000; includeSubDomains', 'X-Content-Type-Options', @@ -291,11 +291,11 @@ nock('https://management.azure.com:443', {"encodedQueryParams":true}) 'Server', 'Microsoft-HTTPAPI/2.0', 'x-ms-ratelimit-remaining-subscription-writes', - '1195', + '1199', 'x-ms-correlation-request-id', - '70e434bb-02c3-4c69-9bf9-23dc6301cc3f', + '057875d7-46df-43f4-b99a-fbf8366d7c89', 'x-ms-routing-request-id', - 'JAPANEAST:20210928T030443Z:70e434bb-02c3-4c69-9bf9-23dc6301cc3f', + 'SOUTHEASTASIA:20211210T063253Z:057875d7-46df-43f4-b99a-fbf8366d7c89', 'Date', - 'Tue, 28 Sep 2021 03:04:42 GMT' + 'Fri, 10 Dec 2021 06:32:53 GMT' ]); diff --git a/sdk/redis/arm-rediscache/review/arm-rediscache.api.md b/sdk/redis/arm-rediscache/review/arm-rediscache.api.md index 3a83c2aaa851..cb4bef245f4c 100644 --- a/sdk/redis/arm-rediscache/review/arm-rediscache.api.md +++ b/sdk/redis/arm-rediscache/review/arm-rediscache.api.md @@ -687,9 +687,13 @@ export interface RedisListUpgradeNotificationsOptionalParams extends coreClient. export type RedisListUpgradeNotificationsResponse = NotificationListResponse; // @public (undocumented) -export class RedisManagementClient extends RedisManagementClientContext { +export class RedisManagementClient extends coreClient.ServiceClient { + // (undocumented) + $host: string; constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: RedisManagementClientOptionalParams); // (undocumented) + apiVersion: string; + // (undocumented) firewallRules: FirewallRules; // (undocumented) linkedServer: LinkedServer; @@ -703,15 +707,6 @@ export class RedisManagementClient extends RedisManagementClientContext { privateLinkResources: PrivateLinkResources; // (undocumented) redis: Redis; -} - -// @public (undocumented) -export class RedisManagementClientContext extends coreClient.ServiceClient { - // (undocumented) - $host: string; - constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: RedisManagementClientOptionalParams); - // (undocumented) - apiVersion: string; // (undocumented) subscriptionId: string; } @@ -873,7 +868,6 @@ export interface UpgradeNotification { }; } - // (No @packageDocumentation comment for this package) ``` diff --git a/sdk/redis/arm-rediscache/src/index.ts b/sdk/redis/arm-rediscache/src/index.ts index b0c38635fee9..22ebaea22b62 100644 --- a/sdk/redis/arm-rediscache/src/index.ts +++ b/sdk/redis/arm-rediscache/src/index.ts @@ -9,5 +9,4 @@ /// export * from "./models"; export { RedisManagementClient } from "./redisManagementClient"; -export { RedisManagementClientContext } from "./redisManagementClientContext"; export * from "./operationsInterfaces"; diff --git a/sdk/redis/arm-rediscache/src/models/index.ts b/sdk/redis/arm-rediscache/src/models/index.ts index 56fa5a95b23f..0b4a94fddacf 100644 --- a/sdk/redis/arm-rediscache/src/models/index.ts +++ b/sdk/redis/arm-rediscache/src/models/index.ts @@ -156,10 +156,20 @@ export interface RedisCreateParameters { sku: Sku; /** The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 */ subnetId?: string; - /** Static IP address. Required when deploying a Redis cache inside an existing Azure Virtual Network. */ + /** Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default. */ staticIP?: string; } +/** SKU parameters supplied to the create Redis operation. */ +export interface Sku { + /** The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium) */ + name: SkuName; + /** The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium). */ + family: SkuFamily; + /** The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4). */ + capacity: number; +} + /** Create/Update/Get common properties of the redis cache. */ export interface RedisCommonProperties { /** All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc. */ @@ -213,35 +223,6 @@ export interface RedisCommonPropertiesRedisConfiguration { readonly maxclients?: string; } -/** SKU parameters supplied to the create Redis operation. */ -export interface Sku { - /** The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium) */ - name: SkuName; - /** The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium). */ - family: SkuFamily; - /** The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4). */ - capacity: number; -} - -/** Common fields that are returned in the response for all Azure Resource Manager resources */ -export interface Resource { - /** - * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} - * NOTE: This property will not be serialized. It can only be populated by the server. - */ - readonly id?: string; - /** - * The name of the resource - * NOTE: This property will not be serialized. It can only be populated by the server. - */ - readonly name?: string; - /** - * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" - * NOTE: This property will not be serialized. It can only be populated by the server. - */ - readonly type?: string; -} - /** Redis cache access keys. */ export interface RedisAccessKeys { /** @@ -318,6 +299,25 @@ export interface PrivateLinkServiceConnectionState { actionsRequired?: string; } +/** Common fields that are returned in the response for all Azure Resource Manager resources */ +export interface Resource { + /** + * Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly id?: string; + /** + * The name of the resource + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly name?: string; + /** + * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly type?: string; +} + /** Parameters supplied to the Update Redis operation. */ export interface RedisUpdateParameters { /** Resource tags. */ @@ -479,7 +479,7 @@ export type RedisCreateProperties = RedisCommonProperties & { sku: Sku; /** The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 */ subnetId?: string; - /** Static IP address. Required when deploying a Redis cache inside an existing Azure Virtual Network. */ + /** Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default. */ staticIP?: string; }; @@ -489,14 +489,6 @@ export type RedisUpdateProperties = RedisCommonProperties & { sku?: Sku; }; -/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */ -export type TrackedResource = Resource & { - /** Resource tags. */ - tags?: { [propertyName: string]: string }; - /** The geo-location where the resource lives */ - location: string; -}; - /** The Private Endpoint Connection resource. */ export type PrivateEndpointConnection = Resource & { /** The resource of private end point. */ @@ -510,6 +502,14 @@ export type PrivateEndpointConnection = Resource & { readonly provisioningState?: PrivateEndpointConnectionProvisioningState; }; +/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */ +export type TrackedResource = Resource & { + /** Resource tags. */ + tags?: { [propertyName: string]: string }; + /** The geo-location where the resource lives */ + location: string; +}; + /** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */ export type ProxyResource = Resource & {}; @@ -608,7 +608,7 @@ export type RedisResource = TrackedResource & { sku: Sku; /** The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1 */ subnetId?: string; - /** Static IP address. Required when deploying a Redis cache inside an existing Azure Virtual Network. */ + /** Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default. */ staticIP?: string; /** * Redis instance provisioning status. @@ -684,40 +684,6 @@ export type RedisLinkedServerWithProperties = ProxyResource & { /** Parameters required for creating a firewall rule on redis cache. (Note, you can just use the FirewallRule type instead now.) */ export type RedisFirewallRuleCreateParameters = RedisFirewallRule & {}; -/** Known values of {@link TlsVersion} that the service accepts. */ -export enum KnownTlsVersion { - One0 = "1.0", - One1 = "1.1", - One2 = "1.2" -} - -/** - * Defines values for TlsVersion. \ - * {@link KnownTlsVersion} can be used interchangeably with TlsVersion, - * this enum contains the known values that the service supports. - * ### Known values supported by the service - * **1.0** \ - * **1.1** \ - * **1.2** - */ -export type TlsVersion = string; - -/** Known values of {@link PublicNetworkAccess} that the service accepts. */ -export enum KnownPublicNetworkAccess { - Enabled = "Enabled", - Disabled = "Disabled" -} - -/** - * Defines values for PublicNetworkAccess. \ - * {@link KnownPublicNetworkAccess} can be used interchangeably with PublicNetworkAccess, - * this enum contains the known values that the service supports. - * ### Known values supported by the service - * **Enabled** \ - * **Disabled** - */ -export type PublicNetworkAccess = string; - /** Known values of {@link SkuName} that the service accepts. */ export enum KnownSkuName { Basic = "Basic", @@ -752,6 +718,40 @@ export enum KnownSkuFamily { */ export type SkuFamily = string; +/** Known values of {@link TlsVersion} that the service accepts. */ +export enum KnownTlsVersion { + One0 = "1.0", + One1 = "1.1", + One2 = "1.2" +} + +/** + * Defines values for TlsVersion. \ + * {@link KnownTlsVersion} can be used interchangeably with TlsVersion, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **1.0** \ + * **1.1** \ + * **1.2** + */ +export type TlsVersion = string; + +/** Known values of {@link PublicNetworkAccess} that the service accepts. */ +export enum KnownPublicNetworkAccess { + Enabled = "Enabled", + Disabled = "Disabled" +} + +/** + * Defines values for PublicNetworkAccess. \ + * {@link KnownPublicNetworkAccess} can be used interchangeably with PublicNetworkAccess, + * this enum contains the known values that the service supports. + * ### Known values supported by the service + * **Enabled** \ + * **Disabled** + */ +export type PublicNetworkAccess = string; + /** Known values of {@link ProvisioningState} that the service accepts. */ export enum KnownProvisioningState { Creating = "Creating", diff --git a/sdk/redis/arm-rediscache/src/models/mappers.ts b/sdk/redis/arm-rediscache/src/models/mappers.ts index a81499d9d6b2..7353731df194 100644 --- a/sdk/redis/arm-rediscache/src/models/mappers.ts +++ b/sdk/redis/arm-rediscache/src/models/mappers.ts @@ -313,6 +313,7 @@ export const RedisCreateParameters: coreClient.CompositeMapper = { } }, enableNonSslPort: { + defaultValue: false, serializedName: "properties.enableNonSslPort", type: { name: "Boolean" @@ -350,6 +351,7 @@ export const RedisCreateParameters: coreClient.CompositeMapper = { } }, publicNetworkAccess: { + defaultValue: "Enabled", serializedName: "properties.publicNetworkAccess", type: { name: "String" @@ -386,6 +388,36 @@ export const RedisCreateParameters: coreClient.CompositeMapper = { } }; +export const Sku: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "Sku", + modelProperties: { + name: { + serializedName: "name", + required: true, + type: { + name: "String" + } + }, + family: { + serializedName: "family", + required: true, + type: { + name: "String" + } + }, + capacity: { + serializedName: "capacity", + required: true, + type: { + name: "Number" + } + } + } + } +}; + export const RedisCommonProperties: coreClient.CompositeMapper = { type: { name: "Composite", @@ -405,6 +437,7 @@ export const RedisCommonProperties: coreClient.CompositeMapper = { } }, enableNonSslPort: { + defaultValue: false, serializedName: "enableNonSslPort", type: { name: "Boolean" @@ -442,6 +475,7 @@ export const RedisCommonProperties: coreClient.CompositeMapper = { } }, publicNetworkAccess: { + defaultValue: "Enabled", serializedName: "publicNetworkAccess", type: { name: "String" @@ -528,66 +562,6 @@ export const RedisCommonPropertiesRedisConfiguration: coreClient.CompositeMapper } }; -export const Sku: coreClient.CompositeMapper = { - type: { - name: "Composite", - className: "Sku", - modelProperties: { - name: { - serializedName: "name", - required: true, - type: { - name: "String" - } - }, - family: { - serializedName: "family", - required: true, - type: { - name: "String" - } - }, - capacity: { - serializedName: "capacity", - required: true, - type: { - name: "Number" - } - } - } - } -}; - -export const Resource: coreClient.CompositeMapper = { - type: { - name: "Composite", - className: "Resource", - modelProperties: { - id: { - serializedName: "id", - readOnly: true, - type: { - name: "String" - } - }, - name: { - serializedName: "name", - readOnly: true, - type: { - name: "String" - } - }, - type: { - serializedName: "type", - readOnly: true, - type: { - name: "String" - } - } - } - } -}; - export const RedisAccessKeys: coreClient.CompositeMapper = { type: { name: "Composite", @@ -721,6 +695,36 @@ export const PrivateLinkServiceConnectionState: coreClient.CompositeMapper = { } }; +export const Resource: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "Resource", + modelProperties: { + id: { + serializedName: "id", + readOnly: true, + type: { + name: "String" + } + }, + name: { + serializedName: "name", + readOnly: true, + type: { + name: "String" + } + }, + type: { + serializedName: "type", + readOnly: true, + type: { + name: "String" + } + } + } + } +}; + export const RedisUpdateParameters: coreClient.CompositeMapper = { type: { name: "Composite", @@ -747,6 +751,7 @@ export const RedisUpdateParameters: coreClient.CompositeMapper = { } }, enableNonSslPort: { + defaultValue: false, serializedName: "properties.enableNonSslPort", type: { name: "Boolean" @@ -784,6 +789,7 @@ export const RedisUpdateParameters: coreClient.CompositeMapper = { } }, publicNetworkAccess: { + defaultValue: "Enabled", serializedName: "properties.publicNetworkAccess", type: { name: "String" @@ -1231,30 +1237,6 @@ export const RedisUpdateProperties: coreClient.CompositeMapper = { } }; -export const TrackedResource: coreClient.CompositeMapper = { - type: { - name: "Composite", - className: "TrackedResource", - modelProperties: { - ...Resource.type.modelProperties, - tags: { - serializedName: "tags", - type: { - name: "Dictionary", - value: { type: { name: "String" } } - } - }, - location: { - serializedName: "location", - required: true, - type: { - name: "String" - } - } - } - } -}; - export const PrivateEndpointConnection: coreClient.CompositeMapper = { type: { name: "Composite", @@ -1286,6 +1268,30 @@ export const PrivateEndpointConnection: coreClient.CompositeMapper = { } }; +export const TrackedResource: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "TrackedResource", + modelProperties: { + ...Resource.type.modelProperties, + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { type: { name: "String" } } + } + }, + location: { + serializedName: "location", + required: true, + type: { + name: "String" + } + } + } + } +}; + export const ProxyResource: coreClient.CompositeMapper = { type: { name: "Composite", @@ -1468,6 +1474,7 @@ export const RedisResource: coreClient.CompositeMapper = { } }, enableNonSslPort: { + defaultValue: false, serializedName: "properties.enableNonSslPort", type: { name: "Boolean" @@ -1505,6 +1512,7 @@ export const RedisResource: coreClient.CompositeMapper = { } }, publicNetworkAccess: { + defaultValue: "Enabled", serializedName: "properties.publicNetworkAccess", type: { name: "String" diff --git a/sdk/redis/arm-rediscache/src/operations/firewallRules.ts b/sdk/redis/arm-rediscache/src/operations/firewallRules.ts index a0147f9aaf0c..ed68e5e236d6 100644 --- a/sdk/redis/arm-rediscache/src/operations/firewallRules.ts +++ b/sdk/redis/arm-rediscache/src/operations/firewallRules.ts @@ -11,7 +11,7 @@ import { FirewallRules } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { RedisManagementClientContext } from "../redisManagementClientContext"; +import { RedisManagementClient } from "../redisManagementClient"; import { RedisFirewallRule, FirewallRulesListNextOptionalParams, @@ -28,13 +28,13 @@ import { /// /** Class containing FirewallRules operations. */ export class FirewallRulesImpl implements FirewallRules { - private readonly client: RedisManagementClientContext; + private readonly client: RedisManagementClient; /** * Initialize a new instance of the class FirewallRules class. * @param client Reference to the service client */ - constructor(client: RedisManagementClientContext) { + constructor(client: RedisManagementClient) { this.client = client; } diff --git a/sdk/redis/arm-rediscache/src/operations/linkedServer.ts b/sdk/redis/arm-rediscache/src/operations/linkedServer.ts index c10e3298c8db..6f4065ebe5e1 100644 --- a/sdk/redis/arm-rediscache/src/operations/linkedServer.ts +++ b/sdk/redis/arm-rediscache/src/operations/linkedServer.ts @@ -11,7 +11,7 @@ import { LinkedServer } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { RedisManagementClientContext } from "../redisManagementClientContext"; +import { RedisManagementClient } from "../redisManagementClient"; import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; import { LroImpl } from "../lroImpl"; import { @@ -31,13 +31,13 @@ import { /// /** Class containing LinkedServer operations. */ export class LinkedServerImpl implements LinkedServer { - private readonly client: RedisManagementClientContext; + private readonly client: RedisManagementClient; /** * Initialize a new instance of the class LinkedServer class. * @param client Reference to the service client */ - constructor(client: RedisManagementClientContext) { + constructor(client: RedisManagementClient) { this.client = client; } diff --git a/sdk/redis/arm-rediscache/src/operations/operations.ts b/sdk/redis/arm-rediscache/src/operations/operations.ts index b77e79002d66..11b0d13ae365 100644 --- a/sdk/redis/arm-rediscache/src/operations/operations.ts +++ b/sdk/redis/arm-rediscache/src/operations/operations.ts @@ -11,7 +11,7 @@ import { Operations } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { RedisManagementClientContext } from "../redisManagementClientContext"; +import { RedisManagementClient } from "../redisManagementClient"; import { Operation, OperationsListNextOptionalParams, @@ -23,13 +23,13 @@ import { /// /** Class containing Operations operations. */ export class OperationsImpl implements Operations { - private readonly client: RedisManagementClientContext; + private readonly client: RedisManagementClient; /** * Initialize a new instance of the class Operations class. * @param client Reference to the service client */ - constructor(client: RedisManagementClientContext) { + constructor(client: RedisManagementClient) { this.client = client; } diff --git a/sdk/redis/arm-rediscache/src/operations/patchSchedules.ts b/sdk/redis/arm-rediscache/src/operations/patchSchedules.ts index 4dc966177f90..06b495431399 100644 --- a/sdk/redis/arm-rediscache/src/operations/patchSchedules.ts +++ b/sdk/redis/arm-rediscache/src/operations/patchSchedules.ts @@ -11,7 +11,7 @@ import { PatchSchedules } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { RedisManagementClientContext } from "../redisManagementClientContext"; +import { RedisManagementClient } from "../redisManagementClient"; import { RedisPatchSchedule, PatchSchedulesListByRedisResourceNextOptionalParams, @@ -29,13 +29,13 @@ import { /// /** Class containing PatchSchedules operations. */ export class PatchSchedulesImpl implements PatchSchedules { - private readonly client: RedisManagementClientContext; + private readonly client: RedisManagementClient; /** * Initialize a new instance of the class PatchSchedules class. * @param client Reference to the service client */ - constructor(client: RedisManagementClientContext) { + constructor(client: RedisManagementClient) { this.client = client; } diff --git a/sdk/redis/arm-rediscache/src/operations/privateEndpointConnections.ts b/sdk/redis/arm-rediscache/src/operations/privateEndpointConnections.ts index 2ca5e630a91e..bf7e9b560b4a 100644 --- a/sdk/redis/arm-rediscache/src/operations/privateEndpointConnections.ts +++ b/sdk/redis/arm-rediscache/src/operations/privateEndpointConnections.ts @@ -11,7 +11,7 @@ import { PrivateEndpointConnections } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { RedisManagementClientContext } from "../redisManagementClientContext"; +import { RedisManagementClient } from "../redisManagementClient"; import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; import { LroImpl } from "../lroImpl"; import { @@ -29,13 +29,13 @@ import { /** Class containing PrivateEndpointConnections operations. */ export class PrivateEndpointConnectionsImpl implements PrivateEndpointConnections { - private readonly client: RedisManagementClientContext; + private readonly client: RedisManagementClient; /** * Initialize a new instance of the class PrivateEndpointConnections class. * @param client Reference to the service client */ - constructor(client: RedisManagementClientContext) { + constructor(client: RedisManagementClient) { this.client = client; } diff --git a/sdk/redis/arm-rediscache/src/operations/privateLinkResources.ts b/sdk/redis/arm-rediscache/src/operations/privateLinkResources.ts index 7285d7778981..47bfac1e80e9 100644 --- a/sdk/redis/arm-rediscache/src/operations/privateLinkResources.ts +++ b/sdk/redis/arm-rediscache/src/operations/privateLinkResources.ts @@ -11,7 +11,7 @@ import { PrivateLinkResources } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { RedisManagementClientContext } from "../redisManagementClientContext"; +import { RedisManagementClient } from "../redisManagementClient"; import { PrivateLinkResource, PrivateLinkResourcesListByRedisCacheOptionalParams, @@ -21,13 +21,13 @@ import { /// /** Class containing PrivateLinkResources operations. */ export class PrivateLinkResourcesImpl implements PrivateLinkResources { - private readonly client: RedisManagementClientContext; + private readonly client: RedisManagementClient; /** * Initialize a new instance of the class PrivateLinkResources class. * @param client Reference to the service client */ - constructor(client: RedisManagementClientContext) { + constructor(client: RedisManagementClient) { this.client = client; } diff --git a/sdk/redis/arm-rediscache/src/operations/redis.ts b/sdk/redis/arm-rediscache/src/operations/redis.ts index 0c70a6037c1d..3a3814896862 100644 --- a/sdk/redis/arm-rediscache/src/operations/redis.ts +++ b/sdk/redis/arm-rediscache/src/operations/redis.ts @@ -11,7 +11,7 @@ import { Redis } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; -import { RedisManagementClientContext } from "../redisManagementClientContext"; +import { RedisManagementClient } from "../redisManagementClient"; import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; import { LroImpl } from "../lroImpl"; import { @@ -57,13 +57,13 @@ import { /// /** Class containing Redis operations. */ export class RedisImpl implements Redis { - private readonly client: RedisManagementClientContext; + private readonly client: RedisManagementClient; /** * Initialize a new instance of the class Redis class. * @param client Reference to the service client */ - constructor(client: RedisManagementClientContext) { + constructor(client: RedisManagementClient) { this.client = client; } diff --git a/sdk/redis/arm-rediscache/src/redisManagementClient.ts b/sdk/redis/arm-rediscache/src/redisManagementClient.ts index 6e0db07c1ce7..b49a9af10179 100644 --- a/sdk/redis/arm-rediscache/src/redisManagementClient.ts +++ b/sdk/redis/arm-rediscache/src/redisManagementClient.ts @@ -6,6 +6,7 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ +import * as coreClient from "@azure/core-client"; import * as coreAuth from "@azure/core-auth"; import { OperationsImpl, @@ -25,10 +26,13 @@ import { PrivateEndpointConnections, PrivateLinkResources } from "./operationsInterfaces"; -import { RedisManagementClientContext } from "./redisManagementClientContext"; import { RedisManagementClientOptionalParams } from "./models"; -export class RedisManagementClient extends RedisManagementClientContext { +export class RedisManagementClient extends coreClient.ServiceClient { + $host: string; + apiVersion: string; + subscriptionId: string; + /** * Initializes a new instance of the RedisManagementClient class. * @param credentials Subscription credentials which uniquely identify client subscription. @@ -41,7 +45,46 @@ export class RedisManagementClient extends RedisManagementClientContext { subscriptionId: string, options?: RedisManagementClientOptionalParams ) { - super(credentials, subscriptionId, options); + if (credentials === undefined) { + throw new Error("'credentials' cannot be null"); + } + if (subscriptionId === undefined) { + throw new Error("'subscriptionId' cannot be null"); + } + + // Initializing default values for options + if (!options) { + options = {}; + } + const defaults: RedisManagementClientOptionalParams = { + requestContentType: "application/json; charset=utf-8", + credential: credentials + }; + + const packageDetails = `azsdk-js-arm-rediscache/6.0.0`; + const userAgentPrefix = + options.userAgentOptions && options.userAgentOptions.userAgentPrefix + ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; + + if (!options.credentialScopes) { + options.credentialScopes = ["https://management.azure.com/.default"]; + } + const optionsWithDefaults = { + ...defaults, + ...options, + userAgentOptions: { + userAgentPrefix + }, + baseUri: options.endpoint || "https://management.azure.com" + }; + super(optionsWithDefaults); + // Parameter assignments + this.subscriptionId = subscriptionId; + + // Assigning values to Constant parameters + this.$host = options.$host || "https://management.azure.com"; + this.apiVersion = options.apiVersion || "2020-12-01"; this.operations = new OperationsImpl(this); this.redis = new RedisImpl(this); this.firewallRules = new FirewallRulesImpl(this); diff --git a/sdk/redis/arm-rediscache/src/redisManagementClientContext.ts b/sdk/redis/arm-rediscache/src/redisManagementClientContext.ts deleted file mode 100644 index 0e9db4f53c0f..000000000000 --- a/sdk/redis/arm-rediscache/src/redisManagementClientContext.ts +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. - * Licensed under the MIT License. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -import * as coreClient from "@azure/core-client"; -import * as coreAuth from "@azure/core-auth"; -import { RedisManagementClientOptionalParams } from "./models"; - -export class RedisManagementClientContext extends coreClient.ServiceClient { - $host: string; - apiVersion: string; - subscriptionId: string; - - /** - * Initializes a new instance of the RedisManagementClientContext class. - * @param credentials Subscription credentials which uniquely identify client subscription. - * @param subscriptionId Gets subscription credentials which uniquely identify the Microsoft Azure - * subscription. The subscription ID forms part of the URI for every service call. - * @param options The parameter options - */ - constructor( - credentials: coreAuth.TokenCredential, - subscriptionId: string, - options?: RedisManagementClientOptionalParams - ) { - if (credentials === undefined) { - throw new Error("'credentials' cannot be null"); - } - if (subscriptionId === undefined) { - throw new Error("'subscriptionId' cannot be null"); - } - - // Initializing default values for options - if (!options) { - options = {}; - } - const defaults: RedisManagementClientOptionalParams = { - requestContentType: "application/json; charset=utf-8", - credential: credentials - }; - - const packageDetails = `azsdk-js-arm-rediscache/6.0.0-beta.1`; - const userAgentPrefix = - options.userAgentOptions && options.userAgentOptions.userAgentPrefix - ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` - : `${packageDetails}`; - - if (!options.credentialScopes) { - options.credentialScopes = ["https://management.azure.com/.default"]; - } - const optionsWithDefaults = { - ...defaults, - ...options, - userAgentOptions: { - userAgentPrefix - }, - baseUri: options.endpoint || "https://management.azure.com" - }; - super(optionsWithDefaults); - // Parameter assignments - this.subscriptionId = subscriptionId; - - // Assigning values to Constant parameters - this.$host = options.$host || "https://management.azure.com"; - this.apiVersion = options.apiVersion || "2020-12-01"; - } -}