From becb33036ef1cd04a380ce0daad8f91dd0a05923 Mon Sep 17 00:00:00 2001 From: colawwj Date: Mon, 18 Oct 2021 15:38:39 +0800 Subject: [PATCH 1/2] compute-track2 --- common/config/rush/pnpm-lock.yaml | 10 +- sdk/compute/arm-compute/CHANGELOG.md | 75 +- sdk/compute/arm-compute/README.md | 5 +- sdk/compute/arm-compute/_meta.json | 6 +- sdk/compute/arm-compute/api-extractor.json | 2 +- sdk/compute/arm-compute/package.json | 37 +- .../recording_availabilitysets_create_test.js | 151 + .../recording_availabilitysets_delete_test.js | 179 + .../recording_availabilitysets_get_test.js | 151 + .../recording_availabilitysets_list_test.js | 151 + .../recording_availabilitysets_update_test.js | 151 + .../recording_virtualmachines_create_test.js | 7925 +++++++++++++++++ .../recording_virtualmachines_delete_test.js | 4835 ++++++++++ .../recording_virtualmachines_get_test.js | 151 + .../recording_virtualmachines_list_test.js | 151 + .../recording_virtualmachines_update_test.js | 191 + .../arm-compute/review/arm-compute.api.md | 195 +- .../src/computeManagementClient.ts | 14 + .../src/computeManagementClientContext.ts | 2 +- sdk/compute/arm-compute/src/models/index.ts | 182 +- sdk/compute/arm-compute/src/models/mappers.ts | 261 + .../arm-compute/src/models/parameters.ts | 13 +- .../src/operations/availabilitySets.ts | 1 - .../operations/capacityReservationGroups.ts | 1 - .../src/operations/capacityReservations.ts | 1 - .../cloudServiceOperatingSystems.ts | 1 - .../operations/cloudServiceRoleInstances.ts | 1 - .../src/operations/cloudServiceRoles.ts | 1 - .../src/operations/cloudServices.ts | 1 - .../operations/cloudServicesUpdateDomain.ts | 1 - .../src/operations/communityGalleries.ts | 72 + .../communityGalleryImageVersions.ts | 87 + .../src/operations/communityGalleryImages.ts | 75 + .../src/operations/dedicatedHostGroups.ts | 1 - .../src/operations/dedicatedHosts.ts | 1 - .../src/operations/diskAccesses.ts | 43 +- .../src/operations/diskEncryptionSets.ts | 21 +- .../operations/diskRestorePointOperations.ts | 100 +- .../arm-compute/src/operations/disks.ts | 23 +- .../arm-compute/src/operations/galleries.ts | 1 - .../operations/galleryApplicationVersions.ts | 1 - .../src/operations/galleryApplications.ts | 1 - .../src/operations/galleryImageVersions.ts | 1 - .../src/operations/galleryImages.ts | 1 - .../arm-compute/src/operations/images.ts | 1 - .../arm-compute/src/operations/index.ts | 3 + .../arm-compute/src/operations/operations.ts | 1 - .../operations/proximityPlacementGroups.ts | 1 - .../src/operations/resourceSkus.ts | 1 - .../src/operations/restorePointCollections.ts | 1 - .../src/operations/sharedGalleries.ts | 1 - .../operations/sharedGalleryImageVersions.ts | 1 - .../src/operations/sharedGalleryImages.ts | 1 - .../arm-compute/src/operations/snapshots.ts | 23 +- .../src/operations/sshPublicKeys.ts | 1 - .../src/operations/usageOperations.ts | 23 +- .../operations/virtualMachineRunCommands.ts | 1 - .../virtualMachineScaleSetExtensions.ts | 1 - .../virtualMachineScaleSetVMRunCommands.ts | 1 - .../operations/virtualMachineScaleSetVMs.ts | 1 - .../src/operations/virtualMachineScaleSets.ts | 1 - .../src/operations/virtualMachineSizes.ts | 1 - .../src/operations/virtualMachines.ts | 1 - .../operationsInterfaces/availabilitySets.ts | 1 - .../capacityReservationGroups.ts | 1 - .../capacityReservations.ts | 1 - .../cloudServiceOperatingSystems.ts | 1 - .../cloudServiceRoleInstances.ts | 1 - .../operationsInterfaces/cloudServiceRoles.ts | 1 - .../src/operationsInterfaces/cloudServices.ts | 1 - .../cloudServicesUpdateDomain.ts | 1 - .../communityGalleries.ts | 27 + .../communityGalleryImageVersions.ts | 33 + .../communityGalleryImages.ts | 29 + .../dedicatedHostGroups.ts | 1 - .../operationsInterfaces/dedicatedHosts.ts | 1 - .../src/operationsInterfaces/diskAccesses.ts | 39 +- .../diskEncryptionSets.ts | 17 +- .../diskRestorePointOperations.ts | 72 +- .../src/operationsInterfaces/disks.ts | 23 +- .../src/operationsInterfaces/galleries.ts | 1 - .../galleryApplicationVersions.ts | 1 - .../galleryApplications.ts | 1 - .../galleryImageVersions.ts | 1 - .../src/operationsInterfaces/galleryImages.ts | 1 - .../src/operationsInterfaces/images.ts | 1 - .../src/operationsInterfaces/index.ts | 3 + .../src/operationsInterfaces/operations.ts | 1 - .../proximityPlacementGroups.ts | 1 - .../src/operationsInterfaces/resourceSkus.ts | 1 - .../restorePointCollections.ts | 1 - .../operationsInterfaces/sharedGalleries.ts | 1 - .../sharedGalleryImageVersions.ts | 1 - .../sharedGalleryImages.ts | 1 - .../src/operationsInterfaces/snapshots.ts | 23 +- .../src/operationsInterfaces/sshPublicKeys.ts | 1 - .../operationsInterfaces/usageOperations.ts | 5 +- .../virtualMachineRunCommands.ts | 1 - .../virtualMachineScaleSetExtensions.ts | 1 - .../virtualMachineScaleSetVMRunCommands.ts | 1 - .../virtualMachineScaleSetVMs.ts | 1 - .../virtualMachineScaleSets.ts | 1 - .../virtualMachineSizes.ts | 1 - .../operationsInterfaces/virtualMachines.ts | 1 - .../arm-compute/test/compute_examples.ts | 275 + sdk/compute/arm-compute/tsconfig.json | 2 +- 106 files changed, 15519 insertions(+), 399 deletions(-) create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_create_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_delete_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_get_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_list_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_update_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_create_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_delete_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_get_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_list_test.js create mode 100644 sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_update_test.js create mode 100644 sdk/compute/arm-compute/src/operations/communityGalleries.ts create mode 100644 sdk/compute/arm-compute/src/operations/communityGalleryImageVersions.ts create mode 100644 sdk/compute/arm-compute/src/operations/communityGalleryImages.ts create mode 100644 sdk/compute/arm-compute/src/operationsInterfaces/communityGalleries.ts create mode 100644 sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImageVersions.ts create mode 100644 sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImages.ts create mode 100644 sdk/compute/arm-compute/test/compute_examples.ts diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 93c9a6884d93..b17605a5bebb 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -8611,21 +8611,27 @@ packages: dev: false file:projects/arm-compute.tgz: - resolution: {integrity: sha512-Xn4t1yWRD9vhj8MkZ02f2OIV3CaCIUFJwRTL8dTxVsafJbmeFJqs97mzIem8G2yosfRQxJx4Lxyb+Z6vmL1zBQ==, tarball: file:projects/arm-compute.tgz} + resolution: {integrity: sha512-5BqAukGEZXq9+mAIu0BcKj+eI0JE509xxS9qghbJDACkaj4ek/dijKq/rBL/RmPC1Wk+WTnBdRcYZ/DdaIZarQ==, tarball: file:projects/arm-compute.tgz} name: '@rush-temp/arm-compute' version: 0.0.0 dependencies: - '@microsoft/api-extractor': 7.18.15 + '@azure/identity': 2.0.0-beta.6 + '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1 '@rollup/plugin-json': 4.1.0_rollup@1.32.1 '@rollup/plugin-multi-entry': 3.0.1_rollup@1.32.1 '@rollup/plugin-node-resolve': 8.4.0_rollup@1.32.1 + cross-env: 7.0.3 mkdirp: 1.0.4 + mocha: 7.2.0 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.2 + transitivePeerDependencies: + - debug + - supports-color dev: false file:projects/arm-eventgrid.tgz: diff --git a/sdk/compute/arm-compute/CHANGELOG.md b/sdk/compute/arm-compute/CHANGELOG.md index a27cd4f7775f..904bf9ac3663 100644 --- a/sdk/compute/arm-compute/CHANGELOG.md +++ b/sdk/compute/arm-compute/CHANGELOG.md @@ -1,14 +1,73 @@ -# Release History - -## 17.0.0-beta.2 (Unreleased) +## 17.0.0-beta.2 (2021-10-18) + +**Features** -### Features Added + - Added operation group CommunityGalleries + - Added operation group CommunityGalleryImages + - Added operation group CommunityGalleryImageVersions + - Added Interface CommunityGalleriesGetOptionalParams + - Added Interface CommunityGalleryImagesGetOptionalParams + - Added Interface CommunityGalleryImageVersionsGetOptionalParams + - Added Interface DiskRestorePointGetOptionalParams + - Added Interface DiskRestorePointGrantAccessOptionalParams + - Added Interface DiskRestorePointListByRestorePointNextOptionalParams + - Added Interface DiskRestorePointListByRestorePointOptionalParams + - Added Interface DiskRestorePointRevokeAccessOptionalParams + - Added Interface PirCommunityGalleryResource + - Added Interface SupportedCapabilities + - Added Interface UsageListNextOptionalParams + - Added Interface UsageListOptionalParams + - Added Type Alias CommunityGalleriesGetResponse + - Added Type Alias CommunityGallery + - Added Type Alias CommunityGalleryImage + - Added Type Alias CommunityGalleryImagesGetResponse + - Added Type Alias CommunityGalleryImageVersion + - Added Type Alias CommunityGalleryImageVersionsGetResponse + - Added Type Alias DiskRestorePointGetResponse + - Added Type Alias DiskRestorePointGrantAccessResponse + - Added Type Alias DiskRestorePointListByRestorePointNextResponse + - Added Type Alias DiskRestorePointListByRestorePointResponse + - Added Type Alias Image + - Added Type Alias PublicNetworkAccess + - Added Type Alias UsageListNextResponse + - Added Type Alias UsageListResponse + - Interface DiskUpdate has a new optional parameter publicNetworkAccess + - Interface DiskUpdate has a new optional parameter supportedCapabilities + - Interface SnapshotUpdate has a new optional parameter publicNetworkAccess + - Class ComputeManagementClient has a new parameter communityGalleries + - Class ComputeManagementClient has a new parameter communityGalleryImages + - Class ComputeManagementClient has a new parameter communityGalleryImageVersions + - Type Alias Disk has a new parameter supportedCapabilities + - Type Alias Disk has a new parameter completionPercent + - Type Alias Disk has a new parameter publicNetworkAccess + - Type Alias DiskAccess has a new parameter extendedLocation + - Type Alias DiskEncryptionSet has a new parameter autoKeyRotationError + - Type Alias DiskRestorePoint has a new parameter supportedCapabilities + - Type Alias DiskRestorePoint has a new parameter networkAccessPolicy + - Type Alias DiskRestorePoint has a new parameter publicNetworkAccess + - Type Alias DiskRestorePoint has a new parameter diskAccessId + - Type Alias DiskRestorePoint has a new parameter completionPercent + - Type Alias Snapshot has a new parameter supportedCapabilities + - Type Alias Snapshot has a new parameter publicNetworkAccess + - Type Alias Snapshot has a new parameter completionPercent + - Added Enum KnownPublicNetworkAccess + - Enum KnownDiskCreateOption has a new value CopyStart + - Enum KnownDiskState has a new value ActiveSASFrozen + - Enum KnownDiskState has a new value Frozen -### Breaking Changes +**Breaking Changes** -### Bugs Fixed - -### Other Changes + - Operation DiskRestorePointOperations.beginGrantAccess has a new signature + - Operation DiskRestorePointOperations.beginGrantAccessAndWait has a new signature + - Operation DiskRestorePointOperations.beginRevokeAccess has a new signature + - Operation DiskRestorePointOperations.beginRevokeAccessAndWait has a new signature + - Operation DiskRestorePointOperations.get has a new signature + - Operation DiskRestorePointOperations.listByRestorePoint has a new signature + - Operation Images.beginCreateOrUpdate has a new signature + - Operation Images.beginCreateOrUpdateAndWait has a new signature + - Operation UsageOperations.list has a new signature + +# Release History ## 17.0.0-beta.1 (2021-10-09) diff --git a/sdk/compute/arm-compute/README.md b/sdk/compute/arm-compute/README.md index 690088fbb57c..7570497c3fc7 100644 --- a/sdk/compute/arm-compute/README.md +++ b/sdk/compute/arm-compute/README.md @@ -33,9 +33,9 @@ npm install @azure/arm-compute To create a client object to access the Azure ComputeManagement API, you will need the `endpoint` of your Azure ComputeManagement resource and a `credential`. The Azure ComputeManagement client can use Azure Active Directory credentials to authenticate. You can find the endpoint for your Azure ComputeManagement resource in the [Azure Portal][azure_portal]. -#### Using an Azure Active Directory Credential +You can authenticate with Azure Active Directory using a credential from the [@azure/identity][azure_identity] library or [an existing AAD Token](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/identity/identity/samples/AzureIdentityExamples.md#authenticating-with-a-pre-fetched-access-token). -You can authenticate with Azure Active Directory using the [Azure Identity library][azure_identity]. To use the [DefaultAzureCredential][defaultazurecredential] provider shown below, or other credential providers provided with the Azure SDK, please install the `@azure/identity` package: +To use the [DefaultAzureCredential][defaultazurecredential] provider shown below, or other credential providers provided with the Azure SDK, please install the `@azure/identity` package: ```bash npm install @azure/identity @@ -45,6 +45,7 @@ You will also need to **register a new AAD application and grant access to Azure Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`. For more information about how to create an Azure AD Application check out [this guide](https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal). + ```javascript const { ComputeManagementClient } = require("@azure/arm-compute"); const { DefaultAzureCredential } = require("@azure/identity"); diff --git a/sdk/compute/arm-compute/_meta.json b/sdk/compute/arm-compute/_meta.json index 300320683f0a..71bef2b395ef 100644 --- a/sdk/compute/arm-compute/_meta.json +++ b/sdk/compute/arm-compute/_meta.json @@ -1,7 +1,7 @@ { - "commit": "f9e4843e2ed3494e8bd66a92c3e7f65655f58f46", + "commit": "62ec79080af0d0d609650d67155ef4a93ae11482", "readme": "specification/compute/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 --typescript-sdks-folder=D:\\mydev\\azure-sdk-for-js ../azure-rest-api-specs/specification/compute/resource-manager/readme.md --use=@autorest/typescript@6.0.0-beta.12", + "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/compute/resource-manager/readme.md --use=@autorest/typescript@6.0.0-beta.13", "repository_url": "https://github.com/Azure/azure-rest-api-specs.git", - "use": "@autorest/typescript@6.0.0-beta.12" + "use": "@autorest/typescript@6.0.0-beta.13" } \ No newline at end of file diff --git a/sdk/compute/arm-compute/api-extractor.json b/sdk/compute/arm-compute/api-extractor.json index adef38c365ae..3ffca3ebbde6 100644 --- a/sdk/compute/arm-compute/api-extractor.json +++ b/sdk/compute/arm-compute/api-extractor.json @@ -1,6 +1,6 @@ { "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", - "mainEntryPointFilePath": "./dist-esm/index.d.ts", + "mainEntryPointFilePath": "./dist-esm/src/index.d.ts", "docModel": { "enabled": true }, "apiReport": { "enabled": true, "reportFolder": "./review" }, "dtsRollup": { diff --git a/sdk/compute/arm-compute/package.json b/sdk/compute/arm-compute/package.json index 6c721a3988f9..ea56922a6f36 100644 --- a/sdk/compute/arm-compute/package.json +++ b/sdk/compute/arm-compute/package.json @@ -4,9 +4,7 @@ "author": "Microsoft Corporation", "description": "A generated SDK for ComputeManagementClient.", "version": "17.0.0-beta.2", - "engines": { - "node": ">=12.0.0" - }, + "engines": { "node": ">=12.0.0" }, "dependencies": { "@azure/core-lro": "^2.2.0", "@azure/abort-controller": "^1.0.0", @@ -16,19 +14,13 @@ "@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/index.js", + "module": "./dist-esm/src/index.js", "types": "./types/arm-compute.d.ts", "devDependencies": { - "@microsoft/api-extractor": "^7.18.11", + "@microsoft/api-extractor": "7.7.11", "@rollup/plugin-commonjs": "11.0.2", "@rollup/plugin-json": "^4.0.0", "@rollup/plugin-multi-entry": "^3.0.0", @@ -37,16 +29,19 @@ "rollup": "^1.16.3", "rollup-plugin-sourcemaps": "^0.4.2", "typescript": "~4.2.0", - "uglify-js": "^3.4.9" + "uglify-js": "^3.4.9", + "@azure/identity": "2.0.0-beta.6", + "@azure-tools/test-recorder": "^1.0.0", + "mocha": "^7.1.1", + "cross-env": "^7.0.2", + "@azure/arm-network": "26.0.0-beta.1" }, "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/compute/arm-compute", "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", @@ -81,16 +76,16 @@ "check-format": "echo skipped", "execute:samples": "echo skipped", "format": "echo skipped", - "test": "echo skipped", + "test": "npm run integration-test", "prebuild": "echo skipped", "test:node": "echo skipped", "test:browser": "echo skipped", - "unit-test": "echo skipped", - "unit-test:node": "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:browser": "echo skipped", - "integration-test:node": "echo skipped", - "integration-test": "echo skipped", "docs": "echo skipped" }, "sideEffects": false, diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_create_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_create_test.js new file mode 100644 index 000000000000..d63815ac3570 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_create_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "17924bfec3c16444b943d0fe6f72e446"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '862fd48a-9fb8-43a3-8f3e-d5a04e9d1100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AlPwxGR7NFhPo0y688w0d8o; expires=Wed, 17-Nov-2021 07:34:53 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrazRp8otEJPBo4MB3SPHnx8XHMvFHjaduqQsT2DjfBJe_GTafiHsx5poFq04Es5phRia4zWJts6TUcVX-PuoNBC3yGIp1g90U4FOVuJkpM---i-df2vOUKIJ_A0PZ07xQWPAmV1cfGCgBo7q7e5HsqHxYl42GsImtABNwMFdgO9ggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:34:53 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '95bf35d7-2ecf-47ae-a44e-827487d51000', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Au6JOl4uvMVNrZnV7miP9BI; expires=Wed, 17-Nov-2021 07:34:54 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-NcDRTP1JE7TUeobwBXdT8uoPrIbrL19qlCKj4CjD99sG0huWJQEyX8ExPmFeWt_gGfkwyHvHNWX1Sl3KrYLNjuwNDMDMKtw70L01thVBkr_qWhznMZLo4OmlqvNrBS6yCGRaS4LxIaFCDh23w_7VZ6zo-YTBXGFixG52Bx3e4QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:34: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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=13860ffb-2717-4f18-b6b4-5a4c4257f30c&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dc166749-de8d-4169-86e2-e69ffa8f1100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=ArdGmLVbuC9IvQCoJqMehOAWPr5BAQAAAJ0a_9gOAAAA; expires=Wed, 17-Nov-2021 07:34: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', + 'Mon, 18 Oct 2021 07:34:53 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/availabilitySets/availabilitySets123', {"location":"eastus","properties":{"platformUpdateDomainCount":20,"platformFaultDomainCount":2}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e947cb6c917ff428fd28bbcc8a329b1465d15ebfcedb6677efde47236e51ccf0fddd663d69a675b16a8b6ad9dc7db877fef0feece07cfbdef4d307dbfbbb7bfbdb0f77a70fb60fa6e73b0fa6b3c9f9defeeedd3a6faa753dcd3fafabf5aab9bbb8fee9a6cd9bf6eeaaae2e8b595e3777bf28a675d554e7edf8a45aacd66d7eb78b47ef0387587bbd62d46f06a22f94d53403fa7829cf9a766dbe20845679dd1679435f315df06199b5e755bdf86a35cbdafc69b5c88ae549b55eb6d4666f875ff45a3dcbd665db698426bf841b7ed4bc5dd32706b421fa4999354d31fd081fff92df38f9","25ff0f65f7d92493010000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '83c63401-acd4-4bb1-a551-2d7c95acd9e9', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1199', + 'x-ms-correlation-request-id', + 'a9538b15-28db-4158-a232-32f0d2e1010a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073503Z:a9538b15-28db-4158-a232-32f0d2e1010a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:03 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_delete_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_delete_test.js new file mode 100644 index 000000000000..8cd64b8487c6 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_delete_test.js @@ -0,0 +1,179 @@ +let nock = require('nock'); + +module.exports.hash = "c43ff7cc09a5893175ec40775511fcdc"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b31ff0700', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AuASQ1oqq4VEowAYo_TIXjc; expires=Wed, 17-Nov-2021 07:35:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrm6aeKqB6kpfvA-h9TslWoY2eXQdJzzzzs1zfDeUGwK3TBbi4yCmwWp_9aQsoCg1om7aOfqWh1acAWlEk8mlU_lvUkgp3dyfUE7Zy9lFraJ2myIh2gLHA2geBiVsuqVfve-dYU5A_4G_-jeR3VKtoCCKf8xxMMrDkpBwPkviDMv0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:05 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '90bf9598-47f6-443d-a82e-58f697bd1100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AqlfEzDx6ZtEkIo4gDcj1U8; expires=Wed, 17-Nov-2021 07:35:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfXZ_RxQ3sJST8U0gfspuheJUxUlAoRBUTMTeHHN0o6vaxT8I4bFcqYzVMi26r6FXLTLRDwo91hyIyJmu30qGZlmXeCWGUPy4iWKVITUVH0pGft7OZkgqd-X3yYPW5sgUQke79hs3JluCDX4MoYOYdD24HrXz5dp44MqfntyO09IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:05 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=fd9b1f85-9701-4fd7-a29f-a8c487f7fcf0&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dc166749-de8d-4169-86e2-e69f81901100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Au-cik-QGuVDuBInKAVnK0EWPr5BAQAAAKoa_9gOAAAA; expires=Wed, 17-Nov-2021 07:35:06 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:05 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/availabilitySets/availabilitySets123') + .query(true) + .reply(200, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1199', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '3df66a89-4acf-4ac5-af09-9dd7058e0481', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-deletes', + '14999', + 'x-ms-correlation-request-id', + 'a1fcde05-6a4b-4029-afbb-420a60e25e15', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073511Z:a1fcde05-6a4b-4029-afbb-420a60e25e15', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/availabilitySets') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bdefff92ff0742ea40440c000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11997', + 'x-ms-request-id', + 'd9f31406-bbff-48fd-a421-4488f13b31aa', + 'x-ms-correlation-request-id', + 'd9f31406-bbff-48fd-a421-4488f13b31aa', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073512Z:d9f31406-bbff-48fd-a421-4488f13b31aa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:11 GMT', + 'Content-Length', + '133' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_get_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_get_test.js new file mode 100644 index 000000000000..b2c2d7618703 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_get_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "9d8a8488194d951eeefa1b7e725ce7d4"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'ea3e9b90-f5ac-4be3-85d3-ff027a0b1200', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=An9eu0gtuG9DhoKZZ_FKJGo; expires=Wed, 17-Nov-2021 07:35:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAJ81pa-s5jwT7BTGnNPg9Ul1KOfTjIecZQn1-r2PEYcCNANNJeRrzPrR3rsX4VaZrHDLDYGSt6Qwpa4Gx-djV5PoHXJsZGoCaZ1M19L68Yn16voTPp3-rCGjieOMD8wCSB-1ZmN9L6yN4ACh_LlBQDafKaKWfPMuhv21D8MpMA8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:03 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'cdee7f40-c5db-41db-bba8-8a28556d1100', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AgAfezwHY19OrAf8siyp1PA; expires=Wed, 17-Nov-2021 07:35:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7GYGyW2EfQN9eNni3y4V9jQRTUXNCdIRLNgD-jtqblx-LI2jE1IMtQrVpCZcLNMd-YEkf45Cazb0HrE8rvYrPt46mOjxqEkP1SFdri4mun53qM59KrMwZkCbjcnTR9eyc9WmeBRkCb_eNfnUQ_X1_2VyUYiilhYFPmbRSJKPGscgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:03 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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=3e12f2d8-5580-467e-bacc-3f3e4df4479a&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b23ff0700', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Aj0YRoh5_8JBqu-2Ci8-mPwWPr5BAQAAAKca_9gOAAAA; expires=Wed, 17-Nov-2021 07:35:04 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:04 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/availabilitySets/availabilitySets123') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e947cb6c917ff428fd28bbcc8a329b1465d15ebfcedb6677efde47236e51ccf0fddd663d69a675b16a8b6ad9dc7db877fef0feece07cfbdef4d307dbfbbb7bfbdb0f77a70fb60fa6e73b0fa6b3c9f9defeeedd3a6faa753dcd3fafabf5aab9bbb8fee9a6cd9bf6eeaaae2e8b595e3777bf28a675d554e7edf8a45aacd66d7eb78b47ef0387587bbd62d46f06a22f94d53403fa7829cf9a766dbe20845679dd1679435f315df06199b5e755bdf86a35cbdafc69b5c88ae549b55eb6d4666f875ff45a3dcbd665db6964da5c1675bbceca2fb2e9bc58721fdffb3ebefa25dce0a3e6ed9a3e32dd9a093929b3a629a61fe1e35ff21b27bf","e4ff0102dce740af010000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31999', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7858d806-f27d-4753-a98c-dd87c8e41c3f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11999', + 'x-ms-correlation-request-id', + '2067ee8e-94f1-46d3-b0b2-ddefa1d3fc0c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073505Z:2067ee8e-94f1-46d3-b0b2-ddefa1d3fc0c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:04 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_list_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_list_test.js new file mode 100644 index 000000000000..9043860c3ec5 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_list_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "783a0ec837162ea8cfd0b4674b56ad42"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dc166749-de8d-4169-86e2-e69f74901100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AvMcAvuUUFBCmgLXcU0AY3E; expires=Wed, 17-Nov-2021 07:35:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrkKNr5I8hskoEtLs5XK5sPaArcf6tmyjZP_7qArHrYOqWvWtJQIZukvDIfFfpzvYHbBhGu_EaIos7MfPgVXYumStZA79JjSQVH7Y10ztlqEuYoJKhA4_R4uCp6pWpv5Q2Heh7ibMC28Hz6yMOAbGuu5Prm1PgJpe3l2b8V2rYCR0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:04 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b2bff0700', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AmpBXXpYFuZApwxD7X1TYmU; expires=Wed, 17-Nov-2021 07:35:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrzimAhw0ICjfPzcw0xSxymOJ5pCnrN5M_WuyK5nC7xmt5Dn_AQQGpeZaWDcrfcuIDH0nNOzr54r1NHN_cnOKCPKWwTVSX6l3UcJBGT0b1l-6J_E2spCg6eXvDUxIFomMLGfXlF4OhcfKLBP7fVDjH6tlu3M2Qu0nmtvNixn5ojv8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:04 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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=379aa9f5-189e-4be2-b3f7-422cdee40c51&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'ea3e9b90-f5ac-4be3-85d3-ff02810b1200', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Av9Ut9VgultEnHQM0qvD1JkWPr5BAQAAAKka_9gOAAAA; expires=Wed, 17-Nov-2021 07:35:05 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:04 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/availabilitySets') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9479759b9ce3f7a947e0f7fa5297f88e7a365b6c0e71f659759516693a22cdaebd779dbeceeddfb68645b1533b4b9dbac27cdb42e566d512d9bbb0ff7ce1fde9f1d9c6fdf9b7efa607b7f776f7ffbe1eef4c1f6c1f47ce7c1743639dfdbdfbd5be74db5aea7f9e775b55e357717d73fddb479d3de5dd5d56531cbebe6ee17c5b4ae9aeabc1d9f548bd5bacdef7671e97d1022d75eaf78083703f25e2aab698661e0c53c6bdab5ff2521b7caebb6c81bfadad20a5f94597b5ed58baf56b3accd9f568bac589e54eb654bedf6762c00afe5b36c5db69d867ebbcba26ed759f945369d174beeef7bdf375fff12dbf0a3e6ed9abef25131137752664d534c3f325ffd12f9857f10a45f","f2ff003559e0a200020000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '478ec48f-7c44-42d9-8573-cf346077a47e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11998', + 'x-ms-correlation-request-id', + '314100c6-9db4-48f5-b93f-35c3dd2abec5', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073505Z:314100c6-9db4-48f5-b93f-35c3dd2abec5', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:05 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_update_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_update_test.js new file mode 100644 index 000000000000..609129c676e4 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_availabilitysets_update_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "19a7d63b023e1898f426d0f5d01ac1a9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'ea3e9b90-f5ac-4be3-85d3-ff026f0b1200', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Ahs2hQkQkTJGphK9t28YN_8; expires=Wed, 17-Nov-2021 07:35:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrneqZ_Tgk1Hbc0Bz7le_w5Y5ND_zjbnxhUFZdGx6Otm5XFhaaU5TFThD0qAtI2Rr87olrDSIClY42mJBR9NkHeSyvl1y3LwL_GOYOCsTFjBoKINDlFB-cTmhF9BDRbCJup9dUScAdGizZSS6SeCmkwVhIB2upCG0H4Hdn6RKhY_EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:02 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dc166749-de8d-4169-86e2-e69f5a901100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AsxyOiTNjKlElrWU8BjU9tk; expires=Wed, 17-Nov-2021 07:35:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrNSvtALVte1UX839gJC1ZDOX2RYpXcTESchKTwBWnouqPUy9Or4dSRjKrqqxtpRZ_QhSQ2pRK2uVpHNxDG7ppnawtvrVD3ooMXliriSyjl7uMf2FLAXM5AVnp2cYeMukcDiIbTevkHgxCRPh3vVWbdVlSxj8bMhrgrR0h8wyqm8IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:02 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=74ab9cc9-4641-4c72-876e-b8c98ad09bdc&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '95bf35d7-2ecf-47ae-a44e-8274ced51000', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AqseAdpwZ7ZNkpLv1OoGNYsWPr5BAQAAAKca_9gOAAAA; expires=Wed, 17-Nov-2021 07:35:03 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:03 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .patch('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/availabilitySets/availabilitySets123', {"properties":{"platformUpdateDomainCount":20,"platformFaultDomainCount":2}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e947cb6c917ff428fd28bbcc8a329b1465d15ebfcedb6677efde47236e51ccf0fddd663d69a675b16a8b6ad9dc7db877fef0feece07cfbdef4d307dbfbbb7bfbdb0f77a70fb60fa6e73b0fa6b3c9f9defeeedd3a6faa753dcd3fafabf5aab9bbb8fee9a6cd9bf6eeaaae2e8b595e3777bf28a675d554e7edf8a45aacd66d7eb78b47ef0387587bbd62d46f06a22f94d53403fa7829cf9a766dbe20845679dd1679435f315df06199b5e755bdf86a35cbdafc69b5c88ae549b55eb6d4666f875ff45a3dcbd665db698426bf841b7ed4bc5dd32706b421fa4999354d31fd081fff92df38f9","25ff0f65f7d92493010000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ba816dcf-fc1e-4ef7-9c20-b3d4fa539663', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1198', + 'x-ms-correlation-request-id', + '7ca6fc05-5fce-4bb4-98a2-13bc8e2018e3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073504Z:7ca6fc05-5fce-4bb4-98a2-13bc8e2018e3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:04 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_create_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_create_test.js new file mode 100644 index 000000000000..fba90f58d368 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_create_test.js @@ -0,0 +1,7925 @@ +let nock = require('nock'); + +module.exports.hash = "324ec33dbb85d09cad568cfef03d1a0a"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b57ff0700', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AtT2Mf_Q05RJrHFp6VFGiO8; expires=Wed, 17-Nov-2021 07:35:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevro2XPAfH60QUhTfK0Nwf4iU9XLrtale0wYNlKUuGcd-MHSW7wUxg3mEJpSIJx-GnwSpaBYjTDtsVYUn5d0zxffAhHaXrmugGcTJGwRH5h7zczAxpu7vkoZX907qJcnPlyqqSA05W8T7yWncCNlIfNit1Okj3IJfT0DnkuvXzXdDcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:11 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '9ea55952-2798-4ab6-b940-678affcf1000', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AlNZQHT6FmlHisY_XqRa534; expires=Wed, 17-Nov-2021 07:35:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr6oyAlBlkIKKJnLCZELTKneTNBAbv-p3XHrg5b-ugbSnCzKXGOzSb6E41UnRZxm6HDDsVAlSWGhr3u7Fxi2PsM2tTHZdh9CDeaPiuaQVjYhbHQXFUHoMYa0qzBl5zznF4rsHbqRgFz3ER0Y_2HqWsOlZ09gz2AIRJKL4fuEYXpucgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:11 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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=88a35b78-5ecd-4655-abee-d827cd9d877c&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dc166749-de8d-4169-86e2-e69fa8901100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AqoXePyHnU5MkYMNHc1le30WPr5BAQAAALAa_9gOAAAA; expires=Wed, 17-Nov-2021 07:35:12 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:35:11 GMT', + 'Content-Length', + '1351' +]); + +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/\"48e2932b-3162-4dee-8649-e72c40fde1a2\"","type":"Microsoft.Network/virtualNetworks","location":"eastus","properties":{"provisioningState":"Updating","resourceGuid":"e1d9989a-c236-46ea-8abd-2d419b4d102e","addressSpace":{"addressPrefixes":["10.0.0.0/16"]},"subnets":[],"virtualNetworkPeerings":[],"enableDdosProtection":false}}, [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Content-Length', + '610', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Retry-After', + '3', + 'x-ms-request-id', + '615b0d09-e639-4551-9eb8-6a7d907c3aad', + 'Azure-AsyncOperation', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/615b0d09-e639-4551-9eb8-6a7d907c3aad?api-version=2021-03-01', + 'x-ms-correlation-request-id', + 'cf1200f2-fa97-4118-9713-f75af16453db', + 'Azure-AsyncNotification', + 'Enabled', + 'x-ms-arm-service-request-id', + 'eba10832-6522-4f03-8679-9511cbef70e1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1199', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073519Z:cf1200f2-fa97-4118-9713-f75af16453db', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/615b0d09-e639-4551-9eb8-6a7d907c3aad') + .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', + '52a941ae-0b3c-4407-bb71-8605fc0ee675', + 'x-ms-correlation-request-id', + 'fa2c571f-aec4-476a-a681-c5257c382e64', + 'x-ms-arm-service-request-id', + '80f4c8e0-fc81-4535-b612-cf6bdcf98da8', + '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', + 'SOUTHEASTASIA:20211018T073520Z:fa2c571f-aec4-476a-a681-c5257c382e64', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/615b0d09-e639-4551-9eb8-6a7d907c3aad') + .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', + '6c5ede68-c999-4a87-8dae-bd03ac53532a', + 'x-ms-correlation-request-id', + '48b3e59d-4b64-485a-b910-62607e18c0c7', + 'x-ms-arm-service-request-id', + '02037ef5-1f96-4269-b960-5f049d534c01', + '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', + 'SOUTHEASTASIA:20211018T073520Z:48b3e59d-4b64-485a-b910-62607e18c0c7', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/615b0d09-e639-4551-9eb8-6a7d907c3aad') + .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', + '81e56a88-ab29-4ff6-989f-ca34762a138b', + 'x-ms-correlation-request-id', + 'bf8ddc17-50f1-4065-8859-8b131e05d5a3', + 'x-ms-arm-service-request-id', + 'ba2609e7-9672-4000-9a74-e7997b1d97bd', + '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', + 'SOUTHEASTASIA:20211018T073520Z:bf8ddc17-50f1-4065-8859-8b131e05d5a3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/615b0d09-e639-4551-9eb8-6a7d907c3aad') + .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', + '5177bf3b-f008-4960-abbb-4757c65a7694', + 'x-ms-correlation-request-id', + 'a8bfd3e4-c20f-408f-8c42-49640c8f8776', + 'x-ms-arm-service-request-id', + '39ce2fab-f9d6-4fc1-9f59-faaf2e4cb1a4', + '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', + 'SOUTHEASTASIA:20211018T073521Z:a8bfd3e4-c20f-408f-8c42-49640c8f8776', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/615b0d09-e639-4551-9eb8-6a7d907c3aad') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e947afd7d3699ecff2d947bf71f24b","fe1f4f9490471d000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + 'd817b4f8-d420-4820-935d-42d57c0cfc7e', + 'x-ms-correlation-request-id', + '56e7a310-3691-4f72-b809-b22ddc548c8a', + 'x-ms-arm-service-request-id', + '31daa630-e7be-4aae-a299-5ef8ee1c29af', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11994', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073521Z:56e7a310-3691-4f72-b809-b22ddc548c8a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetnamex', {"properties":{"addressPrefix":"10.0.0.0/24"}}) + .query(true) + .reply(201, {"name":"subnetnamex","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetnamex","etag":"W/\"89d3a0e3-8fa5-40a3-b394-c0cf50d4d79a\"","properties":{"provisioningState":"Updating","addressPrefix":"10.0.0.0/24","delegations":[],"privateEndpointNetworkPolicies":"Enabled","privateLinkServiceNetworkPolicies":"Enabled"},"type":"Microsoft.Network/virtualNetworks/subnets"}, [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Content-Length', + '533', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Retry-After', + '3', + 'x-ms-request-id', + '85581dca-faa3-42b4-8964-70888fe82d3a', + 'Azure-AsyncOperation', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/85581dca-faa3-42b4-8964-70888fe82d3a?api-version=2021-03-01', + 'x-ms-correlation-request-id', + 'fa1bf4ff-e5bc-4ae7-a1f3-9bf106479985', + 'x-ms-arm-service-request-id', + 'afbe7a8d-7bfe-4a81-8e4f-63706162096a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1198', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073522Z:fa1bf4ff-e5bc-4ae7-a1f3-9bf106479985', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/85581dca-faa3-42b4-8964-70888fe82d3a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e947afd7d3699ecff2d947bf71f24b","fe1f4f9490471d000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '45ba1116-10f2-44b0-81a2-7d0aa4a77909', + 'x-ms-correlation-request-id', + '6413cd87-18a6-4e38-9294-8cd93d24ce7e', + 'x-ms-arm-service-request-id', + 'bb940e75-8e38-43f2-baaf-fdc4b018f80b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11993', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073522Z:6413cd87-18a6-4e38-9294-8cd93d24ce7e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:22 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/networkInterfaces/interfacex', {"location":"eastus","properties":{"ipConfigurations":[{"name":"MyIpConfig","properties":{"subnet":{"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetnamex","properties":{}}}}]}}) + .query(true) + .reply(201, {"name":"interfacex","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/networkInterfaces/interfacex","etag":"W/\"f49a770a-1cac-49d6-a237-434d40b27b5a\"","location":"eastus","properties":{"provisioningState":"Succeeded","resourceGuid":"35998057-cd0e-444b-9535-6e9e7f6e12d0","ipConfigurations":[{"name":"MyIpConfig","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/networkInterfaces/interfacex/ipConfigurations/MyIpConfig","etag":"W/\"f49a770a-1cac-49d6-a237-434d40b27b5a\"","type":"Microsoft.Network/networkInterfaces/ipConfigurations","properties":{"provisioningState":"Succeeded","privateIPAddress":"10.0.0.4","privateIPAllocationMethod":"Dynamic","subnet":{"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/virtualNetworks/networknamex/subnets/subnetnamex"},"primary":true,"privateIPAddressVersion":"IPv4"}}],"dnsSettings":{"dnsServers":[],"appliedDnsServers":[],"internalDomainNameSuffix":"tkmntyjwylvencv3fvazwtiqfg.bx.internal.cloudapp.net"},"enableAcceleratedNetworking":false,"vnetEncryptionSupported":false,"enableIPForwarding":false,"hostedWorkloads":[],"tapConfigurations":[],"nicType":"Standard"},"type":"Microsoft.Network/networkInterfaces"}, [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Content-Length', + '1665', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'x-ms-request-id', + 'a8192432-d164-4186-b410-51f19bef5d3e', + 'Azure-AsyncOperation', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/a8192432-d164-4186-b410-51f19bef5d3e?api-version=2021-03-01', + 'x-ms-correlation-request-id', + 'e47eb61d-e1c1-4b44-8124-b5c4b80eb97d', + 'Azure-AsyncNotification', + 'Enabled', + 'x-ms-arm-service-request-id', + '83a0ab2b-b1e2-44a0-8a3a-c649d9b34c6d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1197', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073527Z:e47eb61d-e1c1-4b44-8124-b5c4b80eb97d', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:27 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Network/locations/eastus/operations/a8192432-d164-4186-b410-51f19bef5d3e') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bb5ebe6a347e947afd7d3699ecff2d947bf71f24b","fe1f4f9490471d000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-request-id', + '190c84b6-9871-4d09-8e77-7cc97f6052c6', + 'x-ms-correlation-request-id', + '225ec098-c43d-486c-b8f3-e703539bf6e4', + 'x-ms-arm-service-request-id', + '5f5c1c05-f14b-4ab0-ae59-4eaf83fba873', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11992', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073528Z:225ec098-c43d-486c-b8f3-e703539bf6e4', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:27 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines/virtualmachinex', {"location":"eastus","properties":{"hardwareProfile":{"vmSize":"Standard_D2_v2"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2016-Datacenter","version":"latest"},"osDisk":{"name":"myVMosdisk","caching":"ReadWrite","createOption":"FromImage","managedDisk":{"storageAccountType":"Standard_LRS"}},"dataDisks":[{"lun":0,"createOption":"Empty","diskSizeGB":1023},{"lun":1,"createOption":"Empty","diskSizeGB":1023}]},"osProfile":{"computerName":"myVM","adminUsername":"testuser","adminPassword":"Aa!1()-xyz","windowsConfiguration":{"enableAutomaticUpdates":true}},"networkProfile":{"networkInterfaces":[{"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/networkInterfaces/interfacex","properties":{"primary":true}}]}}}) + .query(true) + .reply(201, {"name":"virtualmachinex","id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines/virtualmachinex","type":"Microsoft.Compute/virtualMachines","location":"eastus","tags":{"azsecpack":"nonprod","platformsettings.host_environment.service.platform_optedin_for_rootcerts":"true"},"properties":{"vmId":"aaf0ca60-b7c5-4f5d-9fd6-0e7ac766854d","hardwareProfile":{"vmSize":"Standard_D2_v2"},"storageProfile":{"imageReference":{"publisher":"MicrosoftWindowsServer","offer":"WindowsServer","sku":"2016-Datacenter","version":"latest","exactVersion":"14393.4704.2110062116"},"osDisk":{"osType":"Windows","name":"myVMosdisk","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Standard_LRS"},"deleteOption":"Detach","diskSizeGB":127},"dataDisks":[{"lun":0,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"deleteOption":"Detach","diskSizeGB":1023,"toBeDetached":false},{"lun":1,"createOption":"Empty","caching":"None","managedDisk":{"storageAccountType":"Standard_LRS"},"deleteOption":"Detach","diskSizeGB":1023,"toBeDetached":false}]},"osProfile":{"computerName":"myVM","adminUsername":"testuser","windowsConfiguration":{"provisionVMAgent":true,"enableAutomaticUpdates":true,"patchSettings":{"patchMode":"AutomaticByOS","assessmentMode":"ImageDefault"}},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"networkProfile":{"networkInterfaces":[{"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/networkInterfaces/interfacex","properties":{"primary":true}}]},"provisioningState":"Creating"}}, [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Content-Length', + '2449', + 'Content-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Retry-After', + '10', + 'Azure-AsyncOperation', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2?p=f8cfeb74-5cf7-40e0-89b1-3d95a1060fe7&api-version=2021-07-01', + 'Azure-AsyncNotification', + 'Enabled', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8e6f07a7-666c-4591-bd61-2d494026b8a2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1197', + 'x-ms-correlation-request-id', + '2683b95b-ad43-4aa7-b7ef-a8e31835c83f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073535Z:2683b95b-ad43-4aa7-b7ef-a8e31835c83f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Retry-After', + '50', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ec700342-ad30-4548-a73d-c6f9275a5af4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11996', + 'x-ms-correlation-request-id', + 'b476fad7-4035-4a9c-afd4-534372c401df', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073536Z:b476fad7-4035-4a9c-afd4-534372c401df', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8075a7e7-be72-4634-b5d5-1c6d83d7a5ba', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11995', + 'x-ms-correlation-request-id', + 'e2106c78-90de-43aa-8e4d-f6549294107b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073536Z:e2106c78-90de-43aa-8e4d-f6549294107b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a3fd0419-3069-4c8f-a1be-316ee70a49bf', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11994', + 'x-ms-correlation-request-id', + '87eeefb1-f547-43bd-b7c3-93319c77c91e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073536Z:87eeefb1-f547-43bd-b7c3-93319c77c91e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:36 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8fbafc06-24f5-46c4-ac97-81411a716aa8', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11993', + 'x-ms-correlation-request-id', + '4235d875-3fc0-4ebe-b031-3998acbf48c8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073537Z:4235d875-3fc0-4ebe-b031-3998acbf48c8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:36 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8edcac7c-786f-4999-8b1f-f4b010d9d6c3', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11992', + 'x-ms-correlation-request-id', + '7c1ee512-235c-4172-b7d8-99f8b60facc6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073537Z:7c1ee512-235c-4172-b7d8-99f8b60facc6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8fe5b04b-1143-4f11-aee7-818961e894e4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11991', + 'x-ms-correlation-request-id', + '6d8a7ca6-34e3-456b-a0f7-778966e42aaf', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073538Z:6d8a7ca6-34e3-456b-a0f7-778966e42aaf', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '51fefc56-bc88-487f-a85c-0810bd5d687a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11990', + 'x-ms-correlation-request-id', + 'e4fd2622-d19b-47bc-aea9-7b106f5abbc7', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073538Z:e4fd2622-d19b-47bc-aea9-7b106f5abbc7', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'fdd2c03f-a3ac-48ef-9e07-16f92716840e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11989', + 'x-ms-correlation-request-id', + 'b5cc80bc-8ead-40f6-b7e2-92f30f840994', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073538Z:b5cc80bc-8ead-40f6-b7e2-92f30f840994', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:38 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '910a3d55-b42a-4654-b206-d8b32bdf1ab0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11988', + 'x-ms-correlation-request-id', + '8abd1d84-592f-4aa3-bc32-d015197f0b63', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073539Z:8abd1d84-592f-4aa3-bc32-d015197f0b63', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:38 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '345b7295-c985-4a0b-a4b1-03cbe782e0bf', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11987', + 'x-ms-correlation-request-id', + '0f4ec24a-ec42-4167-aa89-c3793ac0e0c8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073539Z:0f4ec24a-ec42-4167-aa89-c3793ac0e0c8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:38 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b39fb631-92cb-455f-b125-443a29210735', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11986', + 'x-ms-correlation-request-id', + '0e1bfacd-9b74-4cdd-b3fe-b03a3287fce8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073539Z:0e1bfacd-9b74-4cdd-b3fe-b03a3287fce8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:39 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5af4b8fa-747b-42a6-b730-0f9366f5b2dc', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11985', + 'x-ms-correlation-request-id', + 'c4f045fd-57c8-4483-abae-110f768de59f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073540Z:c4f045fd-57c8-4483-abae-110f768de59f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:39 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '44386400-f6fe-4f2e-a31a-7e3014b3d2b3', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11984', + 'x-ms-correlation-request-id', + 'c89c6aff-a349-4d30-93c1-94882815ae05', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073540Z:c89c6aff-a349-4d30-93c1-94882815ae05', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:40 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '79153c0a-6b36-4177-bdae-3a80baea0c3c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11983', + 'x-ms-correlation-request-id', + 'dceb85f2-3fc7-46a8-b5e8-93dde42a7af9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073541Z:dceb85f2-3fc7-46a8-b5e8-93dde42a7af9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:40 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ae1f08b5-1f5f-43e3-accc-1ef36395dcf2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11982', + 'x-ms-correlation-request-id', + 'e28f8e32-3ed2-471b-b68e-b7a70b357b2c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073541Z:e28f8e32-3ed2-471b-b68e-b7a70b357b2c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:40 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29984', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1fcc90f2-f1ab-486a-9756-7ac2427cda94', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11981', + 'x-ms-correlation-request-id', + 'ea99e93c-8828-4a5c-9f2f-f90736542e5b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073541Z:ea99e93c-8828-4a5c-9f2f-f90736542e5b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:41 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ed97291b-7228-4a46-afe4-25d5f7df8896', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11980', + 'x-ms-correlation-request-id', + 'b95e3d29-ad09-40e3-9c47-abeae2390fb9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073542Z:b95e3d29-ad09-40e3-9c47-abeae2390fb9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:41 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29982', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '182b4e4d-7213-4435-9ab5-1a1faba8438a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11979', + 'x-ms-correlation-request-id', + '3ebbaf35-2678-4c6b-92d1-f1c2d2f2579d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073542Z:3ebbaf35-2678-4c6b-92d1-f1c2d2f2579d', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:41 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29981', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c2aa2a0c-f7ed-4367-a2d5-4adb0b27ad10', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11978', + 'x-ms-correlation-request-id', + 'a1736ae2-c02c-4688-826a-4b8a76a95a4d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073542Z:a1736ae2-c02c-4688-826a-4b8a76a95a4d', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:42 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '042c2af0-4913-4bc1-ab70-643776a24f7b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11977', + 'x-ms-correlation-request-id', + '970a2c9c-ba61-4980-83c1-5369882c1f7f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073543Z:970a2c9c-ba61-4980-83c1-5369882c1f7f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:42 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29979', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'aa39574c-a1a7-4e81-a9b0-1419f1ec650b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11976', + 'x-ms-correlation-request-id', + 'a0270f1c-e6ae-46e5-9506-3278119ca3ab', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073543Z:a0270f1c-e6ae-46e5-9506-3278119ca3ab', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:43 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '03b1eb5c-a450-4d6c-abd1-2cc7adbb6528', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11975', + 'x-ms-correlation-request-id', + 'cab3e074-7399-4702-927b-24b95cedf8a2', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073544Z:cab3e074-7399-4702-927b-24b95cedf8a2', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:43 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b1dd32d8-4747-4b7d-bf3c-e27d3aa340bc', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11974', + 'x-ms-correlation-request-id', + '1dd3716a-bd49-4003-873d-32179675b22f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073544Z:1dd3716a-bd49-4003-873d-32179675b22f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:43 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2354d18e-f474-49ac-8da4-3208eddddaac', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11973', + 'x-ms-correlation-request-id', + 'f0b3c236-7def-49de-9a38-295346278ec3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073544Z:f0b3c236-7def-49de-9a38-295346278ec3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:44 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29975', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f534d686-4050-49dd-b711-536d1d27de76', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11972', + 'x-ms-correlation-request-id', + 'cf749492-bc33-4652-bbeb-77b9850e0ac6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073545Z:cf749492-bc33-4652-bbeb-77b9850e0ac6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:44 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29974', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'e0c5cc5e-a32a-44df-80db-62d9a7bf9beb', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11971', + 'x-ms-correlation-request-id', + '1350ee49-87f9-4487-8796-0069024c5271', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073545Z:1350ee49-87f9-4487-8796-0069024c5271', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:44 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29973', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '6868beed-9b1d-40bb-8a7d-0ec3d5f000ac', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11970', + 'x-ms-correlation-request-id', + '5ab31f16-2252-425b-b961-5d970428ef4e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073545Z:5ab31f16-2252-425b-b961-5d970428ef4e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:45 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29972', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '17aaa38a-0335-42a7-a1f3-ceb06c8d621c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11969', + 'x-ms-correlation-request-id', + '1f012c92-b086-49a8-98ae-21b34c5a0f6e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073546Z:1f012c92-b086-49a8-98ae-21b34c5a0f6e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:45 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29971', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5b2a1360-0273-4ec1-98bc-8fdae4a00615', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11968', + 'x-ms-correlation-request-id', + '2823925d-64bc-4ed1-b1ba-2f4e74fb17c9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073546Z:2823925d-64bc-4ed1-b1ba-2f4e74fb17c9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:45 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29970', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '27718be8-724a-4ede-9c47-022fa54258f4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11967', + 'x-ms-correlation-request-id', + '0433dbe5-ba59-4316-baa6-ce0c16888cb7', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073547Z:0433dbe5-ba59-4316-baa6-ce0c16888cb7', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:46 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f549c6fe-2a04-42ec-808b-7684b919a366', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11966', + 'x-ms-correlation-request-id', + 'f55d7daf-c584-4219-b5b8-73a5713a51c4', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073547Z:f55d7daf-c584-4219-b5b8-73a5713a51c4', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:46 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29968', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5e76e129-15ad-4b74-8b48-f42d452fb8c2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11965', + 'x-ms-correlation-request-id', + 'a765b487-125f-4ee3-a5c4-8c0d40d4ef2e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073547Z:a765b487-125f-4ee3-a5c4-8c0d40d4ef2e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:47 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29967', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'eb7de435-a150-4275-9cf8-fc6dba4f0249', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11964', + 'x-ms-correlation-request-id', + 'c82c35a5-6c3e-43e0-a19a-268ed2875532', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073548Z:c82c35a5-6c3e-43e0-a19a-268ed2875532', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:47 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29966', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '6b00228f-3b2b-4799-9949-b4519856209b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11963', + 'x-ms-correlation-request-id', + 'f326998a-db19-4ba1-9cd4-7556c6c9e677', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073548Z:f326998a-db19-4ba1-9cd4-7556c6c9e677', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:47 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd9d273a9-4d04-4623-83b4-1b7ed4bbb1a6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11962', + 'x-ms-correlation-request-id', + '7979649d-f497-453d-bf42-841203b9fde6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073548Z:7979649d-f497-453d-bf42-841203b9fde6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:48 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29964', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd8ec472f-9fc7-4794-be52-fa9c81f920e2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11961', + 'x-ms-correlation-request-id', + '9ca2c891-658e-4c68-8f5e-1c2cf44017b0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073549Z:9ca2c891-658e-4c68-8f5e-1c2cf44017b0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:48 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29963', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7fee9f11-365b-4b5d-8d37-77b62cf5a764', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11960', + 'x-ms-correlation-request-id', + '62c2d186-7401-4fb8-9410-3f122233cd20', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073549Z:62c2d186-7401-4fb8-9410-3f122233cd20', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:49 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29962', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ff0dd299-bc31-44da-8636-1b70199b02d2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11959', + 'x-ms-correlation-request-id', + 'da35d2ce-a462-473e-a8ed-ee514d8a8b83', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073550Z:da35d2ce-a462-473e-a8ed-ee514d8a8b83', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:49 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29961', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'bbf203a3-3bfd-46f9-b731-968d31897239', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11958', + 'x-ms-correlation-request-id', + 'd6e8ed65-81a9-4479-bf6a-fba28124d3fc', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073550Z:d6e8ed65-81a9-4479-bf6a-fba28124d3fc', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:49 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29960', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9b12001a-db2f-4e01-99c0-56643003c241', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11957', + 'x-ms-correlation-request-id', + 'f504e105-a7c7-477f-9414-21a6798cb7ea', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073550Z:f504e105-a7c7-477f-9414-21a6798cb7ea', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:50 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29959', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'eda9bb04-4a39-4389-b815-7b19b1e0234f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11956', + 'x-ms-correlation-request-id', + 'db930407-000e-4c62-b6e1-7e963f0e9097', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073551Z:db930407-000e-4c62-b6e1-7e963f0e9097', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:50 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29958', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '79c9348f-8c87-4413-8e17-cf6d91c49891', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11955', + 'x-ms-correlation-request-id', + '8995d037-dbbf-43a4-9c9d-1ff7a7eabc71', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073551Z:8995d037-dbbf-43a4-9c9d-1ff7a7eabc71', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:50 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29957', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '11ddc46d-c604-42e9-ac48-1595e261fa33', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11954', + 'x-ms-correlation-request-id', + 'c0fd6a0a-5285-4756-9224-f568d23288b3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073552Z:c0fd6a0a-5285-4756-9224-f568d23288b3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:51 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29956', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0d9a6974-187c-4cef-b846-7687e3ceb599', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11953', + 'x-ms-correlation-request-id', + '8b51f5c6-d394-45f9-b876-9047f2ed5720', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073552Z:8b51f5c6-d394-45f9-b876-9047f2ed5720', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:52 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29955', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b2e1f7ef-9ad2-437c-8b9e-6a01562bd3cd', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11952', + 'x-ms-correlation-request-id', + '86f3f21e-ba7e-46af-8afb-cdcb435afcd2', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073553Z:86f3f21e-ba7e-46af-8afb-cdcb435afcd2', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:52 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29954', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ca8d3314-f3ca-459d-a85c-bc6fd63240df', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11951', + 'x-ms-correlation-request-id', + 'e64dafa7-2796-40db-b4e5-a403d30598b3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073553Z:e64dafa7-2796-40db-b4e5-a403d30598b3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:52 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29953', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4901a133-dbf4-4a6d-ab45-5da9380d3894', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11950', + 'x-ms-correlation-request-id', + '6f8f8660-4dfc-49f7-831e-91903feeeffe', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073553Z:6f8f8660-4dfc-49f7-831e-91903feeeffe', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:53 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29952', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9a64b7d1-8177-4789-8057-0453a74732d7', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11949', + 'x-ms-correlation-request-id', + 'b44c77d2-4c8a-4dbf-9c4b-4f6ce189deb0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073554Z:b44c77d2-4c8a-4dbf-9c4b-4f6ce189deb0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:53 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29951', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4f31feb3-a6f0-4cfb-8d2a-94481ee1f26a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11948', + 'x-ms-correlation-request-id', + 'cc852786-b4d8-4cb7-965e-c57e8ddac596', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073554Z:cc852786-b4d8-4cb7-965e-c57e8ddac596', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:53 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29950', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a8fd3193-0bf5-4fe0-a6ce-f94314db9c75', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11947', + 'x-ms-correlation-request-id', + '044b42e3-010b-4f00-a3f7-468cc7a3c0db', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073555Z:044b42e3-010b-4f00-a3f7-468cc7a3c0db', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:54 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29949', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '11a4b3c9-c8dd-4615-97b1-44a1759a1f85', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11946', + 'x-ms-correlation-request-id', + '8f9e755e-1cbf-495f-b9de-35796d84f33b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073555Z:8f9e755e-1cbf-495f-b9de-35796d84f33b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:54 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29948', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5ecc412f-723a-4401-8623-2723dec11a4a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11945', + 'x-ms-correlation-request-id', + '1651ca24-c8f4-4f91-a861-1277321fdd38', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073555Z:1651ca24-c8f4-4f91-a861-1277321fdd38', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:55 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29947', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '86230e69-2f78-4b67-9674-241c8a7b1046', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11944', + 'x-ms-correlation-request-id', + 'aebcc58b-c6a4-4337-8fdf-5511c085b1d0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073556Z:aebcc58b-c6a4-4337-8fdf-5511c085b1d0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:55 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29946', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '06865207-664a-42b9-b3b9-9e194bd3a4ce', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11943', + 'x-ms-correlation-request-id', + '670c5f47-bf56-48fa-abb2-cb7aabd4bd48', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073556Z:670c5f47-bf56-48fa-abb2-cb7aabd4bd48', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:56 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29945', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd38f6467-5f53-4f68-a9bd-6e9a1d04c763', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11942', + 'x-ms-correlation-request-id', + 'b53fa463-5f82-4b62-99e2-3085310fdbae', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073557Z:b53fa463-5f82-4b62-99e2-3085310fdbae', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:56 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29944', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '48a0a94f-5972-4a7a-a505-616a1f62f29f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11941', + 'x-ms-correlation-request-id', + 'fb34a096-b544-4ea3-8af9-8b275fe2de7c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073557Z:fb34a096-b544-4ea3-8af9-8b275fe2de7c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:56 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29943', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '31b7e8b0-6943-402e-b340-398e73aac7a3', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11940', + 'x-ms-correlation-request-id', + '60c11df3-ef6d-499e-9d2d-07de7006cc67', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073557Z:60c11df3-ef6d-499e-9d2d-07de7006cc67', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:57 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29942', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b510d7d3-2baf-4148-afcc-c3008f1c1c37', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11939', + 'x-ms-correlation-request-id', + '1d82439e-e05d-49c4-aeef-3a2817b7297f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073558Z:1d82439e-e05d-49c4-aeef-3a2817b7297f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:57 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29941', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '69d8176e-4ea5-4fdc-bb4f-0291090aac40', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11938', + 'x-ms-correlation-request-id', + '321ddffd-4ad1-4bbf-8e71-078331577270', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073558Z:321ddffd-4ad1-4bbf-8e71-078331577270', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:57 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29940', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0cc7e9fb-f182-4278-8c19-729b04a0b590', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11937', + 'x-ms-correlation-request-id', + '46ae1afc-2b6e-4e9f-acae-b9b48fa15a63', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073559Z:46ae1afc-2b6e-4e9f-acae-b9b48fa15a63', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:58 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14939,Microsoft.Compute/GetOperation30Min;29939', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ba966296-957d-43e9-8645-6e176d788f96', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11936', + 'x-ms-correlation-request-id', + '3b170d3a-f5a9-4944-90f7-5a17c2ef9a05', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073559Z:3b170d3a-f5a9-4944-90f7-5a17c2ef9a05', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:58 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29938', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ed3977e3-39b9-46b6-a8b4-4bfa2d3fc9a5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11935', + 'x-ms-correlation-request-id', + 'cddd98fe-9664-48a9-8f0c-d0c2633608e4', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073600Z:cddd98fe-9664-48a9-8f0c-d0c2633608e4', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:35:59 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29937', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f3599409-caff-4623-bada-fa1bae85b112', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11934', + 'x-ms-correlation-request-id', + '25fc76f6-e391-497f-bce8-79ba471a24dd', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073600Z:25fc76f6-e391-497f-bce8-79ba471a24dd', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:00 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14936,Microsoft.Compute/GetOperation30Min;29936', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'faaac5ec-53b5-4857-ad7f-0d7b9b025cc9', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11933', + 'x-ms-correlation-request-id', + 'c38bb22f-6150-486c-bb5c-d7dc004c53a8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073601Z:c38bb22f-6150-486c-bb5c-d7dc004c53a8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:00 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14935,Microsoft.Compute/GetOperation30Min;29935', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '86c5cc6a-5e18-4143-a121-57a0cc897422', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11932', + 'x-ms-correlation-request-id', + '2b56f1ee-1236-4ffb-88ee-c3370815aa7f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073601Z:2b56f1ee-1236-4ffb-88ee-c3370815aa7f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:01 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14934,Microsoft.Compute/GetOperation30Min;29934', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9b1207a3-835c-426d-925d-4c542905692c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11931', + 'x-ms-correlation-request-id', + 'd4443dd0-1e95-4dce-aa3c-7602fc3b80d5', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073602Z:d4443dd0-1e95-4dce-aa3c-7602fc3b80d5', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:01 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14933,Microsoft.Compute/GetOperation30Min;29933', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '43bf2673-c048-4151-9a02-6c0bf0bc89dd', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11930', + 'x-ms-correlation-request-id', + '19713bef-fa63-4628-a834-24b85e670436', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073603Z:19713bef-fa63-4628-a834-24b85e670436', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:02 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14932,Microsoft.Compute/GetOperation30Min;29932', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '032e7d12-7238-419a-8cdd-cea70c01c403', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11929', + 'x-ms-correlation-request-id', + 'ad9a9029-7145-4d42-99ec-7b19122b87a5', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073604Z:ad9a9029-7145-4d42-99ec-7b19122b87a5', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:03 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14931,Microsoft.Compute/GetOperation30Min;29931', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd2501c83-b842-4fad-9652-2bb49894f791', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11928', + 'x-ms-correlation-request-id', + '178a40a6-dc7b-4d00-8e1d-ea6543c4111b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073604Z:178a40a6-dc7b-4d00-8e1d-ea6543c4111b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:03 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29930', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9004e524-c3e5-4c1d-a2d1-8e343796e3dd', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11927', + 'x-ms-correlation-request-id', + '2ad21fc7-d76c-4bf9-b663-136b044b9378', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073605Z:2ad21fc7-d76c-4bf9-b663-136b044b9378', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:04 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14929,Microsoft.Compute/GetOperation30Min;29929', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f0ba5e2e-4cae-4c40-b69e-ae52cf0e2a9e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11926', + 'x-ms-correlation-request-id', + 'f44daa41-098f-439b-8b37-a3de233a0068', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073606Z:f44daa41-098f-439b-8b37-a3de233a0068', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:05 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14928,Microsoft.Compute/GetOperation30Min;29928', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '85bce770-f30f-440c-8752-0900ddc6be35', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11925', + 'x-ms-correlation-request-id', + '2ada387e-e8af-4f8b-b432-b28d752d8b2a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073606Z:2ada387e-e8af-4f8b-b432-b28d752d8b2a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:05 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14927,Microsoft.Compute/GetOperation30Min;29927', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ae3e0451-f7e6-4bac-a056-e09254d8e9cb', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11924', + 'x-ms-correlation-request-id', + 'f8cafe01-94aa-4b86-ac9c-badf851200f3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073606Z:f8cafe01-94aa-4b86-ac9c-badf851200f3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:06 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14926,Microsoft.Compute/GetOperation30Min;29926', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'caab010e-c35b-40a5-9dfa-4520494091cb', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11923', + 'x-ms-correlation-request-id', + '7c4d4cae-6342-4682-a3d0-c76005aaadf8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073607Z:7c4d4cae-6342-4682-a3d0-c76005aaadf8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:06 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14925,Microsoft.Compute/GetOperation30Min;29925', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'efd4d857-9bc8-473b-a2fa-741c2ed3b917', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11922', + 'x-ms-correlation-request-id', + '10dbad11-e035-4913-a34f-d1c47e356512', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073607Z:10dbad11-e035-4913-a34f-d1c47e356512', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:06 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14924,Microsoft.Compute/GetOperation30Min;29924', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c57319a9-80ba-44f9-828f-35fa4d7488b8', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11921', + 'x-ms-correlation-request-id', + 'a61d70d5-47a1-44e4-9103-887aee000b70', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073607Z:a61d70d5-47a1-44e4-9103-887aee000b70', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:07 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14923,Microsoft.Compute/GetOperation30Min;29923', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '90e9de4e-7147-4af1-b55f-e9490f0873d9', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11920', + 'x-ms-correlation-request-id', + '28a587c1-8a50-458b-a14d-0aa3ded57328', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073608Z:28a587c1-8a50-458b-a14d-0aa3ded57328', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:07 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14922,Microsoft.Compute/GetOperation30Min;29922', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b43bbf93-d471-4a6f-a539-5538eab9d894', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11919', + 'x-ms-correlation-request-id', + 'f790c67c-adbd-4d28-9e24-603e32782209', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073608Z:f790c67c-adbd-4d28-9e24-603e32782209', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:08 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14921,Microsoft.Compute/GetOperation30Min;29921', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '767c168a-a8f4-4e9f-9917-c678bf70adab', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11918', + 'x-ms-correlation-request-id', + 'a1bbea09-a8f2-4344-b2ee-932ba8272130', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073609Z:a1bbea09-a8f2-4344-b2ee-932ba8272130', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:08 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14920,Microsoft.Compute/GetOperation30Min;29920', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '90e702de-01fc-4724-b37b-eaf4421ba221', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11917', + 'x-ms-correlation-request-id', + '746566cd-c0c8-4b95-b046-c7df43db685e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073609Z:746566cd-c0c8-4b95-b046-c7df43db685e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:08 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14919,Microsoft.Compute/GetOperation30Min;29919', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd280a0c6-abf9-409b-9497-e4a1debd07f6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11916', + 'x-ms-correlation-request-id', + 'd84e3e8f-075d-45fa-8526-62a00cdad43b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073609Z:d84e3e8f-075d-45fa-8526-62a00cdad43b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:09 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14918,Microsoft.Compute/GetOperation30Min;29918', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '83bd8fa5-ec57-4121-96c4-fe14d0c9e2e4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11915', + 'x-ms-correlation-request-id', + '6a045ba9-3a20-40fd-8fbc-9f105837cf5e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073610Z:6a045ba9-3a20-40fd-8fbc-9f105837cf5e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:09 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14917,Microsoft.Compute/GetOperation30Min;29917', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8d0ae7c6-9c09-4dfc-a97d-d36d0bd64f31', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11914', + 'x-ms-correlation-request-id', + '99387d9b-fa8d-4e3e-8796-c5933aa96994', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073610Z:99387d9b-fa8d-4e3e-8796-c5933aa96994', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:09 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14916,Microsoft.Compute/GetOperation30Min;29916', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0495d632-4fdb-43b5-bb0f-1eed8ae1820e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11913', + 'x-ms-correlation-request-id', + '90fbec79-fc38-4293-b258-e4966c919c67', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073611Z:90fbec79-fc38-4293-b258-e4966c919c67', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:10 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14915,Microsoft.Compute/GetOperation30Min;29915', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ce16f561-20d2-4028-9646-22dc4e316606', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11912', + 'x-ms-correlation-request-id', + '2cc12508-0f2c-48c6-b521-110285e189bc', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073611Z:2cc12508-0f2c-48c6-b521-110285e189bc', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:10 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14914,Microsoft.Compute/GetOperation30Min;29914', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8304567d-5840-4bd2-8368-36bf1d35f61b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11911', + 'x-ms-correlation-request-id', + '582d3d4f-f8aa-4ef2-bc16-644c4e9f36a5', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073611Z:582d3d4f-f8aa-4ef2-bc16-644c4e9f36a5', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:11 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14913,Microsoft.Compute/GetOperation30Min;29913', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5021a033-aaba-423d-8804-bf2fbc08ead6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11910', + 'x-ms-correlation-request-id', + 'cebdf837-bfea-426b-8c9e-7d74b93d7c89', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073612Z:cebdf837-bfea-426b-8c9e-7d74b93d7c89', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:11 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14912,Microsoft.Compute/GetOperation30Min;29912', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '77aafb1a-2531-4343-8033-b5c0a3edeeb6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11909', + 'x-ms-correlation-request-id', + 'd07dbe17-a614-4aef-89f1-07474a72479e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073612Z:d07dbe17-a614-4aef-89f1-07474a72479e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:11 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14911,Microsoft.Compute/GetOperation30Min;29911', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ddde0aca-9320-413a-8df0-0c1d54f7cdb1', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11908', + 'x-ms-correlation-request-id', + 'caeda506-389d-4297-99e8-547fd1318af6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073612Z:caeda506-389d-4297-99e8-547fd1318af6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:12 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14910,Microsoft.Compute/GetOperation30Min;29910', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '946352b5-8d51-4152-855c-a4a465abc887', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11907', + 'x-ms-correlation-request-id', + '1c0e652f-6cad-443c-9e82-7f28cd854b65', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073613Z:1c0e652f-6cad-443c-9e82-7f28cd854b65', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:12 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14909,Microsoft.Compute/GetOperation30Min;29909', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1d8c3de9-bbd9-475e-b2d9-8ff64ab4bf12', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11906', + 'x-ms-correlation-request-id', + '7fbf2b33-767c-4e43-888b-417bb35653d9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073613Z:7fbf2b33-767c-4e43-888b-417bb35653d9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:12 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14908,Microsoft.Compute/GetOperation30Min;29908', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7dc2025c-329e-4d37-a24d-6d2ed76788b5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11905', + 'x-ms-correlation-request-id', + '5c7a7c86-96aa-41e9-a41d-94d6cb97c486', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073614Z:5c7a7c86-96aa-41e9-a41d-94d6cb97c486', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:13 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14907,Microsoft.Compute/GetOperation30Min;29907', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '626fb884-b589-4893-a3e8-3c0bea205c20', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11904', + 'x-ms-correlation-request-id', + '44aa2609-e98c-4b8e-8ffe-29fe22770b88', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073614Z:44aa2609-e98c-4b8e-8ffe-29fe22770b88', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:13 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14906,Microsoft.Compute/GetOperation30Min;29906', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '160a83b3-9d22-4709-b1b9-d7dd2c7acaf1', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11903', + 'x-ms-correlation-request-id', + '5a1cd0d0-4680-4139-84b0-eea8adb0ca70', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073614Z:5a1cd0d0-4680-4139-84b0-eea8adb0ca70', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:14 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14905,Microsoft.Compute/GetOperation30Min;29905', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'fa6d1d39-9d67-4e1b-af27-37e6df13a8a5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11902', + 'x-ms-correlation-request-id', + 'fd84fcc8-5ec2-4a32-a5f5-f38c7494e979', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073615Z:fd84fcc8-5ec2-4a32-a5f5-f38c7494e979', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:14 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14904,Microsoft.Compute/GetOperation30Min;29904', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'bda9281c-ad15-4fa3-94a7-c4887cd422a5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11901', + 'x-ms-correlation-request-id', + '81c2b771-e537-45b3-a823-95c3b1c896ab', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073615Z:81c2b771-e537-45b3-a823-95c3b1c896ab', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:14 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14903,Microsoft.Compute/GetOperation30Min;29903', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ca497f8b-6cc3-4630-85ad-d0a1124e3e7f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11900', + 'x-ms-correlation-request-id', + '2b7c7e9f-9b8a-4439-acb2-d5545f19ca48', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073616Z:2b7c7e9f-9b8a-4439-acb2-d5545f19ca48', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:15 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14902,Microsoft.Compute/GetOperation30Min;29902', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2de0f277-7d52-4082-b198-24e4bc4dae50', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11899', + 'x-ms-correlation-request-id', + 'bd2e8ec5-67c4-48be-a3f1-7fe21807e787', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073616Z:bd2e8ec5-67c4-48be-a3f1-7fe21807e787', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:15 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14901,Microsoft.Compute/GetOperation30Min;29901', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'e491eb5a-ea92-4657-9f80-73fdd816fa93', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11898', + 'x-ms-correlation-request-id', + 'e81998bd-ac6d-489b-a608-4391c7e657b9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073616Z:e81998bd-ac6d-489b-a608-4391c7e657b9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:15 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14900,Microsoft.Compute/GetOperation30Min;29900', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2c5a0d41-4ba5-46c7-bb6d-c65008078f06', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11897', + 'x-ms-correlation-request-id', + '5e0abe1b-3f5a-4b1d-83f6-56913fc75043', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073617Z:5e0abe1b-3f5a-4b1d-83f6-56913fc75043', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:16 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14899,Microsoft.Compute/GetOperation30Min;29899', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '11534159-5f8e-42ef-a329-c924c08c671d', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11896', + 'x-ms-correlation-request-id', + '1a6e76cc-fa14-4cc3-8a8b-c44bb86bd951', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073617Z:1a6e76cc-fa14-4cc3-8a8b-c44bb86bd951', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:16 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14898,Microsoft.Compute/GetOperation30Min;29898', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd9d3427c-9caf-4435-bf3c-6299f9a30abf', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11895', + 'x-ms-correlation-request-id', + '2ee1ced0-0c0b-40ba-a192-d31f2fe35c40', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073617Z:2ee1ced0-0c0b-40ba-a192-d31f2fe35c40', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:17 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14897,Microsoft.Compute/GetOperation30Min;29897', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd80f306c-e424-459c-a279-cac46e8c65af', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11894', + 'x-ms-correlation-request-id', + 'd485c11e-b9b8-45d1-a1f1-37db8404944e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073618Z:d485c11e-b9b8-45d1-a1f1-37db8404944e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:17 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14896,Microsoft.Compute/GetOperation30Min;29896', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '320b0c0c-cbde-4031-a539-71b9a3aabe9d', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11893', + 'x-ms-correlation-request-id', + 'a1c5ae39-df2c-4b80-9994-d1094b63e1cd', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073618Z:a1c5ae39-df2c-4b80-9994-d1094b63e1cd', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:17 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14895,Microsoft.Compute/GetOperation30Min;29895', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c5641486-6a85-40a8-b598-9baa93566884', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11892', + 'x-ms-correlation-request-id', + '4cbf1407-2502-4d71-91c7-5e0bec4e8e41', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073618Z:4cbf1407-2502-4d71-91c7-5e0bec4e8e41', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:18 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14894,Microsoft.Compute/GetOperation30Min;29894', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dca51f4b-f6bf-409d-9df5-add3f923180c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11891', + 'x-ms-correlation-request-id', + '5c82a8b7-f026-4fc7-96d8-3c9510747172', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073619Z:5c82a8b7-f026-4fc7-96d8-3c9510747172', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:18 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14893,Microsoft.Compute/GetOperation30Min;29893', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a5e84c3e-dd26-440f-8982-18201b44424b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11890', + 'x-ms-correlation-request-id', + '62af2a14-9a7e-42c3-8e59-e6f327dffb25', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073619Z:62af2a14-9a7e-42c3-8e59-e6f327dffb25', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:18 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14892,Microsoft.Compute/GetOperation30Min;29892', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a3831076-f701-40a3-8324-2c6875265008', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11889', + 'x-ms-correlation-request-id', + '99d6ffb0-f1ec-4dea-9335-41745680996e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073620Z:99d6ffb0-f1ec-4dea-9335-41745680996e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14891,Microsoft.Compute/GetOperation30Min;29891', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'e4bf2dd7-1f2a-4008-94ee-5b85af1bace5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11888', + 'x-ms-correlation-request-id', + 'f82e40f8-2a8a-4db7-acbb-37407b8a9e53', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073620Z:f82e40f8-2a8a-4db7-acbb-37407b8a9e53', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14890,Microsoft.Compute/GetOperation30Min;29890', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '3a2e855a-6e62-48ea-af78-357995aa20bd', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11887', + 'x-ms-correlation-request-id', + '1c646dea-e40f-442c-baff-aabc174e56ff', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073620Z:1c646dea-e40f-442c-baff-aabc174e56ff', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14889,Microsoft.Compute/GetOperation30Min;29889', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5fbb8b8d-3424-49e0-b724-0c0c68f341a5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11886', + 'x-ms-correlation-request-id', + '69a6147f-8cb0-4ca9-a40e-e5804cf13f4a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073621Z:69a6147f-8cb0-4ca9-a40e-e5804cf13f4a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14888,Microsoft.Compute/GetOperation30Min;29888', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'cf379653-c50f-4538-a063-c1f59197a27f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11885', + 'x-ms-correlation-request-id', + 'eba1a6a0-4389-4ec4-bda2-2df91acaeace', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073621Z:eba1a6a0-4389-4ec4-bda2-2df91acaeace', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14887,Microsoft.Compute/GetOperation30Min;29887', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7090a25e-29ab-4fc2-85dd-5e01b11e1784', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11884', + 'x-ms-correlation-request-id', + '31ddd166-0bf3-45a0-a7ec-dd05e463a2e8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073622Z:31ddd166-0bf3-45a0-a7ec-dd05e463a2e8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14886,Microsoft.Compute/GetOperation30Min;29886', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4308d695-987d-4dd8-8ef4-7318754fee7a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11883', + 'x-ms-correlation-request-id', + '32427994-fe83-41c3-8c06-242b1a024d07', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073622Z:32427994-fe83-41c3-8c06-242b1a024d07', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14885,Microsoft.Compute/GetOperation30Min;29885', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ab432689-777d-4349-bb57-ab8adb975791', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11882', + 'x-ms-correlation-request-id', + '5a2db4ab-7120-4426-8b3f-bfd3972b05be', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073622Z:5a2db4ab-7120-4426-8b3f-bfd3972b05be', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14884,Microsoft.Compute/GetOperation30Min;29884', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd2a7558e-456e-4bbf-a4c6-2d98b04f74e0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11881', + 'x-ms-correlation-request-id', + '3343d7e8-b0f5-43c8-b479-13e140ee53a1', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073623Z:3343d7e8-b0f5-43c8-b479-13e140ee53a1', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:22 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14883,Microsoft.Compute/GetOperation30Min;29883', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'de164321-1292-4a5d-a164-4a731cd471b7', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11880', + 'x-ms-correlation-request-id', + '800d2835-e2d6-4a8d-98b7-fa9c8fd444a0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073623Z:800d2835-e2d6-4a8d-98b7-fa9c8fd444a0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:22 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14882,Microsoft.Compute/GetOperation30Min;29882', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c75758e2-a4e8-4e50-ac55-e8ece0e9584d', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11879', + 'x-ms-correlation-request-id', + '4acccb7b-db08-4427-a971-bb4b22e36f03', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073623Z:4acccb7b-db08-4427-a971-bb4b22e36f03', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:23 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14881,Microsoft.Compute/GetOperation30Min;29881', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '43df54be-89df-48ee-8695-1d576662d720', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11878', + 'x-ms-correlation-request-id', + 'd2e1f4c7-7c52-4aad-a1c5-453a2ec5c2bb', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073624Z:d2e1f4c7-7c52-4aad-a1c5-453a2ec5c2bb', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:23 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14880,Microsoft.Compute/GetOperation30Min;29880', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7fc40507-61e2-4bf7-a271-2054dbd00fd6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11877', + 'x-ms-correlation-request-id', + 'a597f2dd-5041-43d4-bde1-28d246531165', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073624Z:a597f2dd-5041-43d4-bde1-28d246531165', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:23 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14879,Microsoft.Compute/GetOperation30Min;29879', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dd101c73-c86f-4e92-a902-593e805c4648', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11876', + 'x-ms-correlation-request-id', + '27a8b31d-3cf9-497f-a496-67b234c7398c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073625Z:27a8b31d-3cf9-497f-a496-67b234c7398c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:24 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14878,Microsoft.Compute/GetOperation30Min;29878', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1703987a-3aa1-4edc-8922-c858714e8845', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11875', + 'x-ms-correlation-request-id', + '38cf6fae-e367-4e29-9795-d9b115afa264', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073625Z:38cf6fae-e367-4e29-9795-d9b115afa264', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:24 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14877,Microsoft.Compute/GetOperation30Min;29877', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '3ef8d529-96ad-4b6a-9fd1-c830b0a625c1', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11874', + 'x-ms-correlation-request-id', + 'e9d54402-07dc-4243-86da-043cacf60a89', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073626Z:e9d54402-07dc-4243-86da-043cacf60a89', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:25 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14876,Microsoft.Compute/GetOperation30Min;29876', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f642bac7-745a-4c3d-8f35-cf85e28a107d', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11873', + 'x-ms-correlation-request-id', + 'e10747fd-518c-43cd-a4fd-896055bef415', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073626Z:e10747fd-518c-43cd-a4fd-896055bef415', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:26 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14875,Microsoft.Compute/GetOperation30Min;29875', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2159b405-ba22-48bc-8354-1e5607b62f8a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11872', + 'x-ms-correlation-request-id', + '5455f24b-89d3-44b3-bd74-e6fc243a2402', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073627Z:5455f24b-89d3-44b3-bd74-e6fc243a2402', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:26 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14874,Microsoft.Compute/GetOperation30Min;29874', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5f20a0a1-5981-4241-b23f-f2c1f62d63f9', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11871', + 'x-ms-correlation-request-id', + '2b4ef21d-fb6f-4902-8ae5-ed24be187471', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073627Z:2b4ef21d-fb6f-4902-8ae5-ed24be187471', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:26 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14873,Microsoft.Compute/GetOperation30Min;29873', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '062e5291-5588-4775-a677-f139d839d187', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11870', + 'x-ms-correlation-request-id', + '75a63e97-3d6a-4417-9fa8-261fb6b1184d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073628Z:75a63e97-3d6a-4417-9fa8-261fb6b1184d', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:27 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14872,Microsoft.Compute/GetOperation30Min;29872', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7ca05276-56a8-4c5a-a13d-56161c367dd6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11869', + 'x-ms-correlation-request-id', + '1aa64b24-8b26-4948-9777-eb43cddf455a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073628Z:1aa64b24-8b26-4948-9777-eb43cddf455a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:27 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14871,Microsoft.Compute/GetOperation30Min;29871', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7879a151-8dcf-4b53-82ec-d7e85efe3267', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11868', + 'x-ms-correlation-request-id', + 'b784175e-d1b2-463e-971b-91c3e97db13c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073628Z:b784175e-d1b2-463e-971b-91c3e97db13c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:27 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14870,Microsoft.Compute/GetOperation30Min;29870', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '067cbc9d-30f7-485e-9920-21431a4d3b6b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11867', + 'x-ms-correlation-request-id', + '5914f799-1ec7-4fab-9af5-d21afbb73164', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073629Z:5914f799-1ec7-4fab-9af5-d21afbb73164', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:28 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14869,Microsoft.Compute/GetOperation30Min;29869', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '816db47c-0d91-4f43-b241-5846b6f08806', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11866', + 'x-ms-correlation-request-id', + '6cb7b405-0252-4fa1-bef1-8aac3106d5b4', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073629Z:6cb7b405-0252-4fa1-bef1-8aac3106d5b4', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:28 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14868,Microsoft.Compute/GetOperation30Min;29868', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'e36d1c19-e379-4f32-9f0b-6026e760691e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11865', + 'x-ms-correlation-request-id', + 'e0e5a337-7854-476c-a8bc-71c08001fc04', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073629Z:e0e5a337-7854-476c-a8bc-71c08001fc04', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:29 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14867,Microsoft.Compute/GetOperation30Min;29867', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '00f043e8-342f-4574-af5a-96b0e4610af6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11864', + 'x-ms-correlation-request-id', + '9ea84045-a38f-4eca-83c3-de9d1448ce2d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073630Z:9ea84045-a38f-4eca-83c3-de9d1448ce2d', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:29 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14866,Microsoft.Compute/GetOperation30Min;29866', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dcc95eda-bc71-4caf-92f9-867612c79a16', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11863', + 'x-ms-correlation-request-id', + '93934686-cc15-46a6-9ccb-fcee667fa920', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073630Z:93934686-cc15-46a6-9ccb-fcee667fa920', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:29 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14865,Microsoft.Compute/GetOperation30Min;29865', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2e5568f7-b1ca-41d6-8af8-694dc0f501e2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11862', + 'x-ms-correlation-request-id', + '346837b8-a30c-476d-b637-5a8ab16ccd11', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073630Z:346837b8-a30c-476d-b637-5a8ab16ccd11', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:30 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14864,Microsoft.Compute/GetOperation30Min;29864', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f5236231-7dc1-4f6a-8f04-2208194c886c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11861', + 'x-ms-correlation-request-id', + '5f934c69-c771-4a44-8897-9e0b0d415527', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073631Z:5f934c69-c771-4a44-8897-9e0b0d415527', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:30 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14863,Microsoft.Compute/GetOperation30Min;29863', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '124a8f4d-eefd-4c32-8456-741201d56604', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11860', + 'x-ms-correlation-request-id', + '589db7b2-8fd4-481b-852b-79ca5df16e75', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073631Z:589db7b2-8fd4-481b-852b-79ca5df16e75', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:30 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14862,Microsoft.Compute/GetOperation30Min;29862', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5ca4185d-fa6b-497f-bf39-523d13b63a15', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11859', + 'x-ms-correlation-request-id', + 'deaec1cf-a667-434b-91c4-b1eb3854fe66', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073632Z:deaec1cf-a667-434b-91c4-b1eb3854fe66', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:31 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14861,Microsoft.Compute/GetOperation30Min;29861', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4ff5b86f-f600-44dc-8a71-8d198c2e6a35', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11858', + 'x-ms-correlation-request-id', + '0afe6a1e-5e94-4ccd-a77a-6ccdbfa7dc0c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073632Z:0afe6a1e-5e94-4ccd-a77a-6ccdbfa7dc0c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:31 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14860,Microsoft.Compute/GetOperation30Min;29860', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4ac5ceac-1ea4-440f-9ad3-3fa55346165a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11857', + 'x-ms-correlation-request-id', + '54586708-8275-4a73-985c-95e7e7b23e28', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073632Z:54586708-8275-4a73-985c-95e7e7b23e28', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:31 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14859,Microsoft.Compute/GetOperation30Min;29859', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '097cf4e2-5475-4c68-8772-49f0c607eed5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11856', + 'x-ms-correlation-request-id', + 'ed372cff-52fa-44dc-878a-88f54399084b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073633Z:ed372cff-52fa-44dc-878a-88f54399084b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:32 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14858,Microsoft.Compute/GetOperation30Min;29858', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '86f7f94b-9220-4161-b3ea-ebee80ca395b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11855', + 'x-ms-correlation-request-id', + 'f8af4fbd-969f-4571-8358-6fb471fa1034', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073633Z:f8af4fbd-969f-4571-8358-6fb471fa1034', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:32 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14857,Microsoft.Compute/GetOperation30Min;29857', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ca857178-a31e-4ed6-af13-2e9dfaaba54a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11854', + 'x-ms-correlation-request-id', + '7909f36d-59d5-48ac-baf4-bb31aceb38ac', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073633Z:7909f36d-59d5-48ac-baf4-bb31aceb38ac', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:33 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14856,Microsoft.Compute/GetOperation30Min;29856', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'cee2f352-e375-4c10-b235-6da6179741ff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11853', + 'x-ms-correlation-request-id', + 'a0800de2-c37e-4987-a0ed-dd0c93ff0fc5', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073634Z:a0800de2-c37e-4987-a0ed-dd0c93ff0fc5', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:33 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14855,Microsoft.Compute/GetOperation30Min;29855', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b70e1271-78bf-4479-a25d-ccd109863749', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11852', + 'x-ms-correlation-request-id', + 'db83f2d7-e8be-431a-bbb8-e06a354c676c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073634Z:db83f2d7-e8be-431a-bbb8-e06a354c676c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:33 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14854,Microsoft.Compute/GetOperation30Min;29854', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '611a954e-bde7-4f64-9942-ef97a196fdd4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11851', + 'x-ms-correlation-request-id', + '7301f063-77dc-45db-a6a0-ac31a6a142bc', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073635Z:7301f063-77dc-45db-a6a0-ac31a6a142bc', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:34 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14853,Microsoft.Compute/GetOperation30Min;29853', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c290896f-82e2-48f8-b786-8fc67fe2f7a5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11850', + 'x-ms-correlation-request-id', + '8b0a3e58-86ee-488d-8863-0aa6bef129c9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073635Z:8b0a3e58-86ee-488d-8863-0aa6bef129c9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:34 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14852,Microsoft.Compute/GetOperation30Min;29852', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2339c7da-b638-4fd1-a309-6e19e28487c8', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11849', + 'x-ms-correlation-request-id', + 'a1f019b3-93be-4100-be10-967d1cf7c2ab', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073635Z:a1f019b3-93be-4100-be10-967d1cf7c2ab', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:34 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14851,Microsoft.Compute/GetOperation30Min;29851', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a324ea02-db08-464c-919e-4069feb01fe6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11848', + 'x-ms-correlation-request-id', + '04997602-c398-478f-9732-329aeef54231', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073636Z:04997602-c398-478f-9732-329aeef54231', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14850,Microsoft.Compute/GetOperation30Min;29850', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '427984d0-2e2e-4aa9-9399-aeb440ba00da', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11847', + 'x-ms-correlation-request-id', + '6c2b643c-8839-4c99-aeb5-3eec1c395b73', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073636Z:6c2b643c-8839-4c99-aeb5-3eec1c395b73', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14849,Microsoft.Compute/GetOperation30Min;29849', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5fb8d537-15ad-4213-91a4-2bf4517eae66', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11846', + 'x-ms-correlation-request-id', + '82598cad-1275-4ee0-821a-b3fc003d78c0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073636Z:82598cad-1275-4ee0-821a-b3fc003d78c0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:36 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14848,Microsoft.Compute/GetOperation30Min;29848', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4d05645d-9e7a-48c0-8343-d9ddb181a48b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11845', + 'x-ms-correlation-request-id', + '9223631a-87af-4c19-a400-a7cd358da7c1', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073637Z:9223631a-87af-4c19-a400-a7cd358da7c1', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14847,Microsoft.Compute/GetOperation30Min;29847', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ea1e7cf4-dec6-4e25-903f-24c724fd880b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11844', + 'x-ms-correlation-request-id', + '0cbade33-2a2f-46d9-bab5-a494e645489c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073638Z:0cbade33-2a2f-46d9-bab5-a494e645489c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14846,Microsoft.Compute/GetOperation30Min;29846', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a5a806e5-3fa3-45d3-8bd7-8f987323646f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11843', + 'x-ms-correlation-request-id', + '5d2e0176-3ae8-4f9f-82d1-bdd50e9518c7', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073638Z:5d2e0176-3ae8-4f9f-82d1-bdd50e9518c7', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14845,Microsoft.Compute/GetOperation30Min;29845', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '3467c7f2-8708-4f1f-9a38-1986eebf7c47', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11842', + 'x-ms-correlation-request-id', + '199b85d3-05de-46ef-9288-2e8765a1d924', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073639Z:199b85d3-05de-46ef-9288-2e8765a1d924', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:38 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14844,Microsoft.Compute/GetOperation30Min;29844', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c3e8cb2c-b0b2-4645-9430-7f192d14ef65', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11841', + 'x-ms-correlation-request-id', + 'd66fbc16-0e38-42c1-8424-bbd167b8adf3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073639Z:d66fbc16-0e38-42c1-8424-bbd167b8adf3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:38 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14843,Microsoft.Compute/GetOperation30Min;29843', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '13a81ee3-0d7a-4788-9aac-205481bb533f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11840', + 'x-ms-correlation-request-id', + 'c15e8374-0923-47d6-ad24-cc035792ee5f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073639Z:c15e8374-0923-47d6-ad24-cc035792ee5f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:39 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14842,Microsoft.Compute/GetOperation30Min;29842', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c59ab29f-8dab-4c94-8ded-b79f2f70bb22', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11839', + 'x-ms-correlation-request-id', + '570b33e8-537b-477f-a175-81d6f07ebab0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073640Z:570b33e8-537b-477f-a175-81d6f07ebab0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:39 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14841,Microsoft.Compute/GetOperation30Min;29841', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9ba6a68b-bf78-4a9d-9662-c4e702e55d44', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11838', + 'x-ms-correlation-request-id', + '7dca110d-985b-45d7-b840-4d9ffc701169', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073640Z:7dca110d-985b-45d7-b840-4d9ffc701169', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:39 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14840,Microsoft.Compute/GetOperation30Min;29840', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ae6d34d4-73f5-4ad9-8fc0-741f843d3913', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11837', + 'x-ms-correlation-request-id', + '4f96018d-98f6-40e5-a3c3-ce083e99b783', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073641Z:4f96018d-98f6-40e5-a3c3-ce083e99b783', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:40 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14839,Microsoft.Compute/GetOperation30Min;29839', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd3387754-ce90-4d09-aaa6-00bac40172ea', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11836', + 'x-ms-correlation-request-id', + 'dcb43607-a232-4fdd-8ffc-09c84e662ae6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073641Z:dcb43607-a232-4fdd-8ffc-09c84e662ae6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:40 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14838,Microsoft.Compute/GetOperation30Min;29838', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'aefe5342-cfd0-4477-ba3a-ebec534101af', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11835', + 'x-ms-correlation-request-id', + 'fc10b8db-c46e-47d8-86be-97851a9ab1fe', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073642Z:fc10b8db-c46e-47d8-86be-97851a9ab1fe', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:41 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14837,Microsoft.Compute/GetOperation30Min;29837', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '3097844f-0438-4348-b477-562e813a4839', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11834', + 'x-ms-correlation-request-id', + '6ab845e4-0bf0-48aa-8ee1-741356322a17', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073642Z:6ab845e4-0bf0-48aa-8ee1-741356322a17', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:41 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14836,Microsoft.Compute/GetOperation30Min;29836', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2dd39fd1-9df4-420b-9fd6-445984850fe6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11833', + 'x-ms-correlation-request-id', + '0d7aef15-922b-4e30-b217-011906d377fc', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073642Z:0d7aef15-922b-4e30-b217-011906d377fc', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:41 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14835,Microsoft.Compute/GetOperation30Min;29835', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '65ccd36e-e767-49a4-805c-c16401e3aa93', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11832', + 'x-ms-correlation-request-id', + '86e2e7da-2800-4f00-870e-3c90ba8d4f37', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073643Z:86e2e7da-2800-4f00-870e-3c90ba8d4f37', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:42 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14834,Microsoft.Compute/GetOperation30Min;29834', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '731a6e8a-37dc-4dfa-848b-66fecc84a89e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11831', + 'x-ms-correlation-request-id', + '218a6300-e8cd-4845-a712-066cc20a7e33', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073643Z:218a6300-e8cd-4845-a712-066cc20a7e33', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:42 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14833,Microsoft.Compute/GetOperation30Min;29833', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4bd0e6fb-3cb1-4d2a-9ec1-82a48c08c8c1', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11830', + 'x-ms-correlation-request-id', + '86f97d88-de80-4c00-84d0-0a5303ddd95b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073643Z:86f97d88-de80-4c00-84d0-0a5303ddd95b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:43 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14832,Microsoft.Compute/GetOperation30Min;29832', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '92d093a9-8876-4968-bf68-f5d65464d4db', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11829', + 'x-ms-correlation-request-id', + '172a37be-3e92-418f-8a85-7e006de74c06', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073644Z:172a37be-3e92-418f-8a85-7e006de74c06', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:43 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14831,Microsoft.Compute/GetOperation30Min;29831', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9da47008-d37c-41fe-9d28-deb5c6c6bb2c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11828', + 'x-ms-correlation-request-id', + '3db381fa-0804-4581-8eb8-ec10bbfe7d8c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073644Z:3db381fa-0804-4581-8eb8-ec10bbfe7d8c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:43 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14830,Microsoft.Compute/GetOperation30Min;29830', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '67eb345d-bb97-4989-a86b-7df546c09ee9', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11827', + 'x-ms-correlation-request-id', + 'f344961c-1c73-4fb2-9748-a54e07184d08', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073645Z:f344961c-1c73-4fb2-9748-a54e07184d08', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:44 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14829,Microsoft.Compute/GetOperation30Min;29829', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7ff95b5f-0f00-4f21-9fa1-442d66841bff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11826', + 'x-ms-correlation-request-id', + '77004863-58ca-4fae-8f32-bbb2b277c328', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073645Z:77004863-58ca-4fae-8f32-bbb2b277c328', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:44 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14828,Microsoft.Compute/GetOperation30Min;29828', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b8e6ae21-88db-404e-9b4b-4c6b28224cdf', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11825', + 'x-ms-correlation-request-id', + '11a6c984-7a5f-41fc-9a11-c9ce38cc8c12', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073645Z:11a6c984-7a5f-41fc-9a11-c9ce38cc8c12', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:44 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14827,Microsoft.Compute/GetOperation30Min;29827', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1666d396-2605-4cc7-926a-f2aaf2662590', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11824', + 'x-ms-correlation-request-id', + '4296018d-23f4-4317-a3c8-988db4be70e4', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073646Z:4296018d-23f4-4317-a3c8-988db4be70e4', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:45 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14826,Microsoft.Compute/GetOperation30Min;29826', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2506b0c2-b2af-4d31-8abd-530248f625bc', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11823', + 'x-ms-correlation-request-id', + 'fd805dfc-73e0-42ff-b95a-9d36ab75f1d8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073646Z:fd805dfc-73e0-42ff-b95a-9d36ab75f1d8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:45 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14825,Microsoft.Compute/GetOperation30Min;29825', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '7aa1652c-bd93-4f7e-b7de-a3a7eb495bee', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11822', + 'x-ms-correlation-request-id', + '5d65ecff-9e3c-4516-874f-40c89c114a84', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073646Z:5d65ecff-9e3c-4516-874f-40c89c114a84', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:46 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14824,Microsoft.Compute/GetOperation30Min;29824', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dd898ccb-0bac-4b72-8e32-75fb6311637c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11821', + 'x-ms-correlation-request-id', + 'a69ecefa-116f-4596-bb3b-0d4afb05f2e7', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073647Z:a69ecefa-116f-4596-bb3b-0d4afb05f2e7', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:46 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14823,Microsoft.Compute/GetOperation30Min;29823', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'eacdbef5-bb70-43b7-bf7a-ac5beea70440', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11820', + 'x-ms-correlation-request-id', + 'fe0061dd-9de1-4167-8384-c03b667649ad', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073647Z:fe0061dd-9de1-4167-8384-c03b667649ad', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:46 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14822,Microsoft.Compute/GetOperation30Min;29822', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '93a980ff-409f-4325-b7f9-6882d3e998df', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11819', + 'x-ms-correlation-request-id', + 'b6f216f1-dbfc-419e-a0fc-790f349c886a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073648Z:b6f216f1-dbfc-419e-a0fc-790f349c886a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:47 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14821,Microsoft.Compute/GetOperation30Min;29821', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ed5e0a01-32b0-4244-b496-a2ddd7363070', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11818', + 'x-ms-correlation-request-id', + '297d28e5-2a1e-4fbc-93bb-5736023c9a7f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073648Z:297d28e5-2a1e-4fbc-93bb-5736023c9a7f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:47 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14820,Microsoft.Compute/GetOperation30Min;29820', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9d6948db-c901-403e-8ed2-e8b9bf5e2355', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11817', + 'x-ms-correlation-request-id', + '6b3b3170-f5dc-4ad9-8ffb-10cd39bb8d80', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073648Z:6b3b3170-f5dc-4ad9-8ffb-10cd39bb8d80', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:47 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14819,Microsoft.Compute/GetOperation30Min;29819', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1f89a5ef-a255-41ad-a69b-97444fe4b037', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11816', + 'x-ms-correlation-request-id', + '4f61c855-f124-4da0-934e-df29e8597c3c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073649Z:4f61c855-f124-4da0-934e-df29e8597c3c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:48 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968645e6ad70dde385bbeacab8b3a6f1afd6a9909a883fcd3f39d07d983ed4f3ffd74babd7fffe1eef664f6e9eef6de6cffe1fecedea793836cefa3df38f925","ff0f2a2cc0a986000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14818,Microsoft.Compute/GetOperation30Min;29818', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'e6e03edf-1a0f-4f76-a25d-bac19285914a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11815', + 'x-ms-correlation-request-id', + '1d7b116d-80da-446f-8b30-b72a36300ad0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073649Z:1d7b116d-80da-446f-8b30-b72a36300ad0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:48 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/8e6f07a7-666c-4591-bd61-2d494026b8a2') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f7ee3fbab7377eb8b37ff0f0d3879fecec3cdad9f968c42fe5cbd9c02b9f3eda7f38fef4c1cefefddd4f8357a89f76dde08dd7ebe934cf67f94cbf596602e920fff47ce741f660fbd34f3f9d6eefdf7fb8bb3d997dbabbbd37db7fb8bfb3f7e9e420dbfbe8374e7e","c9ff03e854545bb8000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14817,Microsoft.Compute/GetOperation30Min;29817', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ed00d5a9-78c9-489b-a4d7-1b9b4a19f3f2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11814', + 'x-ms-correlation-request-id', + 'fedd1913-658c-46e0-9a93-c86e71a8a026', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073649Z:fedd1913-658c-46e0-9a93-c86e71a8a026', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:48 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines/virtualmachinex') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e947cb6c917ff428fde8b2a8db75562eb2e9bc58e6ef3e1af1b7c50cdfdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e4faac56adde67715872f0487c6fcddc1a9bd5e31c637beafedcb6a9a0171bc93674dbb365fb4d945431f321de8cfec074d3e5d65d3b7f4d947cb6a4998cea4257db92ab3f6bcaa174ddeb6c5f2a219cfaba6fdfdf32575592d17f9b21d37797d594cf3b169f9fb57ab369f15cbdf9ffef8fdebaa6aa779dda2bf8fda7a9d7f04b8bf84a17f441dade8bb823076d85c2ece98f65976be33cd3eddd99e3c98dedfde3fbf3fdb7e783efb747b277f904d1f7cfae9c1fd7d87e53cab6757599dbfacabf3a20495141c7d77b9785dfc001f7df4bacd96336af9fb3fddfbfd2ff71813830bb56bdaaace2ea2208a057df12a3fcfeb7c390dbea22f57eb495934f3bca6cfdddc7cb758ceaaabe6351187bed13ef07c549d131cb41d6ed2bc5da3c1deceeea7db4fb3369b129d3b4de89546e796e84e0c167c9bbfcba6ed4fba26bbfbf71ede1bef3fd8d91fefedeeeeec7c4aff7eaa047024a017abe669d18011fc1156cd1b653d4539e8cb08d2e2fa27bfa89a195ef7bf9ed639e1f7258b109a3dababc519e819b662d6bd4083577936fb6e5db4618345b6a477667dece83b9db9e3e9b45a2f5b83ab9dede7af5efba0e8851fae748324686ac9e370719427ac667999fb947a9ad3cccf7dd43fc2ebe0e6cf9f5083ddbd07e62b07e7a319f10ba80499fa9ef934ed50ac5ca3871dfb161e3b9124dad02646fbfcfee874eff7bff77092edefec4e1f4ef2fbfbf73fbd974df7f63e7db897ef9c4f1eeeec1f4c7c3c095877da4f17abf6badb867be0497f512d83f9a66f37cc387dfbbe734eaffc5cccfad7a4a58fb99b5b3cb7e01234a26e1c9fececdd0bbf6eab27b9bc978326e759d9e4ae81df614076659b5def7bfa7013dbdcfbfd67b39d7b7bf7688cbbd3ddfddd4f771f9eef9e3f9c3e7c48aae8fcd36976d041fc476c4378c7d9e616b4f431f7679146f143601bf3ebf7e5178300998f984d9dca80eb17ca3ed08f0e9d8fb2d9a2587e45be85612f506e4d7f7b6daec41a9d54cbf3e2625d1b67c7f6414d98d4b0823ff9c5f1055951fa1a5e8885414df2653629f3e3755b2d08c2f4ab156950f648ba0d57593b9dbf563f88bef7fa31df7e51cd18590bedc9f5971d8efa286b9abc69e03a99d66c0e9fe6e7d9ba6cbd39b4043594a497c953ab73f6a6bef77df7695696d5d5e9bb365f62a85f9253457d139b52b360101fd5f92f5a1775fef99a88499322a4795d5c2cb352db4a53d3e347cbbcbdaaeab7d4d64ca0f9e80c2ec939b926d4cbf77e314bc9cfba90bc90aeeff650b85b985fc959c6a41309c4affcc5f417b96ff5f5478f30bc5ff24bbe6fc746cd8400349fa401c8e1a0b978bd9e4ef37c460c8e563405bf","e4ff01bbdeb9622f0c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '136b06ec-98b8-4e48-b68e-d1a914492f4c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11813', + 'x-ms-correlation-request-id', + '16086a42-8ca7-486b-ad3a-11180d2e5307', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073650Z:16086a42-8ca7-486b-ad3a-11180d2e5307', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:49 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_delete_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_delete_test.js new file mode 100644 index 000000000000..78b0d2225f99 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_delete_test.js @@ -0,0 +1,4835 @@ +let nock = require('nock'); + +module.exports.hash = "698559afd6f1d6e924d603b690cc642f"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'ea3e9b90-f5ac-4be3-85d3-ff02810e1200', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Al_ouLFpmLhNtyKu-E81AUU; expires=Wed, 17-Nov-2021 07:36:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevreLdVJoLcD5imOUizVgyMoFujn0lOv-Havu1f-WzbevT7XOub1UfsE1b5JH04jFqAa0h5C-J8GDY6uHvkf3px4grFNKATqIK5ProSF4i5hsMea5y7EJSKw1Y98qz8N3NYinwyY7B3BtmAck3IMSH_kKH7Mn03s_RZhbFWxP1aGpggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:54 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b63020800', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Ar5Ws7QyhNxBtbr7cqEg3h0; expires=Wed, 17-Nov-2021 07:36:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrD2QXDHyH7ew1w-Xz5qhTLJeLj5tPPfKEInilcDa3DfVz5PYJZIGeDOZ2xPA6BsVEBthQdPiMhFhbwNsD9LfqwxA9S_sGbzFLNtcPVkNxZuAm4mf3_1n7HIj6WurjGU84dnge17W74PxTzkplnikbKdZDMbcdnj_bIKjxx6RjKGogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36: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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=679e1a02-d037-4637-9b29-19e22f8ebc4c&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'cdee7f40-c5db-41db-bba8-8a2872701100', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Ag09WvRijElHqV_caM9phEsWPr5BAQAAABcb_9gOAAAA; expires=Wed, 17-Nov-2021 07:36:55 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:54 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines/virtualmachinex') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a?p=f8cfeb74-5cf7-40e0-89b1-3d95a1060fe7&monitor=true&api-version=2021-07-01', + 'Retry-After', + '10', + 'Azure-AsyncOperation', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a?p=f8cfeb74-5cf7-40e0-89b1-3d95a1060fe7&api-version=2021-07-01', + 'Azure-AsyncNotification', + 'Enabled', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1198', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd3d22e25-7ae0-46ed-9ad5-1fa48014653a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-deletes', + '14998', + 'x-ms-correlation-request-id', + 'b98acd80-86e4-4630-a05f-31476cfda751', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073656Z:b98acd80-86e4-4630-a05f-31476cfda751', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Retry-After', + '30', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14815,Microsoft.Compute/GetOperation30Min;29815', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dee1e0c1-0027-49ba-9a50-49db126170ce', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11809', + 'x-ms-correlation-request-id', + '30f6a2c1-0196-4661-8010-42921a24f3ed', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073656Z:30f6a2c1-0196-4661-8010-42921a24f3ed', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:55 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14814,Microsoft.Compute/GetOperation30Min;29814', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '974bfe64-3a34-4ec5-82d1-dec6b68504cd', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11808', + 'x-ms-correlation-request-id', + 'ad98e4eb-8fd2-46cc-b22f-1923f3986450', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073657Z:ad98e4eb-8fd2-46cc-b22f-1923f3986450', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:56 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14813,Microsoft.Compute/GetOperation30Min;29813', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '76995ba2-b376-4d4e-9f4f-abd0f69b8ce7', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11807', + 'x-ms-correlation-request-id', + 'c7319bbf-18f0-4646-9bb2-72224f6eaa4a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073657Z:c7319bbf-18f0-4646-9bb2-72224f6eaa4a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:56 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14812,Microsoft.Compute/GetOperation30Min;29812', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a13538d6-afa1-4ae6-9ecc-681ef6ae7a44', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11806', + 'x-ms-correlation-request-id', + '9afa2445-c629-425f-b15b-ed5168375b59', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073657Z:9afa2445-c629-425f-b15b-ed5168375b59', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:56 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14811,Microsoft.Compute/GetOperation30Min;29811', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a925d7eb-c44a-47cc-87fb-0a15ad30674b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11805', + 'x-ms-correlation-request-id', + '41e93bb9-66a7-4e23-b71d-49fd5c28c445', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073658Z:41e93bb9-66a7-4e23-b71d-49fd5c28c445', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:57 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14810,Microsoft.Compute/GetOperation30Min;29810', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '861258d8-b542-4ffe-b1b1-81c251be61f8', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11804', + 'x-ms-correlation-request-id', + '15174e3d-5fc3-497e-b641-7f2a1b2a96c3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073658Z:15174e3d-5fc3-497e-b641-7f2a1b2a96c3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:57 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14809,Microsoft.Compute/GetOperation30Min;29809', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd1fd9465-8dda-4751-9253-95c6c6636906', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11803', + 'x-ms-correlation-request-id', + '5c486fc6-df0c-497a-b7d8-578c7397578a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073659Z:5c486fc6-df0c-497a-b7d8-578c7397578a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:58 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14808,Microsoft.Compute/GetOperation30Min;29808', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '71df21b3-5fd2-4763-a025-7527538da05f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11802', + 'x-ms-correlation-request-id', + 'aaab50e4-fae2-4a90-9369-0341736f4dbb', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073659Z:aaab50e4-fae2-4a90-9369-0341736f4dbb', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:58 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14807,Microsoft.Compute/GetOperation30Min;29807', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5b70c11d-705f-452c-85c9-6508fa83f6ca', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11801', + 'x-ms-correlation-request-id', + '920dc20e-a12d-4625-94fc-9b043f87101d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073659Z:920dc20e-a12d-4625-94fc-9b043f87101d', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:58 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14806,Microsoft.Compute/GetOperation30Min;29806', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0471e392-c831-4390-bdc2-51f5d531c255', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11800', + 'x-ms-correlation-request-id', + 'bd29ecee-5af7-4df4-a5f3-8719771e5a71', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073700Z:bd29ecee-5af7-4df4-a5f3-8719771e5a71', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:59 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14805,Microsoft.Compute/GetOperation30Min;29805', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b02dbe4e-296c-4f37-864a-c80789a3256e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11799', + 'x-ms-correlation-request-id', + 'f7ba885e-a85a-48fc-b3e0-a02be026530f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073700Z:f7ba885e-a85a-48fc-b3e0-a02be026530f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:59 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14804,Microsoft.Compute/GetOperation30Min;29804', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '61400514-2fb7-4e33-95a7-48a143c4457c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11798', + 'x-ms-correlation-request-id', + '94c860f3-e85d-469c-bfd7-f2fe754526d8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073700Z:94c860f3-e85d-469c-bfd7-f2fe754526d8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:59 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14803,Microsoft.Compute/GetOperation30Min;29803', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'eee3f274-d8f9-43a3-b062-afb3079cc1a7', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11797', + 'x-ms-correlation-request-id', + 'd97ee66f-c6e1-4f57-9fd4-c2986bb7e341', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073701Z:d97ee66f-c6e1-4f57-9fd4-c2986bb7e341', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:01 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14802,Microsoft.Compute/GetOperation30Min;29802', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5f67bd4e-426f-4603-aeb2-26f38679b790', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11796', + 'x-ms-correlation-request-id', + '30dcac78-6e8a-49f6-9e3c-90156d61a915', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073701Z:30dcac78-6e8a-49f6-9e3c-90156d61a915', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:01 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14801,Microsoft.Compute/GetOperation30Min;29801', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd89f66c9-012b-4daf-85c1-e51bb01c53b0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11795', + 'x-ms-correlation-request-id', + 'bce65282-23a7-42f4-81f2-707f5d18c6bf', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073701Z:bce65282-23a7-42f4-81f2-707f5d18c6bf', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:01 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14800,Microsoft.Compute/GetOperation30Min;29800', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dae8ae86-7ddb-4a73-b08b-961a6de5b362', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11794', + 'x-ms-correlation-request-id', + '754cdbf6-e6cb-467d-97c7-72161af77235', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073702Z:754cdbf6-e6cb-467d-97c7-72161af77235', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:02 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14799,Microsoft.Compute/GetOperation30Min;29799', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd83e6eec-a47d-4c9a-9086-1d28e60b4d96', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11793', + 'x-ms-correlation-request-id', + '823f6f94-69d0-469b-8f7a-4e3116dbaf38', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073702Z:823f6f94-69d0-469b-8f7a-4e3116dbaf38', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:02 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14798,Microsoft.Compute/GetOperation30Min;29798', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f39be27c-eca5-470b-85ec-82cb57407eb4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11792', + 'x-ms-correlation-request-id', + '874da9cd-b40a-4dfb-8b5a-30c227ddf408', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073702Z:874da9cd-b40a-4dfb-8b5a-30c227ddf408', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:02 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14797,Microsoft.Compute/GetOperation30Min;29797', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'e2a94c75-f5a5-4a2a-a2cf-ffe5610e3ef2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11791', + 'x-ms-correlation-request-id', + '6e81fb5e-6edb-4efd-818b-89d41dec64ed', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073703Z:6e81fb5e-6edb-4efd-818b-89d41dec64ed', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:03 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14796,Microsoft.Compute/GetOperation30Min;29796', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ff631cb6-ecec-4276-a76a-bfee27fcffda', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11790', + 'x-ms-correlation-request-id', + '61343d3f-fdf3-4a79-86a6-1c1d8da26ed6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073703Z:61343d3f-fdf3-4a79-86a6-1c1d8da26ed6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:03 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14795,Microsoft.Compute/GetOperation30Min;29795', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9eeda17a-dccf-4ad6-a8e3-a4ed823e75f3', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11789', + 'x-ms-correlation-request-id', + '374020a7-81ec-4da6-8bcd-74a5f7d73070', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073703Z:374020a7-81ec-4da6-8bcd-74a5f7d73070', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:03 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14794,Microsoft.Compute/GetOperation30Min;29794', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '902c5dd4-19d6-4092-9aa5-edef3d329597', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11788', + 'x-ms-correlation-request-id', + '83e2d73f-bf51-43f3-9097-2bcc8a4eb384', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073704Z:83e2d73f-bf51-43f3-9097-2bcc8a4eb384', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:04 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14793,Microsoft.Compute/GetOperation30Min;29793', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c1ad621c-c191-4fad-9167-09a03b5c6787', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11787', + 'x-ms-correlation-request-id', + '8bb13bdf-abf0-483d-8db5-31ba9ccae94b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073704Z:8bb13bdf-abf0-483d-8db5-31ba9ccae94b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:04 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14792,Microsoft.Compute/GetOperation30Min;29792', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '2bbcd390-2c24-41ca-a37b-3f2d45597e71', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11786', + 'x-ms-correlation-request-id', + '3f6d0e4f-14ce-4940-a80c-2bbbf6ea5a47', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073705Z:3f6d0e4f-14ce-4940-a80c-2bbbf6ea5a47', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:05 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14791,Microsoft.Compute/GetOperation30Min;29791', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'efeffa5b-6c6d-46f9-8946-7b829e559aac', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11785', + 'x-ms-correlation-request-id', + '74ffb250-088f-4c8b-b6e0-4edfb848bf73', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073705Z:74ffb250-088f-4c8b-b6e0-4edfb848bf73', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:05 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14790,Microsoft.Compute/GetOperation30Min;29790', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '35ec75e1-41ec-4033-a8ec-0ef64fcf7bf1', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11784', + 'x-ms-correlation-request-id', + '90304927-2825-4623-8378-1fdf26013605', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073705Z:90304927-2825-4623-8378-1fdf26013605', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:05 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14789,Microsoft.Compute/GetOperation30Min;29789', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '754f3e45-d1cd-4ce3-bd2b-7d5d16dbc892', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11783', + 'x-ms-correlation-request-id', + '1d699f7f-72ab-4c0c-8dc7-060a591308c6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073706Z:1d699f7f-72ab-4c0c-8dc7-060a591308c6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:06 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14788,Microsoft.Compute/GetOperation30Min;29788', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b392c5aa-b014-426c-bfc3-cda14e96edcf', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11782', + 'x-ms-correlation-request-id', + '01a1f939-056d-41a6-8e73-6bc3b6c67de6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073706Z:01a1f939-056d-41a6-8e73-6bc3b6c67de6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:06 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14787,Microsoft.Compute/GetOperation30Min;29787', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '63f8f20c-bb05-49b6-aad2-bd0e825e4aa2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11781', + 'x-ms-correlation-request-id', + '48ef5dab-1579-4421-93b1-9dbf5c979dae', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073706Z:48ef5dab-1579-4421-93b1-9dbf5c979dae', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:06 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14786,Microsoft.Compute/GetOperation30Min;29786', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a85f6b09-c133-43e4-a641-524d2691ac03', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11780', + 'x-ms-correlation-request-id', + '78666e62-01e2-4022-add5-2e413059699e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073707Z:78666e62-01e2-4022-add5-2e413059699e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:07 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14785,Microsoft.Compute/GetOperation30Min;29785', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'b35876f0-4b3a-44b4-98fa-db9b2a04cd26', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11779', + 'x-ms-correlation-request-id', + '10cefd38-6218-4ec4-9b7d-5b8805d9f5d2', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073707Z:10cefd38-6218-4ec4-9b7d-5b8805d9f5d2', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:07 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14784,Microsoft.Compute/GetOperation30Min;29784', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f88663b3-e9b6-4901-8b96-0daae7e1a596', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11778', + 'x-ms-correlation-request-id', + '954253b7-623d-4c60-8398-00f9da10d754', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073708Z:954253b7-623d-4c60-8398-00f9da10d754', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:08 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14783,Microsoft.Compute/GetOperation30Min;29783', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9f86ab13-3916-4ffb-aa2f-bc6080d5aa47', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11777', + 'x-ms-correlation-request-id', + '2dfd536c-2a57-42fd-a00b-b7426e44a307', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073708Z:2dfd536c-2a57-42fd-a00b-b7426e44a307', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:08 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14782,Microsoft.Compute/GetOperation30Min;29782', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '371e35cb-2e6b-4028-9c9e-68d3b88987e8', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11776', + 'x-ms-correlation-request-id', + 'f35e4048-95d2-4501-811d-46c55729a21a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073708Z:f35e4048-95d2-4501-811d-46c55729a21a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:08 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14781,Microsoft.Compute/GetOperation30Min;29781', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dd3bdf31-4521-44b6-8deb-f5a488fb43b3', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11775', + 'x-ms-correlation-request-id', + '4e55515e-25b7-4cc8-8e46-d3b613f22391', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073709Z:4e55515e-25b7-4cc8-8e46-d3b613f22391', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:09 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14780,Microsoft.Compute/GetOperation30Min;29780', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8103aa69-fa49-41f7-933f-31cdc234b74c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11774', + 'x-ms-correlation-request-id', + '08dc4027-faa4-4624-b466-6fc8fd722865', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073709Z:08dc4027-faa4-4624-b466-6fc8fd722865', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:09 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14779,Microsoft.Compute/GetOperation30Min;29779', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f168d70d-7048-4ca8-8015-04d56ad29185', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11773', + 'x-ms-correlation-request-id', + 'b02e3a22-2f06-4e5c-924a-d276987ac4c8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073709Z:b02e3a22-2f06-4e5c-924a-d276987ac4c8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:09 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14778,Microsoft.Compute/GetOperation30Min;29778', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '6b084938-2259-4cb5-9cfe-d262811d921c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11772', + 'x-ms-correlation-request-id', + 'fe15fdde-9eb7-4ee6-81ae-f6385951ee39', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073710Z:fe15fdde-9eb7-4ee6-81ae-f6385951ee39', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:10 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14777,Microsoft.Compute/GetOperation30Min;29777', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1bc40cde-eb08-4638-9e4c-22759a4acd8c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11771', + 'x-ms-correlation-request-id', + '83067f32-121c-4331-afd1-afe261b50688', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073710Z:83067f32-121c-4331-afd1-afe261b50688', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:10 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14776,Microsoft.Compute/GetOperation30Min;29776', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1568b7e0-9742-41a7-a25a-caac2d078ae6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11770', + 'x-ms-correlation-request-id', + '590605d3-ca74-43c5-828f-f5aff1a12cfa', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073710Z:590605d3-ca74-43c5-828f-f5aff1a12cfa', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:10 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14775,Microsoft.Compute/GetOperation30Min;29775', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '22e6b394-b6b3-4301-9dc0-f21c57e7a814', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11769', + 'x-ms-correlation-request-id', + '90386935-1635-465f-a738-d872eeca3403', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073711Z:90386935-1635-465f-a738-d872eeca3403', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:11 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14774,Microsoft.Compute/GetOperation30Min;29774', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '676ed26a-9507-4c4a-b2ca-f6a0af395e43', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11768', + 'x-ms-correlation-request-id', + '6a6daf39-bd65-4fce-acad-2d0610295d31', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073711Z:6a6daf39-bd65-4fce-acad-2d0610295d31', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:11 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14773,Microsoft.Compute/GetOperation30Min;29773', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '74488bc9-fe82-4372-967f-a6e3a8390bb2', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11767', + 'x-ms-correlation-request-id', + '6e58f05f-e90a-4ddc-abc4-a5516e7e8d2e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073712Z:6e58f05f-e90a-4ddc-abc4-a5516e7e8d2e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:11 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14772,Microsoft.Compute/GetOperation30Min;29772', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '5c2e6947-396d-40ab-94d6-fd63f2162481', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11766', + 'x-ms-correlation-request-id', + 'ad7351df-6b3b-48d1-aeab-6acee5102f78', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073712Z:ad7351df-6b3b-48d1-aeab-6acee5102f78', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:12 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14771,Microsoft.Compute/GetOperation30Min;29771', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'bc3df503-e467-4fc0-a089-f84ad2065679', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11765', + 'x-ms-correlation-request-id', + '8b00365d-41af-4937-992b-f6c68481c68f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073712Z:8b00365d-41af-4937-992b-f6c68481c68f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:12 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14770,Microsoft.Compute/GetOperation30Min;29770', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c1a6f117-333c-4889-8ddb-c311ab4bcecb', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11764', + 'x-ms-correlation-request-id', + '04e721bc-cd9e-4b13-99d8-d048aec21d92', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073713Z:04e721bc-cd9e-4b13-99d8-d048aec21d92', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:13 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14769,Microsoft.Compute/GetOperation30Min;29769', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '06753be3-eeed-4106-9aaf-a08c9a24d4b5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11763', + 'x-ms-correlation-request-id', + '16bca1a9-c716-4b90-8167-f05dee49edd6', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073713Z:16bca1a9-c716-4b90-8167-f05dee49edd6', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:13 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14768,Microsoft.Compute/GetOperation30Min;29768', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '776979ee-51ea-4d7c-b824-9c32723461fa', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11762', + 'x-ms-correlation-request-id', + 'c4e846eb-cf48-4b58-a8f8-b9fc83df00e1', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073714Z:c4e846eb-cf48-4b58-a8f8-b9fc83df00e1', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:13 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14767,Microsoft.Compute/GetOperation30Min;29767', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0f7ef1ff-1568-45f6-b6be-d42e4b872999', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11761', + 'x-ms-correlation-request-id', + '0c5fe00d-b299-4b70-9d91-6464d89c7684', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073714Z:0c5fe00d-b299-4b70-9d91-6464d89c7684', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:14 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14766,Microsoft.Compute/GetOperation30Min;29766', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '15d0f9fc-2693-4895-9613-51752ac966b7', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11760', + 'x-ms-correlation-request-id', + '5579976a-ad65-4ac0-86a9-6d0cf4ba24d3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073714Z:5579976a-ad65-4ac0-86a9-6d0cf4ba24d3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:14 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14765,Microsoft.Compute/GetOperation30Min;29765', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '82d3dcdb-bc33-4d62-8682-02ffc155d1e7', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11759', + 'x-ms-correlation-request-id', + '57d878f0-2c54-43e5-8423-0f1c118a8560', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073715Z:57d878f0-2c54-43e5-8423-0f1c118a8560', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:15 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14764,Microsoft.Compute/GetOperation30Min;29764', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'fe50c655-aeb3-4efb-ba25-0cb227558dfe', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11758', + 'x-ms-correlation-request-id', + '030cdbd4-143d-456f-ae63-98716c01d6ef', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073715Z:030cdbd4-143d-456f-ae63-98716c01d6ef', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:15 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14763,Microsoft.Compute/GetOperation30Min;29763', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '78393171-7fd9-4afe-a397-61966cd14fad', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11757', + 'x-ms-correlation-request-id', + '359f2d4f-0f85-4643-97cf-c916d3718674', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073715Z:359f2d4f-0f85-4643-97cf-c916d3718674', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:15 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14762,Microsoft.Compute/GetOperation30Min;29762', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a93d8796-9c0c-4125-a354-c4736bbbff0f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11756', + 'x-ms-correlation-request-id', + '481aadc2-f14a-4e66-97cc-af23491d33f3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073716Z:481aadc2-f14a-4e66-97cc-af23491d33f3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:16 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14761,Microsoft.Compute/GetOperation30Min;29761', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'c3f73ce2-bb27-4d66-945e-d89ffdd57ebf', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11755', + 'x-ms-correlation-request-id', + '164834b2-ebaa-445b-a829-c2b51cebbede', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073716Z:164834b2-ebaa-445b-a829-c2b51cebbede', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:16 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14760,Microsoft.Compute/GetOperation30Min;29760', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '18f7ca0f-5007-4c59-ab25-0e59eccd90a6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11754', + 'x-ms-correlation-request-id', + '6077fd86-d807-4c20-a6b6-9f1eac90b60c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073716Z:6077fd86-d807-4c20-a6b6-9f1eac90b60c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:16 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14759,Microsoft.Compute/GetOperation30Min;29759', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'fb6152a3-bd42-4b95-a54b-591994269f6e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11753', + 'x-ms-correlation-request-id', + '4542657b-8667-4e02-b096-3d9847bd76d2', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073717Z:4542657b-8667-4e02-b096-3d9847bd76d2', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:17 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14758,Microsoft.Compute/GetOperation30Min;29758', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8e0a3a57-a092-436e-b32e-ed1afa8b440f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11752', + 'x-ms-correlation-request-id', + '74e37396-b0f6-44ea-909f-dd8be82eb5b0', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073717Z:74e37396-b0f6-44ea-909f-dd8be82eb5b0', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:17 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14757,Microsoft.Compute/GetOperation30Min;29757', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '21225a4e-6bdd-44d9-9b93-5b497ce2ad03', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11751', + 'x-ms-correlation-request-id', + '7ca5ab1d-4d23-4cfe-be79-f86843b35e96', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073717Z:7ca5ab1d-4d23-4cfe-be79-f86843b35e96', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:17 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14756,Microsoft.Compute/GetOperation30Min;29756', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f399494d-c49e-40e0-be73-1309651c8311', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11750', + 'x-ms-correlation-request-id', + 'ba9e7a0d-f448-4c5e-937c-971ca495a5f4', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073718Z:ba9e7a0d-f448-4c5e-937c-971ca495a5f4', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:18 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14755,Microsoft.Compute/GetOperation30Min;29755', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ad9273d4-d652-460f-b59e-2d4a8470310e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11749', + 'x-ms-correlation-request-id', + 'dda5ca0b-5bff-4cd3-87ce-663c146de911', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073718Z:dda5ca0b-5bff-4cd3-87ce-663c146de911', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:18 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14754,Microsoft.Compute/GetOperation30Min;29754', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'e80cb882-b1e4-45d3-996e-8d2bfb1fdb13', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11748', + 'x-ms-correlation-request-id', + '788fda34-45d2-4c93-9c78-8fe1465d6da8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073719Z:788fda34-45d2-4c93-9c78-8fe1465d6da8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:18 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14753,Microsoft.Compute/GetOperation30Min;29753', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8d7e4b26-df14-422f-90ff-6aad9644b33f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11747', + 'x-ms-correlation-request-id', + '0034b2b9-b3ed-43cd-8d73-66094c9ffa8b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073719Z:0034b2b9-b3ed-43cd-8d73-66094c9ffa8b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14752,Microsoft.Compute/GetOperation30Min;29752', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '013dcc93-fca2-4584-875c-1d9c1846c735', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11746', + 'x-ms-correlation-request-id', + '0f2be76d-3cc8-4d04-8918-d83e30fac370', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073719Z:0f2be76d-3cc8-4d04-8918-d83e30fac370', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14751,Microsoft.Compute/GetOperation30Min;29751', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '453abf7e-7e43-4b09-9396-fadcd944425f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11745', + 'x-ms-correlation-request-id', + 'eb987f59-6e77-458f-8143-3d68263d9e5a', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073720Z:eb987f59-6e77-458f-8143-3d68263d9e5a', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:19 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14750,Microsoft.Compute/GetOperation30Min;29750', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '001b7890-6093-4f4b-8ee7-84baa8d340d1', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11744', + 'x-ms-correlation-request-id', + 'a70f159d-5b82-419a-a497-e83a8caf6bc9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073720Z:a70f159d-5b82-419a-a497-e83a8caf6bc9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14749,Microsoft.Compute/GetOperation30Min;29749', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8b8a3897-b214-421e-ab94-16857ed1d192', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11743', + 'x-ms-correlation-request-id', + '8e19b95d-a050-4fba-80fa-269ba0531f89', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073720Z:8e19b95d-a050-4fba-80fa-269ba0531f89', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:20 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14748,Microsoft.Compute/GetOperation30Min;29748', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '92f6ee6a-1775-46fc-8100-f95effeb2834', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11742', + 'x-ms-correlation-request-id', + '9953b47e-fff1-403a-993c-6050de3a6779', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073721Z:9953b47e-fff1-403a-993c-6050de3a6779', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14747,Microsoft.Compute/GetOperation30Min;29747', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8a4e1463-2b73-4de1-b3bd-d35abbecd524', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11741', + 'x-ms-correlation-request-id', + 'aa260855-a721-4fca-9369-25fe9f149965', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073721Z:aa260855-a721-4fca-9369-25fe9f149965', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14746,Microsoft.Compute/GetOperation30Min;29746', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '209c97eb-69e6-4bb5-bcfe-815791da48e0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11740', + 'x-ms-correlation-request-id', + 'a3b3fea5-373c-4815-a79c-736e58690d6f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073721Z:a3b3fea5-373c-4815-a79c-736e58690d6f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:21 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14745,Microsoft.Compute/GetOperation30Min;29745', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '62912f33-78b6-4af0-9bd8-e4ae85700c02', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11739', + 'x-ms-correlation-request-id', + '8ed49d5a-2c14-45fa-bd29-ab9b4a74d270', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073722Z:8ed49d5a-2c14-45fa-bd29-ab9b4a74d270', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:22 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14744,Microsoft.Compute/GetOperation30Min;29744', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ce0d85ca-44a4-4356-b302-36c98cd6813f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11738', + 'x-ms-correlation-request-id', + '59e600fc-e124-4edf-adbd-e763662bbeec', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073722Z:59e600fc-e124-4edf-adbd-e763662bbeec', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:22 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14743,Microsoft.Compute/GetOperation30Min;29743', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0b454809-f94e-4c62-81ed-694c13e2ee7a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11737', + 'x-ms-correlation-request-id', + '92051807-b22c-45fb-8c4c-88877de1ea05', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073722Z:92051807-b22c-45fb-8c4c-88877de1ea05', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:22 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14742,Microsoft.Compute/GetOperation30Min;29742', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '42286f91-82c0-4546-9bc8-0d51002428eb', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11736', + 'x-ms-correlation-request-id', + '44c50d12-45c8-4ba6-ac8f-a5e8994cfb08', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073723Z:44c50d12-45c8-4ba6-ac8f-a5e8994cfb08', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:23 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14741,Microsoft.Compute/GetOperation30Min;29741', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'dc27c295-3ff4-4bf8-b900-3ce207add5ff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11735', + 'x-ms-correlation-request-id', + '82ca10fd-ad08-436d-986f-e35cb6d07edf', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073723Z:82ca10fd-ad08-436d-986f-e35cb6d07edf', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:23 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14740,Microsoft.Compute/GetOperation30Min;29740', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '1b064c56-4645-40ea-80eb-6ea60bfc8d4d', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11734', + 'x-ms-correlation-request-id', + 'f132efe0-c0b2-4d0c-b565-32baf4cb9164', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073723Z:f132efe0-c0b2-4d0c-b565-32baf4cb9164', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:23 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14739,Microsoft.Compute/GetOperation30Min;29739', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '750830f8-8b15-4282-aaf5-6d7f8c83ffce', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11733', + 'x-ms-correlation-request-id', + '7b3a5ad6-25d9-4cdd-8fd9-f15c38d9aef4', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073724Z:7b3a5ad6-25d9-4cdd-8fd9-f15c38d9aef4', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:24 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14738,Microsoft.Compute/GetOperation30Min;29738', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4826ac97-9a27-495e-8d9f-c25862664c3b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11732', + 'x-ms-correlation-request-id', + '7163b41b-241f-4669-a660-87e481e0e2ae', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073724Z:7163b41b-241f-4669-a660-87e481e0e2ae', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:24 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14737,Microsoft.Compute/GetOperation30Min;29737', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '4dec7c66-cc18-4754-acb7-adb4104ab702', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11731', + 'x-ms-correlation-request-id', + '8a4a0ba8-7dfe-4852-9b5d-f3ba18d1a192', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073725Z:8a4a0ba8-7dfe-4852-9b5d-f3ba18d1a192', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:24 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14736,Microsoft.Compute/GetOperation30Min;29736', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '3856f067-87e4-41ab-94d3-59951314e14f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11730', + 'x-ms-correlation-request-id', + '88a88f49-9f21-427c-9120-0e442e9d34ef', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073725Z:88a88f49-9f21-427c-9120-0e442e9d34ef', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:25 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14735,Microsoft.Compute/GetOperation30Min;29735', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'adbf377a-a804-494f-b6f1-434262583ec8', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11729', + 'x-ms-correlation-request-id', + '22b047ad-537d-4eac-b1b4-c7a2e125b664', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073725Z:22b047ad-537d-4eac-b1b4-c7a2e125b664', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:25 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14734,Microsoft.Compute/GetOperation30Min;29734', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '16d40124-fcdd-4ac9-83c6-d1591cf36d86', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11728', + 'x-ms-correlation-request-id', + '5b3b4224-a62b-4851-b3b1-7ca0c421aaae', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073726Z:5b3b4224-a62b-4851-b3b1-7ca0c421aaae', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:25 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14733,Microsoft.Compute/GetOperation30Min;29733', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '46b91eb4-ed17-4ff8-99d3-3b73b80b30e0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11727', + 'x-ms-correlation-request-id', + 'eb976d2e-4135-41ae-9bc8-b730e1cff5b5', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073726Z:eb976d2e-4135-41ae-9bc8-b730e1cff5b5', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:26 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14732,Microsoft.Compute/GetOperation30Min;29732', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '40dec928-53e1-487d-b592-1221e7a5ec91', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11726', + 'x-ms-correlation-request-id', + '2418e249-628e-469c-95ff-5cd452823b36', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073726Z:2418e249-628e-469c-95ff-5cd452823b36', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:26 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14731,Microsoft.Compute/GetOperation30Min;29731', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '542db95f-2f0d-4f1c-abe9-2db3c9bf822e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11725', + 'x-ms-correlation-request-id', + '7fc03334-fb88-42a4-aa19-1c836ae6351f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073727Z:7fc03334-fb88-42a4-aa19-1c836ae6351f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:26 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14730,Microsoft.Compute/GetOperation30Min;29730', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '252b9248-3285-434b-9def-1a626eb4667a', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11724', + 'x-ms-correlation-request-id', + 'c2f9ca83-ac37-4a6a-8fb4-eed9ad596653', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073727Z:c2f9ca83-ac37-4a6a-8fb4-eed9ad596653', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:27 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14729,Microsoft.Compute/GetOperation30Min;29729', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9c77cfde-3c0d-4baa-9186-7e982f6f4b7b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11723', + 'x-ms-correlation-request-id', + '42268494-523a-49f4-afc5-a9ed9277d61f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073727Z:42268494-523a-49f4-afc5-a9ed9277d61f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:27 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14728,Microsoft.Compute/GetOperation30Min;29728', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ecf33f10-76c9-4ecf-9023-356bb0ac1c67', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11722', + 'x-ms-correlation-request-id', + '1d1692f3-dbda-4327-9349-d1ff450ae09d', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073728Z:1d1692f3-dbda-4327-9349-d1ff450ae09d', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:28 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14727,Microsoft.Compute/GetOperation30Min;29727', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd3371928-ef33-4d53-881c-d37f313be2cd', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11721', + 'x-ms-correlation-request-id', + '380b521a-1a0f-4c47-95bf-4a20012de284', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073728Z:380b521a-1a0f-4c47-95bf-4a20012de284', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:28 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14726,Microsoft.Compute/GetOperation30Min;29726', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8ff53987-34e0-4f90-b507-64c1d6b49c6d', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11720', + 'x-ms-correlation-request-id', + '977d6321-88e9-444e-8ab6-a9701202a929', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073728Z:977d6321-88e9-444e-8ab6-a9701202a929', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:28 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14725,Microsoft.Compute/GetOperation30Min;29725', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'fa3ac699-a522-44b5-8c1e-7058cb294f72', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11719', + 'x-ms-correlation-request-id', + '1ce4a5c4-d6ef-403d-ac30-7f770fd9b295', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073729Z:1ce4a5c4-d6ef-403d-ac30-7f770fd9b295', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:29 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14724,Microsoft.Compute/GetOperation30Min;29724', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '19bad557-c84f-446a-9f98-f21831ae84a4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11718', + 'x-ms-correlation-request-id', + '1a732ee6-78b8-4204-91ea-ccac53cf00ab', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073729Z:1a732ee6-78b8-4204-91ea-ccac53cf00ab', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:29 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14723,Microsoft.Compute/GetOperation30Min;29723', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0e311be5-d53b-47e5-9d36-fb79e3113277', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11717', + 'x-ms-correlation-request-id', + 'cc00e58b-281d-4d38-bb79-cb5c62241e7b', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073730Z:cc00e58b-281d-4d38-bb79-cb5c62241e7b', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:29 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14722,Microsoft.Compute/GetOperation30Min;29722', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'bc3d0e74-a3b6-404c-9e06-491cc305d5d9', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11716', + 'x-ms-correlation-request-id', + '74780611-88ba-4889-b009-2d0697828cf8', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073730Z:74780611-88ba-4889-b009-2d0697828cf8', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:30 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14721,Microsoft.Compute/GetOperation30Min;29721', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '25492939-108f-4659-bb3b-1fcc4472b13c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11715', + 'x-ms-correlation-request-id', + '5a8ed780-acf1-4af7-8561-fea778f7dcfc', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073730Z:5a8ed780-acf1-4af7-8561-fea778f7dcfc', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:30 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14720,Microsoft.Compute/GetOperation30Min;29720', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '73f1bd8b-9c4c-402e-a0cf-267e475b3e78', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11714', + 'x-ms-correlation-request-id', + '62ec2982-a090-4ac4-8a62-5459885195c3', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073731Z:62ec2982-a090-4ac4-8a62-5459885195c3', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:30 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14719,Microsoft.Compute/GetOperation30Min;29719', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '0c2fb9ce-a428-4f33-ac81-a296a762e1f1', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11713', + 'x-ms-correlation-request-id', + 'a1e67ced-bbaa-420d-aeab-f56ea618d6d7', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073731Z:a1e67ced-bbaa-420d-aeab-f56ea618d6d7', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:31 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14718,Microsoft.Compute/GetOperation30Min;29718', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8e71ba37-12cf-4054-832e-62600100ba5b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11712', + 'x-ms-correlation-request-id', + 'fcf66359-152d-4180-b867-5d5a415c9f11', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073731Z:fcf66359-152d-4180-b867-5d5a415c9f11', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:31 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14717,Microsoft.Compute/GetOperation30Min;29717', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '81f1bf2d-a164-4291-b752-550529642678', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11711', + 'x-ms-correlation-request-id', + '56fb8598-3586-4325-a0e7-bc30f74cbd3e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073732Z:56fb8598-3586-4325-a0e7-bc30f74cbd3e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:31 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14716,Microsoft.Compute/GetOperation30Min;29716', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'a5255116-8401-470c-ab93-05868f57ecba', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11710', + 'x-ms-correlation-request-id', + '3d52bdd1-9cd4-4960-b1f3-694250233831', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073732Z:3d52bdd1-9cd4-4960-b1f3-694250233831', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:32 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14715,Microsoft.Compute/GetOperation30Min;29715', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '45397fdd-67f9-4a38-9011-bb000c5d0158', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11709', + 'x-ms-correlation-request-id', + 'f3739cf9-b399-4a90-a9e0-d325fcad7882', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073732Z:f3739cf9-b399-4a90-a9e0-d325fcad7882', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:32 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14714,Microsoft.Compute/GetOperation30Min;29714', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '758a5002-283d-4a5b-ac8f-65449664f22f', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11708', + 'x-ms-correlation-request-id', + '1ae9cee2-6165-4f46-8cce-45b5a297df76', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073733Z:1ae9cee2-6165-4f46-8cce-45b5a297df76', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:32 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14713,Microsoft.Compute/GetOperation30Min;29713', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '8d91ea58-3c2f-4778-b200-17d81ea4390d', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11707', + 'x-ms-correlation-request-id', + 'a1d7e1fb-cd54-4580-8136-970b2edb9353', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073733Z:a1d7e1fb-cd54-4580-8136-970b2edb9353', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:33 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14712,Microsoft.Compute/GetOperation30Min;29712', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'bec11499-82da-4c08-81d6-eefef14a99f6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11706', + 'x-ms-correlation-request-id', + 'cc5bf828-1b51-43dc-80e6-0fca1df40999', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073733Z:cc5bf828-1b51-43dc-80e6-0fca1df40999', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:33 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14711,Microsoft.Compute/GetOperation30Min;29711', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'df1e2385-8990-48bb-92c0-f3b1058c88b6', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11705', + 'x-ms-correlation-request-id', + '936b3266-ce2c-4955-8e2b-4027919ebc4e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073734Z:936b3266-ce2c-4955-8e2b-4027919ebc4e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:34 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14710,Microsoft.Compute/GetOperation30Min;29710', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '01957382-52da-406c-8e50-607dd90dd3e5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11704', + 'x-ms-correlation-request-id', + '8ba336bf-01e5-487e-b883-be3f07e98169', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073734Z:8ba336bf-01e5-487e-b883-be3f07e98169', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:34 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14709,Microsoft.Compute/GetOperation30Min;29709', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd73c6a79-1f03-4e02-a197-b243f67d32fe', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11703', + 'x-ms-correlation-request-id', + '6dc5fcd3-b64c-48eb-9019-1a01e648400f', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073735Z:6dc5fcd3-b64c-48eb-9019-1a01e648400f', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:34 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14708,Microsoft.Compute/GetOperation30Min;29708', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '00483e1d-a4eb-464b-ade0-8a587ebb4b1b', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11702', + 'x-ms-correlation-request-id', + '7dc2b216-08c6-4d01-ab3b-d8fb28e3931c', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073735Z:7dc2b216-08c6-4d01-ab3b-d8fb28e3931c', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14707,Microsoft.Compute/GetOperation30Min;29707', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '441fb08c-c3a1-47ec-ab33-e3e0ad2e297c', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11701', + 'x-ms-correlation-request-id', + '6e88e4ad-dd99-411e-a283-0dddff68b5ef', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073735Z:6e88e4ad-dd99-411e-a283-0dddff68b5ef', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14706,Microsoft.Compute/GetOperation30Min;29706', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '67189f92-bd0d-4e23-8853-1bf090d71791', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11700', + 'x-ms-correlation-request-id', + '59b34fe8-7bca-4b75-a992-1dab79bcb62e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073736Z:59b34fe8-7bca-4b75-a992-1dab79bcb62e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:35 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14705,Microsoft.Compute/GetOperation30Min;29705', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '12d65b37-c40b-4053-bc47-792457665218', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11699', + 'x-ms-correlation-request-id', + '3e7401c3-b195-48fa-900b-6bdfd34d02ce', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073736Z:3e7401c3-b195-48fa-900b-6bdfd34d02ce', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:36 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14704,Microsoft.Compute/GetOperation30Min;29704', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '9bed1604-0e4a-4c7d-9308-71083a4889ad', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11698', + 'x-ms-correlation-request-id', + 'fc24291f-6813-4d0e-ae5d-149b2e947236', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073736Z:fc24291f-6813-4d0e-ae5d-149b2e947236', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:36 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14703,Microsoft.Compute/GetOperation30Min;29703', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '017c6012-319e-4211-b0fe-4778bfc48aa3', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11697', + 'x-ms-correlation-request-id', + 'd148f3ce-1520-4ee3-88dd-04eab37556e7', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073737Z:d148f3ce-1520-4ee3-88dd-04eab37556e7', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:36 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14702,Microsoft.Compute/GetOperation30Min;29702', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'f399f435-c667-4ac4-b9b1-566223c04762', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11696', + 'x-ms-correlation-request-id', + '86931c22-3fbd-4e72-83b7-980f318de56e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073737Z:86931c22-3fbd-4e72-83b7-980f318de56e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34322fb5eb066f9c2d5fd6d5459d378d7eb5cc04d4ecde6c6f2fdfbbbffd20cb77b6f73fcd67db0fb3d9fdedddf36cff606777ffd3fbf7b28f7ee3e497","fc3f17c42f5086000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14701,Microsoft.Compute/GetOperation30Min;29701', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'de691aec-d0c3-498a-9e6c-70183853fb91', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11695', + 'x-ms-correlation-request-id', + 'e704cb46-4459-42ca-985b-aa3dd04c4785', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073737Z:e704cb46-4459-42ca-985b-aa3dd04c4785', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:37 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Compute/locations/eastus/operations/d3d22e25-7ae0-46ed-9ad5-1fa48014653a') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9474d9bd5ed9b62917ff428fd686f676f777b77677bf7e0cdce8347f73e7d74ffd3f1fecefec1debd834f76761eedec7c34e297f2e56ce015fc6ffcf0dea73bf7f6f68357a89f76dde08dd7ebe934cf67f94cbf59660269766fb6b797efdddf7e90e53bdbfb9fe6b3ed87d9ecfef6ee79b67fb0b3bbffe9fd7bd947bf71f24b","fe1f219d64b5b8000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/GetOperation3Min;14700,Microsoft.Compute/GetOperation30Min;29700', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'd7bc9d6e-4fbf-4a1d-82d9-ec84a08d14bf', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11694', + 'x-ms-correlation-request-id', + 'eb5edc9a-fc52-4f08-98e4-16ff76401384', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073738Z:eb5edc9a-fc52-4f08-98e4-16ff76401384', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:38 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9479759b9ce3f7a947eeffbbf71f24b","fe1f5bd2319513000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/HighCostGet3Min;138,Microsoft.Compute/HighCostGet30Min;698', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'ff5f2f0a-25eb-4444-9083-1e953cb12231', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11693', + 'x-ms-correlation-request-id', + '18c9216f-1b0f-45de-ab83-e0871250ccc9', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073738Z:18c9216f-1b0f-45de-ab83-e0871250ccc9', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:37:38 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_get_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_get_test.js new file mode 100644 index 000000000000..47e9e31075c2 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_get_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "cb48336e656aaa8b24cf36942322a1e9"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'b337dc1f-cf49-42cb-831f-bd2e98a51100', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AiKJp7DaKCJAgA26ql-82xY; expires=Wed, 17-Nov-2021 07:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrHYWICxPsh6zIdU-enRP3yvzHsmMDU0p78U_y5zU138zHVJ3aVY1fidugdrWpJs71PRC5wqn1iPRUIN_y9i-O7ucWNbXLBkEXKBLEQUB1yMe04VikYoVyHuBx9Lm5rXtdZapi0SkWNNnl3XJRKeluQdwad90gB1uhn5MpixKaM1IgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:49 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dc166749-de8d-4169-86e2-e69f9c931100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AreDaO0HT5ZGtGrzT4fyB6Q; expires=Wed, 17-Nov-2021 07:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-I-o56aarqpijcol_uHDKoIApEJIolIFxqMLC5Np1avXidZmRjkl21gs0ffXA50GZBrgZ3axz0VwooLRVqvfsJI2zlxX7wVKu0yA65rWtxHYxUTBLGYnbb4hLpfF4M2oLVQ7TwUBk9Ccu_NAG-x_C8FLn2HHzU_292OYIXhO248gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:49 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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=83af3fef-46bc-46e8-a012-354ee3b22f8c&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '9ea55952-2798-4ab6-b940-678a97d21000', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AnLJkYH6_URPjY5nF3dXpNQWPr5BAQAAABEb_9gOAAAA; expires=Wed, 17-Nov-2021 07:36:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:49 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines/virtualmachinex') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e947cb6c917ff428fde8b2a8db75562eb2e9bc58e6ef3e1af1b7c50cdfdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e4faac56adde67715872f0487c6fcddc1a9bd5e31c637beafedcb6a9a0171bc93674dbb365fb4d945431f321de8cfec074d3e5d65d3b7f4d947cb6a4998cea4257db92ab3f6bcaa174ddeb6c5f2a219cfaba6fdfdf32575592d17f9b21d37797d594cf3b169f9fb57ab369f15cbdf9ffef8fdebaa6aa779dda2bf8fda7a9d7f04b8bf84a17f441dade8bb823076d85c2ece98f65976be33cd3eddd99e3c98dedfde3fbf3fdb7e783efb747b277f904d1f7cfae9c1fd7d87e53cab6757599dbfacabf3a20495141c7d77b9785dfc001f7df4bacd96336af9fb3fddfbfd2ff71813830bb56bdaaace2ea2208a057df12a3fcfeb7c390dbea22f57eb495934f3bca6cfdddc7cb758ceaaabe6351187bed13ef07c549d131cb41d6ed2bc5da3c1deceeea7db4fb3369b129d3b4de89546e796e84e0c167c9bbfcba6ed4fba26bbfbf71ede1bef3fd8d91fefedeeeeec7c4aff7eaa047024a017abe669d18011fc1156cd1b653d4539e8cb08d2e2fa27bfa89a195ef7bf9ed639e1f7258b109a3dababc519e819b662d6bd4083577936fb6e5db4618345b6a477667dece83b9db9e3e9b45a2f5b83ab9dede7af5efba0e8851fae748324686ac9e370719427ac667999fb947a9ad3cccf7dd43fc2ebe0e6cf9f5083ddbd07e62b07e7a319f10ba80499fa9ef934ed50ac5ca3871dfb161e3b9124dad02646fbfcfee874eff7bff77092edefec4e1f4ef2fbfbf73fbd974df7f63e7db897ef9c4f1eeeec1f4c7c3c095877da4f17abf6badb867be0497f512d83f9a66f37cc387dfbbe734eaffc5cccfad7a4a58fb99b5b3cb7e01234a26e1c9fececdd0bbf6eab27b9bc978326e759d9e4ae81df614076659b5def7bfa7013dbdcfbfd67b39d7b7bf7688cbbd3ddfddd4f771f9eef9e3f9c3e7c48aae8fcd36976d041fc476c4378c7d9e616b4f431f7679146f143601bf3ebf7e5178300998f984d9dca80eb17ca3ed08f0e9d8fb2d9a2587e45be85612f506e4d7f7b6daec41a9d54cbf3e2625d1b67c7f6414d98d4b0823ff9c5f1055951fa1a5e8885414df2653629f3e3755b2d08c2f4ab156950f648ba0d57593b9dbf563f88bef7fa31df7e51cd18590bedc9f5971d8efa286b9abc69e03a99d66c0e9fe6e7d9ba6cbd39b4043594a497c953ab73f6a6bef77df7695696d5d5e9bb365f62a85f9253457d139b52b360101fd5f92f5a1775fef99a88499322a4795d5c2cb352db4a53d3e347cbbcbdaaeab7d4d64ca0f9e80c2ec939b926d4cbf77e314bc9cfba90bc90aeeff650b85b985fc959c6a41309c4affcc5f417b96ff5f5478f30bc5ff24bbe6fc746cd8400349fa401c8e1a0b978bd9e4ef37c460c8e563405bf","e4ff01bbdeb9622f0c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '56980aa5-fe38-46c6-828c-4df9ae260ffa', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11812', + 'x-ms-correlation-request-id', + '26306033-faaf-44cd-89d8-a15ece231bbf', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073651Z:26306033-faaf-44cd-89d8-a15ece231bbf', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:50 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_list_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_list_test.js new file mode 100644 index 000000000000..02c919073aec --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_list_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "1bd53c422a517e7443264fd8c8ab8f20"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dc166749-de8d-4169-86e2-e69fa5931100', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Ak9u4pn5z7BIvArwsYmjgRs; expires=Wed, 17-Nov-2021 07:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWYIkDYpxKO1J118zq5NRp1sDX-lOmIo8psq7wktkSXS4gGjh79_hIHAKfYWZ5Z9HpjEDridjiyFFWNIk9AefMMAWrW_k37XD_bLfO8ZW-fhLL2FhPfBHQLn6hivPcAV5i9oYUNwMRQ5pBAjTL3ndMnoYSmp3O3tiFpfmBk21VOggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:50 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b3b020800', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AoBZsj1OI5BHiKqytXINFcE; expires=Wed, 17-Nov-2021 07:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3c4IpfPI3hzbM5AqgjRE13JIA6uFE82fagmDhe503afOdg4ruuOfSEUZb0BWoj3gMaSv52Gl7lkEOB6eptSe1rRUTw3xBcDt9xtlGFWHa0o1r8tX1W7vUdZdlSZWnZpsAUjN5RsbTaM5m_V4VAhLSPz6K_xDLZubgkZfLfIRQSogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:50 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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=abfc7cff-5ad0-4dd6-95b2-316d6a1194f2&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'cdee7f40-c5db-41db-bba8-8a2853701100', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AoULLS7Ii6NPkr_B7I6i5UgWPr5BAQAAABMb_9gOAAAA; expires=Wed, 17-Nov-2021 07:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:50 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e9479759b9ce3f7a947e0f7fa5297f88e7a365b6c0e71f5d1675bbceca45369d17cbfcdd4723dba298e1fbbbcd7ad24ceb62d516d5b2b9fb70effce1fdd9c1f9f6bde9a70fb6f777f7f6b71fee4e1f6c1f4ccf771e4c6793f3bdfdddbb75de54eb7a9a7f5e57eb55737771fdd34d9b37eddd555d5d16b3bc6eee7e514cebaaa9cedbf149b558addbfcaee2f185e0d198bf2378b5d72bc6fc4618de3b6535cd3000bc97674dbbf6bf6cb38b86beb0b4a18fb21f34f974954ddfd2e71f2dab25613e736f50835599b5e755bd68f2b62d9617cd785e35edef9f2f09856ab9c897edb8c9ebcb629a8f4dcbdfbf5ab5f9ac58fefef4c7ef5f57553bcdeb16fd7ed4d6344506f62fb1bd7c449daea84d412309b1bb5c9cf1dc64d9f9ce34fb74677bf2607a7f7bfffcfe6cfbe1f9ecd3ed9dfc41367df0e9a707f7f743ace7593dbbcaeafc655d9d1725a8e881a5ef2f17af8b1fe0e38f5eb7d97246ad7fffa77bbfffe59ec5cec78fda376d55671783e08a057df92a3fcfeb7c39ed7d4d0d56eb495934f3bca6efdc7c7eb758ceaaabe6351190bef1fac3f351754ef0d07e73b3e6ed1a8df676763fdd7e9ab5d994e624d28c5e6d942f689e88497b2df277d9b4fd49d76c77ffdec37be3fd073bfbe3bddddd9d9d4fe9df4f3d028524220055f3b468c048ddd157cd1b65651d4aaf6f23a48beb9ffca26a6600d36d32ad73c2fb4b164f347d56578b33d0bddf92c5e2028d5ee5d9ecbb75d1f61b2db225bd3b8b634cdfeb8c1f4fa7d57ad91afc2db73c7ff5ba0b925efae16a1290094d2dc9427cc2d921ec667999fb147c9a13b7ccbbc3f808a0201d9f3fa146bb7b0ffcaf43981fcd88df4041c8ad2a5ef3f4295aaed1eb4e00018f9d7c5229d06a4613fefe4064eff7bff77092edefec4e1f4ef2fbfbf73fbd974df7f63e7db897ef9c4f1eeeec1f4cbaf813c02eab9c2e56ed75ac1df7c48cf2a25af678845adcc025d4e2ebf009bdf673c1295f93be5dec431ec0734bce4243ead2f1d6cedebd7e93b67a92cbfb3968749e954d1e36ea22d09b1665b5dd4e3bfa6213abddfbfd67b39d7b7bf78806bbd3ddfddd4f771f9eef9e3f9c3e7c482af0fcd369761019d08f58edd6ac760bfa76b1efce348de687cc6afe9fdf777ff88891791bf20ba64294fa85b21d747588ea47d96c512cbf221fcab02628bca6bf3bedaec4729e54cbf3e2625d1b272fe88f9af1d4c082ffe417c717e4095013785d012c6a962fb349991fafdb6a4190a65fad4893b3f7156bbccadae9fcb5fa7fd4a6d3a769f14535e30158a84faebf8c70e44759d3e44d03d7d1bcc166fc697e9eadcbb6c303c104f8542740e4b9d6397b96dffb7ef84d5696d5d5e9bb365f82145f927349f810db53d3de003faaf35fb42eeafcf335119e2652c8f7bab85866a5b677cd7d0c3e5ae6ed5555bfa577cce49b8fcee0829d932b463d7eef17b304feac0be00be9fa6e0f85bb85f995820b300891437ced5f4c7f91eb5a5f7ff408c3fc25bfe4fbc1f8a8a91083e69db40c39513457afd7d3699ecf48604c4b9d22fe4122f24b","fe1f2ad16515900d0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + '37444e38-6448-4baf-9260-b1c8027f4fc5', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11811', + 'x-ms-correlation-request-id', + '517b5a1c-f1bf-4052-8ba3-3b8498e1629e', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073651Z:517b5a1c-f1bf-4052-8ba3-3b8498e1629e', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:50 GMT' +]); diff --git a/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_update_test.js b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_update_test.js new file mode 100644 index 000000000000..ee70281a16d8 --- /dev/null +++ b/sdk/compute/arm-compute/recordings/node/compute_test/recording_virtualmachines_update_test.js @@ -0,0 +1,191 @@ +let nock = require('nock'); + +module.exports.hash = "8a047724350bbdbc46e921f4a1bb279e"; + +module.exports.testInfo = {"uniqueName":{},"newDate":{}} + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/common/discovery/instance') + .query(true) + .reply(200, {"tenant_discovery_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration","api-version":"1.1","metadata":[{"preferred_network":"login.microsoftonline.com","preferred_cache":"login.windows.net","aliases":["login.microsoftonline.com","login.windows.net","login.microsoft.com","sts.windows.net"]},{"preferred_network":"login.partner.microsoftonline.cn","preferred_cache":"login.partner.microsoftonline.cn","aliases":["login.partner.microsoftonline.cn","login.chinacloudapi.cn"]},{"preferred_network":"login.microsoftonline.de","preferred_cache":"login.microsoftonline.de","aliases":["login.microsoftonline.de"]},{"preferred_network":"login.microsoftonline.us","preferred_cache":"login.microsoftonline.us","aliases":["login.microsoftonline.us","login.usgovcloudapi.net"]},{"preferred_network":"login-us.microsoftonline.com","preferred_cache":"login-us.microsoftonline.com","aliases":["login-us.microsoftonline.com"]}]}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b3e020800', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AnICcmgCuvRCrvQYpMzH4Fk; expires=Wed, 17-Nov-2021 07:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEYAd03LNIAW23tpd7p7Z5rtdr3LqklsVdMl4g3fpC_QvBXhixfVE0qSKM0ZTAwcryGteb_uVAIMIBjao4dxYnc7zmDHjcgzbEvNeC6ukRV2-Dr2N0hIjdRvHQII7IWekgr-yzb8X-ErBKgza36yEakBpYLqnR2upflsQd_a8gxwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:50 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '359d9e5b-f9ee-4993-85f2-3e0b3f020800', + 'x-ms-ests-server', + '2.1.12158.6 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AsYjpjolNLNDsJ6um2dktqw; expires=Wed, 17-Nov-2021 07:36:51 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrAx0QXUe2n-G0HsjYQLSvsZJ-Jf8Z6u_JmfjU6Z3RbD0UCSu97fG33zRWjmR6KlWZ7L7EHw-hScYUqtw9OyAJ-jtwrq6tSgJPKbHL9i26fPbO6TvCgJd0IFfUVjrvBKJ3cRBSaxVFqGSfYm5Fc4pLqTAeoOD6qvJt4pTNJbpqvoQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:50 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.2&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=16286642-ae0f-44c5-a92e-17b8c66eee4e&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-Type', + 'application/json; charset=utf-8', + 'Expires', + '-1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '95bf35d7-2ecf-47ae-a44e-827494d81000', + 'x-ms-ests-server', + '2.1.12158.6 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AlkfTN5Qw0BFoeXcU8Vd1y4WPr5BAQAAABMb_9gOAAAA; expires=Wed, 17-Nov-2021 07:36:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Mon, 18 Oct 2021 07:36:51 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .patch('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines/virtualmachinex', {"properties":{"networkProfile":{"networkInterfaces":[{"id":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Network/networkInterfaces/interfacex","properties":{"primary":true}}]}}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e947cb6c917ff428fde8b2a8db75562eb2e9bc58e6ef3e1af1b7c50cdfdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e4faac56adde67715872f0487c6fcddc1a9bd5e31c637beafedcb6a9a0171bc93674dbb365fb4d945431f321de8cfec074d3e5d65d3b7f4d947cb6a4998cea4257db92ab3f6bcaa174ddeb6c5f2a219cfaba6fdfdf32575592d17f9b21d37797d594cf3b169f9fb57ab369f15cbdf9ffef8fdebaa6aa779dda2bf8fda7a9d7f04b8bf84a17f441dade8bb823076d85c2ece98f65976be33cd3eddd99e3c98dedfde3fbf3fdb7e783efb747b277f904d1f7cfae9c1fd7d87e53cab6757599dbfacabf3a20495141c7d77b9785dfc001f7df4bacd96336af9fb3fddfbfd2ff71813830bb56bdaaace2ea2208a057df12a3fcfeb7c390dbea22f57eb495934f3bca6cfdddc7cb758ceaaabe6351187bed13ef07c549d131cb41d6ed2bc5da3c1deceeea7db4fb3369b129d3b4de89546e796e84e0c167c9bbfcba6ed4fba26bbfbf71ede1bef3fd8d91fefedeeeeec7c4aff7eaa047024a017abe669d18011fc1156cd1b653d4539e8cb08d2e2fa27bfa89a195ef7bf9ed639e1f7258b109a3dababc519e819b662d6bd4083577936fb6e5db4618345b6a477667dece83b9db9e3e9b45a2f5b83ab9dede7af5efba0e8851fae748324686ac9e370719427ac667999fb947a9ad3cccf7dd43fc2ebe0e6cf9f5083ddbd07e62b07e7a319f10ba80499fa9ef934ed50ac5ca3871dfb161e3b9124dad02646fbfcfee874eff7bff77092edefec4e1f4ef2fbfbf73fbd974df7f63e7db897ef9c4f1eeeec1f4c7c3c095877da4f17abf6badb867be0497f512d83f9a66f37cc387dfbbe734eaffc5cccfad7a4a58fb99b5b3cb7e01234a26e1c9fececdd0bbf6eab27b9bc978326e759d9e4ae81df614076659b5def7bfa7013dbdcfbfd67b39d7b7bf7688cbbd3ddfddd4f771f9eef9e3f9c3e7c48aae8fcd36976d041fc476c4378c7d9e616b4f431f7679146f143601bf3ebf7e5178300998f984d9dca80eb17ca3ed08f0e9d8fb2d9a2587e45be85612f506e4d7f7b6daec41a9d54cbf3e2625d1b67c7f6414d98d4b0823ff9c5f1055951fa1a5e8885414df2653629f3e3755b2d08c2f4ab156950f648ba0d57593b9dbf563f88bef7fa31df7e51cd18590bedc9f5971d8efa286b9abc69e03a99d66c0e9fe6e7d9ba6cbd39b4043594a497c953ab73f6a6bef77df7695696d5d5e9bb365f62a85f9253457d139b52b360101fd5f92f5a1775fef99a88499322a4795d5c2cb352db4a53d3e347cbbcbdaaeab7d4d64ca0f9e80c2ec939b926d4cbf77e314bc9cfba90bc90aeeff650b85b985fc959c6a41309c4affcc5f417b96ff5f5478f30bc5ff24bbe6fc746cd8400349fa401c8e1a0b9e0e9a70f781e68067e","c9ff0317d092442e0c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'cce884b3-cf47-48e5-b242-1a28485b45a4', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1196', + 'x-ms-correlation-request-id', + 'f37992fc-2b58-4f73-b3d0-ff82954a05ca', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073655Z:f37992fc-2b58-4f73-b3d0-ff82954a05ca', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:54 GMT' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Compute/virtualMachines/virtualmachinex') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef16f9ca4e947cb6c917ff428fde8b2a8db75562eb2e9bc58e6ef3e1af1b7c50cdfdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e4faac56adde67715872f0487c6fcddc1a9bd5e31c637beafedcb6a9a0171bc93674dbb365fb4d945431f321de8cfec074d3e5d65d3b7f4d947cb6a4998cea4257db92ab3f6bcaa174ddeb6c5f2a219cfaba6fdfdf32575592d17f9b21d37797d594cf3b169f9fb57ab369f15cbdf9ffef8fdebaa6aa779dda2bf8fda7a9d7f04b8bf84a17f441dade8bb823076d85c2ece98f65976be33cd3eddd99e3c98dedfde3fbf3fdb7e783efb747b277f904d1f7cfae9c1fd7d87e53cab6757599dbfacabf3a20495141c7d77b9785dfc001f7df4bacd96336af9fb3fddfbfd2ff71813830bb56bdaaace2ea2208a057df12a3fcfeb7c390dbea22f57eb495934f3bca6cfdddc7cb758ceaaabe6351187bed13ef07c549d131cb41d6ed2bc5da3c1deceeea7db4fb3369b129d3b4de89546e796e84e0c167c9bbfcba6ed4fba26bbfbf71ede1bef3fd8d91fefedeeeeec7c4aff7eaa047024a017abe669d18011fc1156cd1b653d4539e8cb08d2e2fa27bfa89a195ef7bf9ed639e1f7258b109a3dababc519e819b662d6bd4083577936fb6e5db4618345b6a477667dece83b9db9e3e9b45a2f5b83ab9dede7af5efba0e8851fae748324686ac9e370719427ac667999fb947a9ad3cccf7dd43fc2ebe0e6cf9f5083ddbd07e62b07e7a319f10ba80499fa9ef934ed50ac5ca3871dfb161e3b9124dad02646fbfcfee874eff7bff77092edefec4e1f4ef2fbfbf73fbd974df7f63e7db897ef9c4f1eeeec1f4c7c3c095877da4f17abf6badb867be0497f512d83f9a66f37cc387dfbbe734eaffc5cccfad7a4a58fb99b5b3cb7e01234a26e1c9fececdd0bbf6eab27b9bc978326e759d9e4ae81df614076659b5def7bfa7013dbdcfbfd67b39d7b7bf7688cbbd3ddfddd4f771f9eef9e3f9c3e7c48aae8fcd36976d041fc476c4378c7d9e616b4f431f7679146f143601bf3ebf7e5178300998f984d9dca80eb17ca3ed08f0e9d8fb2d9a2587e45be85612f506e4d7f7b6daec41a9d54cbf3e2625d1b67c7f6414d98d4b0823ff9c5f1055951fa1a5e8885414df2653629f3e3755b2d08c2f4ab156950f648ba0d57593b9dbf563f88bef7fa31df7e51cd18590bedc9f5971d8efa286b9abc69e03a99d66c0e9fe6e7d9ba6cbd39b4043594a497c953ab73f6a6bef77df7695696d5d5e9bb365f62a85f9253457d139b52b360101fd5f92f5a1775fef99a88499322a4795d5c2cb352db4a53d3e347cbbcbdaaeab7d4d64ca0f9e80c2ec939b926d4cbf77e314bc9cfba90bc90aeeff650b85b985fc959c6a41309c4affcc5f417b96ff5f5478f30bc5ff24bbe6fc746cd8400349fa401c8e1a0b978bd9e4ef37c460c8e563405bf","e4ff01bbdeb9622f0c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-resource', + 'Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'x-ms-request-id', + 'aed35dbf-2e07-43da-8dd7-9e6280863c2e', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11810', + 'x-ms-correlation-request-id', + 'd59cd0cf-c273-447b-98ef-d00faef0b1df', + 'x-ms-routing-request-id', + 'SOUTHEASTASIA:20211018T073655Z:d59cd0cf-c273-447b-98ef-d00faef0b1df', + 'X-Content-Type-Options', + 'nosniff', + 'Date', + 'Mon, 18 Oct 2021 07:36:54 GMT' +]); diff --git a/sdk/compute/arm-compute/review/arm-compute.api.md b/sdk/compute/arm-compute/review/arm-compute.api.md index 93d2c2189ada..a9317ad27077 100644 --- a/sdk/compute/arm-compute/review/arm-compute.api.md +++ b/sdk/compute/arm-compute/review/arm-compute.api.md @@ -4,8 +4,6 @@ ```ts -/// - import * as coreAuth from '@azure/core-auth'; import * as coreClient from '@azure/core-client'; import { PagedAsyncIterableIterator } from '@azure/core-paging'; @@ -900,6 +898,64 @@ export interface CloudServiceVaultSecretGroup { vaultCertificates?: CloudServiceVaultCertificate[]; } +// @public +export interface CommunityGalleries { + get(location: string, publicGalleryName: string, options?: CommunityGalleriesGetOptionalParams): Promise; +} + +// @public +export interface CommunityGalleriesGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CommunityGalleriesGetResponse = CommunityGallery; + +// @public +export type CommunityGallery = PirCommunityGalleryResource & {}; + +// @public +export type CommunityGalleryImage = PirCommunityGalleryResource & { + osType?: OperatingSystemTypes; + osState?: OperatingSystemStateTypes; + endOfLifeDate?: Date; + identifier?: GalleryImageIdentifier; + recommended?: RecommendedMachineConfiguration; + disallowed?: Disallowed; + hyperVGeneration?: HyperVGeneration; + features?: GalleryImageFeature[]; + purchasePlan?: ImagePurchasePlan; +}; + +// @public +export interface CommunityGalleryImages { + get(location: string, publicGalleryName: string, galleryImageName: string, options?: CommunityGalleryImagesGetOptionalParams): Promise; +} + +// @public +export interface CommunityGalleryImagesGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CommunityGalleryImagesGetResponse = CommunityGalleryImage; + +// @public +export type CommunityGalleryImageVersion = PirCommunityGalleryResource & { + publishedDate?: Date; + endOfLifeDate?: Date; +}; + +// @public +export interface CommunityGalleryImageVersions { + get(location: string, publicGalleryName: string, galleryImageName: string, galleryImageVersionName: string, options?: CommunityGalleryImageVersionsGetOptionalParams): Promise; +} + +// @public +export interface CommunityGalleryImageVersionsGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CommunityGalleryImageVersionsGetResponse = CommunityGalleryImageVersion; + // @public (undocumented) export class ComputeManagementClient extends ComputeManagementClientContext { constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ComputeManagementClientOptionalParams); @@ -920,6 +976,12 @@ export class ComputeManagementClient extends ComputeManagementClientContext { // (undocumented) cloudServicesUpdateDomain: CloudServicesUpdateDomain; // (undocumented) + communityGalleries: CommunityGalleries; + // (undocumented) + communityGalleryImages: CommunityGalleryImages; + // (undocumented) + communityGalleryImageVersions: CommunityGalleryImageVersions; + // (undocumented) dedicatedHostGroups: DedicatedHostGroups; // (undocumented) dedicatedHosts: DedicatedHosts; @@ -1320,6 +1382,7 @@ export type Disk = Resource & { osType?: OperatingSystemTypes; hyperVGeneration?: HyperVGeneration; purchasePlan?: PurchasePlanAutoGenerated; + supportedCapabilities?: SupportedCapabilities; creationData?: CreationData; diskSizeGB?: number; readonly diskSizeBytes?: number; @@ -1341,10 +1404,13 @@ export type Disk = Resource & { readonly propertyUpdatesInProgress?: PropertyUpdatesInProgress; supportsHibernation?: boolean; securityProfile?: DiskSecurityProfile; + completionPercent?: number; + publicNetworkAccess?: PublicNetworkAccess; }; // @public export type DiskAccess = Resource & { + extendedLocation?: ExtendedLocation; readonly privateEndpointConnections?: PrivateEndpointConnection[]; readonly provisioningState?: string; readonly timeCreated?: Date; @@ -1506,6 +1572,7 @@ export type DiskEncryptionSet = Resource & { readonly provisioningState?: string; rotationToLatestKeyVersionEnabled?: boolean; readonly lastKeyRotationTimestamp?: Date; + readonly autoKeyRotationError?: ApiError; }; // @public @@ -1653,60 +1720,65 @@ export type DiskRestorePoint = ProxyOnlyResource & { readonly osType?: OperatingSystemTypes; hyperVGeneration?: HyperVGeneration; purchasePlan?: PurchasePlanAutoGenerated; + supportedCapabilities?: SupportedCapabilities; readonly familyId?: string; readonly sourceUniqueId?: string; readonly encryption?: Encryption; supportsHibernation?: boolean; + networkAccessPolicy?: NetworkAccessPolicy; + publicNetworkAccess?: PublicNetworkAccess; + diskAccessId?: string; + completionPercent?: number; }; // @public -export interface DiskRestorePointList { - nextLink?: string; - value: DiskRestorePoint[]; +export interface DiskRestorePointGetOptionalParams extends coreClient.OperationOptions { } // @public -export interface DiskRestorePointOperations { - beginGrantAccess(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, options?: DiskRestorePointOperationsGrantAccessOptionalParams): Promise, DiskRestorePointOperationsGrantAccessResponse>>; - beginGrantAccessAndWait(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, options?: DiskRestorePointOperationsGrantAccessOptionalParams): Promise; - beginRevokeAccess(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, options?: DiskRestorePointOperationsRevokeAccessOptionalParams): Promise, void>>; - beginRevokeAccessAndWait(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, options?: DiskRestorePointOperationsRevokeAccessOptionalParams): Promise; - get(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, options?: DiskRestorePointOperationsGetOptionalParams): Promise; - listByRestorePoint(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, options?: DiskRestorePointOperationsListByRestorePointOptionalParams): PagedAsyncIterableIterator; -} +export type DiskRestorePointGetResponse = DiskRestorePoint; // @public -export interface DiskRestorePointOperationsGetOptionalParams extends coreClient.OperationOptions { +export interface DiskRestorePointGrantAccessOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; } // @public -export type DiskRestorePointOperationsGetResponse = DiskRestorePoint; +export type DiskRestorePointGrantAccessResponse = AccessUri; // @public -export interface DiskRestorePointOperationsGrantAccessOptionalParams extends coreClient.OperationOptions { - resumeFrom?: string; - updateIntervalInMs?: number; +export interface DiskRestorePointList { + nextLink?: string; + value: DiskRestorePoint[]; } // @public -export type DiskRestorePointOperationsGrantAccessResponse = AccessUri; - -// @public -export interface DiskRestorePointOperationsListByRestorePointNextOptionalParams extends coreClient.OperationOptions { +export interface DiskRestorePointListByRestorePointNextOptionalParams extends coreClient.OperationOptions { } // @public -export type DiskRestorePointOperationsListByRestorePointNextResponse = DiskRestorePointList; +export type DiskRestorePointListByRestorePointNextResponse = DiskRestorePointList; // @public -export interface DiskRestorePointOperationsListByRestorePointOptionalParams extends coreClient.OperationOptions { +export interface DiskRestorePointListByRestorePointOptionalParams extends coreClient.OperationOptions { } // @public -export type DiskRestorePointOperationsListByRestorePointResponse = DiskRestorePointList; +export type DiskRestorePointListByRestorePointResponse = DiskRestorePointList; + +// @public +export interface DiskRestorePointOperations { + beginGrantAccess(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, options?: DiskRestorePointGrantAccessOptionalParams): Promise, DiskRestorePointGrantAccessResponse>>; + beginGrantAccessAndWait(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, options?: DiskRestorePointGrantAccessOptionalParams): Promise; + beginRevokeAccess(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, options?: DiskRestorePointRevokeAccessOptionalParams): Promise, void>>; + beginRevokeAccessAndWait(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, options?: DiskRestorePointRevokeAccessOptionalParams): Promise; + get(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, options?: DiskRestorePointGetOptionalParams): Promise; + listByRestorePoint(resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, options?: DiskRestorePointListByRestorePointOptionalParams): PagedAsyncIterableIterator; +} // @public -export interface DiskRestorePointOperationsRevokeAccessOptionalParams extends coreClient.OperationOptions { +export interface DiskRestorePointRevokeAccessOptionalParams extends coreClient.OperationOptions { resumeFrom?: string; updateIntervalInMs?: number; } @@ -1837,8 +1909,10 @@ export interface DiskUpdate { networkAccessPolicy?: NetworkAccessPolicy; osType?: OperatingSystemTypes; readonly propertyUpdatesInProgress?: PropertyUpdatesInProgress; + publicNetworkAccess?: PublicNetworkAccess; purchasePlan?: PurchasePlanAutoGenerated; sku?: DiskSku; + supportedCapabilities?: SupportedCapabilities; supportsHibernation?: boolean; tags?: { [propertyName: string]: string; @@ -2473,14 +2547,13 @@ export type HyperVGenerationType = string; export type HyperVGenerationTypes = string; // @public -type Image_2 = Resource & { +export type Image = Resource & { extendedLocation?: ExtendedLocation; sourceVirtualMachine?: SubResource; storageProfile?: ImageStorageProfile; readonly provisioningState?: string; hyperVGeneration?: HyperVGenerationTypes; }; -export { Image_2 as Image } // @public export type ImageDataDisk = ImageDisk & { @@ -2507,7 +2580,7 @@ export interface ImageDiskReference { // @public export interface ImageListResult { nextLink?: string; - value: Image_2[]; + value: Image[]; } // @public @@ -2535,15 +2608,15 @@ export type ImageReference = SubResource & { // @public export interface Images { - beginCreateOrUpdate(resourceGroupName: string, imageName: string, parameters: Image_2, options?: ImagesCreateOrUpdateOptionalParams): Promise, ImagesCreateOrUpdateResponse>>; - beginCreateOrUpdateAndWait(resourceGroupName: string, imageName: string, parameters: Image_2, options?: ImagesCreateOrUpdateOptionalParams): Promise; + beginCreateOrUpdate(resourceGroupName: string, imageName: string, parameters: Image, options?: ImagesCreateOrUpdateOptionalParams): Promise, ImagesCreateOrUpdateResponse>>; + beginCreateOrUpdateAndWait(resourceGroupName: string, imageName: string, parameters: Image, options?: ImagesCreateOrUpdateOptionalParams): Promise; beginDelete(resourceGroupName: string, imageName: string, options?: ImagesDeleteOptionalParams): Promise, void>>; beginDeleteAndWait(resourceGroupName: string, imageName: string, options?: ImagesDeleteOptionalParams): Promise; beginUpdate(resourceGroupName: string, imageName: string, parameters: ImageUpdate, options?: ImagesUpdateOptionalParams): Promise, ImagesUpdateResponse>>; beginUpdateAndWait(resourceGroupName: string, imageName: string, parameters: ImageUpdate, options?: ImagesUpdateOptionalParams): Promise; get(resourceGroupName: string, imageName: string, options?: ImagesGetOptionalParams): Promise; - list(options?: ImagesListOptionalParams): PagedAsyncIterableIterator; - listByResourceGroup(resourceGroupName: string, options?: ImagesListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + list(options?: ImagesListOptionalParams): PagedAsyncIterableIterator; + listByResourceGroup(resourceGroupName: string, options?: ImagesListByResourceGroupOptionalParams): PagedAsyncIterableIterator; } // @public @@ -2553,7 +2626,7 @@ export interface ImagesCreateOrUpdateOptionalParams extends coreClient.Operation } // @public -export type ImagesCreateOrUpdateResponse = Image_2; +export type ImagesCreateOrUpdateResponse = Image; // @public export interface ImagesDeleteOptionalParams extends coreClient.OperationOptions { @@ -2567,7 +2640,7 @@ export interface ImagesGetOptionalParams extends coreClient.OperationOptions { } // @public -export type ImagesGetResponse = Image_2; +export type ImagesGetResponse = Image; // @public export interface ImagesListByResourceGroupNextOptionalParams extends coreClient.OperationOptions { @@ -2611,7 +2684,7 @@ export interface ImagesUpdateOptionalParams extends coreClient.OperationOptions } // @public -export type ImagesUpdateResponse = Image_2; +export type ImagesUpdateResponse = Image; // @public export type ImageUpdate = UpdateResource & { @@ -2777,6 +2850,7 @@ export enum KnownDiffDiskPlacement { export enum KnownDiskCreateOption { Attach = "Attach", Copy = "Copy", + CopyStart = "CopyStart", Empty = "Empty", FromImage = "FromImage", Import = "Import", @@ -2830,8 +2904,10 @@ export enum KnownDiskSecurityTypes { // @public export enum KnownDiskState { ActiveSAS = "ActiveSAS", + ActiveSASFrozen = "ActiveSASFrozen", ActiveUpload = "ActiveUpload", Attached = "Attached", + Frozen = "Frozen", ReadyToUpload = "ReadyToUpload", Reserved = "Reserved", Unattached = "Unattached" @@ -3173,6 +3249,12 @@ export enum KnownPublicIPAllocationMethod { Static = "Static" } +// @public +export enum KnownPublicNetworkAccess { + Disabled = "Disabled", + Enabled = "Enabled" +} + // @public export enum KnownReplicationMode { // (undocumented) @@ -4065,6 +4147,14 @@ export interface PatchSettings { patchMode?: WindowsVMGuestPatchMode; } +// @public +export interface PirCommunityGalleryResource { + readonly location?: string; + readonly name?: string; + readonly type?: string; + uniqueId?: string; +} + // @public export interface PirResource { readonly location?: string; @@ -4255,6 +4345,9 @@ export type PublicIPAddressSkuTier = string; // @public export type PublicIPAllocationMethod = string; +// @public +export type PublicNetworkAccess = string; + // @public export interface PurchasePlan { name: string; @@ -4984,6 +5077,7 @@ export type Snapshot = Resource & { osType?: OperatingSystemTypes; hyperVGeneration?: HyperVGeneration; purchasePlan?: PurchasePlanAutoGenerated; + supportedCapabilities?: SupportedCapabilities; creationData?: CreationData; diskSizeGB?: number; readonly diskSizeBytes?: number; @@ -4996,6 +5090,8 @@ export type Snapshot = Resource & { networkAccessPolicy?: NetworkAccessPolicy; diskAccessId?: string; supportsHibernation?: boolean; + publicNetworkAccess?: PublicNetworkAccess; + completionPercent?: number; }; // @public @@ -5112,6 +5208,7 @@ export interface SnapshotUpdate { encryptionSettingsCollection?: EncryptionSettingsCollection; networkAccessPolicy?: NetworkAccessPolicy; osType?: OperatingSystemTypes; + publicNetworkAccess?: PublicNetworkAccess; sku?: SnapshotSku; supportsHibernation?: boolean; tags?: { @@ -5277,6 +5374,11 @@ export type SubResourceWithColocationStatus = SubResource & { colocationStatus?: InstanceViewStatus; }; +// @public +export interface SupportedCapabilities { + acceleratedNetwork?: boolean; +} + // @public export interface TargetRegion { encryption?: EncryptionImages; @@ -5380,29 +5482,29 @@ export interface Usage { } // @public -export interface UsageName { - localizedValue?: string; - value?: string; +export interface UsageListNextOptionalParams extends coreClient.OperationOptions { } // @public -export interface UsageOperations { - list(location: string, options?: UsageOperationsListOptionalParams): PagedAsyncIterableIterator; -} +export type UsageListNextResponse = ListUsagesResult; // @public -export interface UsageOperationsListNextOptionalParams extends coreClient.OperationOptions { +export interface UsageListOptionalParams extends coreClient.OperationOptions { } // @public -export type UsageOperationsListNextResponse = ListUsagesResult; +export type UsageListResponse = ListUsagesResult; // @public -export interface UsageOperationsListOptionalParams extends coreClient.OperationOptions { +export interface UsageName { + localizedValue?: string; + value?: string; } // @public -export type UsageOperationsListResponse = ListUsagesResult; +export interface UsageOperations { + list(location: string, options?: UsageListOptionalParams): PagedAsyncIterableIterator; +} // @public (undocumented) export interface UserArtifactManage { @@ -7539,6 +7641,7 @@ export interface WinRMListener { protocol?: ProtocolTypes; } + // (No @packageDocumentation comment for this package) ``` diff --git a/sdk/compute/arm-compute/src/computeManagementClient.ts b/sdk/compute/arm-compute/src/computeManagementClient.ts index 84e8674921de..5990bbeb9297 100644 --- a/sdk/compute/arm-compute/src/computeManagementClient.ts +++ b/sdk/compute/arm-compute/src/computeManagementClient.ts @@ -49,6 +49,9 @@ import { SharedGalleriesImpl, SharedGalleryImagesImpl, SharedGalleryImageVersionsImpl, + CommunityGalleriesImpl, + CommunityGalleryImagesImpl, + CommunityGalleryImageVersionsImpl, CloudServiceRoleInstancesImpl, CloudServiceRolesImpl, CloudServicesImpl, @@ -97,6 +100,9 @@ import { SharedGalleries, SharedGalleryImages, SharedGalleryImageVersions, + CommunityGalleries, + CommunityGalleryImages, + CommunityGalleryImageVersions, CloudServiceRoleInstances, CloudServiceRoles, CloudServices, @@ -173,6 +179,11 @@ export class ComputeManagementClient extends ComputeManagementClientContext { this.sharedGalleries = new SharedGalleriesImpl(this); this.sharedGalleryImages = new SharedGalleryImagesImpl(this); this.sharedGalleryImageVersions = new SharedGalleryImageVersionsImpl(this); + this.communityGalleries = new CommunityGalleriesImpl(this); + this.communityGalleryImages = new CommunityGalleryImagesImpl(this); + this.communityGalleryImageVersions = new CommunityGalleryImageVersionsImpl( + this + ); this.cloudServiceRoleInstances = new CloudServiceRoleInstancesImpl(this); this.cloudServiceRoles = new CloudServiceRolesImpl(this); this.cloudServices = new CloudServicesImpl(this); @@ -223,6 +234,9 @@ export class ComputeManagementClient extends ComputeManagementClientContext { sharedGalleries: SharedGalleries; sharedGalleryImages: SharedGalleryImages; sharedGalleryImageVersions: SharedGalleryImageVersions; + communityGalleries: CommunityGalleries; + communityGalleryImages: CommunityGalleryImages; + communityGalleryImageVersions: CommunityGalleryImageVersions; cloudServiceRoleInstances: CloudServiceRoleInstances; cloudServiceRoles: CloudServiceRoles; cloudServices: CloudServices; diff --git a/sdk/compute/arm-compute/src/computeManagementClientContext.ts b/sdk/compute/arm-compute/src/computeManagementClientContext.ts index b8bde782d297..ba50e69638e0 100644 --- a/sdk/compute/arm-compute/src/computeManagementClientContext.ts +++ b/sdk/compute/arm-compute/src/computeManagementClientContext.ts @@ -42,7 +42,7 @@ export class ComputeManagementClientContext extends coreClient.ServiceClient { credential: credentials }; - const packageDetails = `azsdk-js-arm-compute/17.0.0-beta.1`; + const packageDetails = `azsdk-js-arm-compute/17.0.0-beta.2`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` diff --git a/sdk/compute/arm-compute/src/models/index.ts b/sdk/compute/arm-compute/src/models/index.ts index bb1c97fa5682..b70c03ab7c7c 100644 --- a/sdk/compute/arm-compute/src/models/index.ts +++ b/sdk/compute/arm-compute/src/models/index.ts @@ -2660,6 +2660,12 @@ export interface PurchasePlanAutoGenerated { promotionCode?: string; } +/** List of supported capabilities (like accelerated networking) persisted on the disk resource for VM use. */ +export interface SupportedCapabilities { + /** True if the image from which the OS disk is created supports accelerated networking. */ + acceleratedNetwork?: boolean; +} + /** Data used when creating a disk. */ export interface CreationData { /** This enumerates the possible sources of a disk's creation. */ @@ -2795,6 +2801,8 @@ export interface DiskUpdate { burstingEnabled?: boolean; /** Purchase plan information to be added on the OS disk */ purchasePlan?: PurchasePlanAutoGenerated; + /** List of supported capabilities (like accelerated networking) to be added on the OS disk. */ + supportedCapabilities?: SupportedCapabilities; /** * Properties of the disk for which update is pending. * NOTE: This property will not be serialized. It can only be populated by the server. @@ -2802,6 +2810,8 @@ export interface DiskUpdate { readonly propertyUpdatesInProgress?: PropertyUpdatesInProgress; /** Indicates the OS on a disk supports hibernation. */ supportsHibernation?: boolean; + /** Policy for controlling export on the disk. */ + publicNetworkAccess?: PublicNetworkAccess; } /** The List Disks operation response. */ @@ -2859,6 +2869,8 @@ export interface SnapshotUpdate { diskAccessId?: string; /** Indicates the OS on a snapshot supports hibernation. */ supportsHibernation?: boolean; + /** Policy for controlling export on the disk. */ + publicNetworkAccess?: PublicNetworkAccess; } /** The List Snapshots operation response. */ @@ -3383,6 +3395,27 @@ export interface SharedGalleryImageVersionList { nextLink?: string; } +/** Base information about the community gallery resource in pir. */ +export interface PirCommunityGalleryResource { + /** + * Resource name + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly name?: string; + /** + * Resource location + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly location?: string; + /** + * Resource type + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly type?: string; + /** The unique id of this community gallery. */ + uniqueId?: string; +} + export interface RoleInstance { /** * Resource Id @@ -4495,6 +4528,8 @@ export type Disk = Resource & { hyperVGeneration?: HyperVGeneration; /** Purchase plan information for the the image from which the OS disk was created. E.g. - {name: 2019-Datacenter, publisher: MicrosoftWindowsServer, product: WindowsServer} */ purchasePlan?: PurchasePlanAutoGenerated; + /** List of supported capabilities for the image from which the OS disk was created. */ + supportedCapabilities?: SupportedCapabilities; /** Disk source information. CreationData information cannot be changed after the disk has been created. */ creationData?: CreationData; /** If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size. */ @@ -4555,6 +4590,10 @@ export type Disk = Resource & { supportsHibernation?: boolean; /** Contains the security related information for the resource. */ securityProfile?: DiskSecurityProfile; + /** Percentage complete for the background copy when a resource is created via the CopyStart operation. */ + completionPercent?: number; + /** Policy for controlling export on the disk. */ + publicNetworkAccess?: PublicNetworkAccess; }; /** Snapshot resource. */ @@ -4579,6 +4618,8 @@ export type Snapshot = Resource & { hyperVGeneration?: HyperVGeneration; /** Purchase plan information for the image from which the source disk for the snapshot was originally created. */ purchasePlan?: PurchasePlanAutoGenerated; + /** List of supported capabilities (like Accelerated Networking) for the image from which the source disk from the snapshot was originally created. */ + supportedCapabilities?: SupportedCapabilities; /** Disk source information. CreationData information cannot be changed after the disk has been created. */ creationData?: CreationData; /** If creationData.createOption is Empty, this field is mandatory and it indicates the size of the disk to create. If this field is present for updates or creation with other options, it indicates a resize. Resizes are only allowed if the disk is not attached to a running VM, and can only increase the disk's size. */ @@ -4615,6 +4656,10 @@ export type Snapshot = Resource & { diskAccessId?: string; /** Indicates the OS on a snapshot supports hibernation. */ supportsHibernation?: boolean; + /** Policy for controlling export on the disk. */ + publicNetworkAccess?: PublicNetworkAccess; + /** Percentage complete for the background copy when a resource is created via the CopyStart operation. */ + completionPercent?: number; }; /** disk encryption set resource. */ @@ -4642,10 +4687,17 @@ export type DiskEncryptionSet = Resource & { * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly lastKeyRotationTimestamp?: Date; + /** + * The error that was encountered during auto-key rotation. If an error is present, then auto-key rotation will not be attempted until the error on this disk encryption set is fixed. + * NOTE: This property will not be serialized. It can only be populated by the server. + */ + readonly autoKeyRotationError?: ApiError; }; /** disk access resource. */ export type DiskAccess = Resource & { + /** The extended location where the disk access will be created. Extended location cannot be changed. */ + extendedLocation?: ExtendedLocation; /** * A readonly collection of private endpoint connections created on the disk. Currently only one endpoint connection is supported. * NOTE: This property will not be serialized. It can only be populated by the server. @@ -5497,6 +5549,8 @@ export type DiskRestorePoint = ProxyOnlyResource & { hyperVGeneration?: HyperVGeneration; /** Purchase plan information for the the image from which the OS disk was created. */ purchasePlan?: PurchasePlanAutoGenerated; + /** List of supported capabilities (like accelerated networking) for the image from which the OS disk was created. */ + supportedCapabilities?: SupportedCapabilities; /** * id of the backing snapshot's MIS family * NOTE: This property will not be serialized. It can only be populated by the server. @@ -5514,6 +5568,14 @@ export type DiskRestorePoint = ProxyOnlyResource & { readonly encryption?: Encryption; /** Indicates the OS on a disk supports hibernation. */ supportsHibernation?: boolean; + /** Policy for accessing the disk via network. */ + networkAccessPolicy?: NetworkAccessPolicy; + /** Policy for controlling export on the disk. */ + publicNetworkAccess?: PublicNetworkAccess; + /** ARM id of the DiskAccess resource for using private endpoints on disks. */ + diskAccessId?: string; + /** Percentage complete for the background copy when a resource is created via the CopyStart operation. */ + completionPercent?: number; }; /** Specifies information about the Shared Image Gallery that you want to update. */ @@ -5654,6 +5716,39 @@ export type PirSharedGalleryResource = PirResource & { uniqueId?: string; }; +/** Specifies information about the Community Gallery that you want to create or update. */ +export type CommunityGallery = PirCommunityGalleryResource & {}; + +/** Specifies information about the gallery image definition that you want to create or update. */ +export type CommunityGalleryImage = PirCommunityGalleryResource & { + /** This property allows you to specify the type of the OS that is included in the disk when creating a VM from a managed image.

Possible values are:

**Windows**

**Linux** */ + osType?: OperatingSystemTypes; + /** This property allows the user to specify whether the virtual machines created under this image are 'Generalized' or 'Specialized'. */ + osState?: OperatingSystemStateTypes; + /** The end of life date of the gallery image definition. This property can be used for decommissioning purposes. This property is updatable. */ + endOfLifeDate?: Date; + /** This is the gallery image definition identifier. */ + identifier?: GalleryImageIdentifier; + /** The properties describe the recommended machine configuration for this Image Definition. These properties are updatable. */ + recommended?: RecommendedMachineConfiguration; + /** Describes the disallowed disk types. */ + disallowed?: Disallowed; + /** The hypervisor generation of the Virtual Machine. Applicable to OS disks only. */ + hyperVGeneration?: HyperVGeneration; + /** A list of gallery image features. */ + features?: GalleryImageFeature[]; + /** Describes the gallery image definition purchase plan. This is used by marketplace images. */ + purchasePlan?: ImagePurchasePlan; +}; + +/** Specifies information about the gallery image version that you want to create or update. */ +export type CommunityGalleryImageVersion = PirCommunityGalleryResource & { + /** The published date of the gallery image version Definition. This property can be used for decommissioning purposes. This property is updatable. */ + publishedDate?: Date; + /** The end of life date of the gallery image version Definition. This property can be used for decommissioning purposes. This property is updatable. */ + endOfLifeDate?: Date; +}; + /** Describes a Virtual Machine Image. */ export type VirtualMachineImage = VirtualMachineImageResource & { /** Used for establishing the purchase context of any 3rd Party artifact through MarketPlace. */ @@ -6918,7 +7013,9 @@ export enum KnownDiskCreateOption { /** Create a new disk by copying from a backup recovery point. */ Restore = "Restore", /** Create a new disk by obtaining a write token and using it to directly upload the contents of the disk. */ - Upload = "Upload" + Upload = "Upload", + /** Create a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source. */ + CopyStart = "CopyStart" } /** @@ -6932,7 +7029,8 @@ export enum KnownDiskCreateOption { * **Import**: Create a disk by importing from a blob specified by a sourceUri in a storage account specified by storageAccountId. \ * **Copy**: Create a new disk or snapshot by copying from a disk or snapshot specified by the given sourceResourceId. \ * **Restore**: Create a new disk by copying from a backup recovery point. \ - * **Upload**: Create a new disk by obtaining a write token and using it to directly upload the contents of the disk. + * **Upload**: Create a new disk by obtaining a write token and using it to directly upload the contents of the disk. \ + * **CopyStart**: Create a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source. */ export type DiskCreateOption = string; @@ -6940,12 +7038,16 @@ export type DiskCreateOption = string; export enum KnownDiskState { /** The disk is not being used and can be attached to a VM. */ Unattached = "Unattached", - /** The disk is currently mounted to a running VM. */ + /** The disk is currently attached to a running VM. */ Attached = "Attached", - /** The disk is mounted to a stopped-deallocated VM */ + /** The disk is attached to a stopped-deallocated VM. */ Reserved = "Reserved", + /** The disk is attached to a VM which is in hibernated state. */ + Frozen = "Frozen", /** The disk currently has an Active SAS Uri associated with it. */ ActiveSAS = "ActiveSAS", + /** The disk is attached to a VM in hibernated state and has an active SAS URI associated with it. */ + ActiveSASFrozen = "ActiveSASFrozen", /** A disk is ready to be created by upload by requesting a write token. */ ReadyToUpload = "ReadyToUpload", /** A disk is created for upload and a write token has been issued for uploading to it. */ @@ -6958,9 +7060,11 @@ export enum KnownDiskState { * this enum contains the known values that the service supports. * ### Known values supported by the service * **Unattached**: The disk is not being used and can be attached to a VM. \ - * **Attached**: The disk is currently mounted to a running VM. \ - * **Reserved**: The disk is mounted to a stopped-deallocated VM \ + * **Attached**: The disk is currently attached to a running VM. \ + * **Reserved**: The disk is attached to a stopped-deallocated VM. \ + * **Frozen**: The disk is attached to a VM which is in hibernated state. \ * **ActiveSAS**: The disk currently has an Active SAS Uri associated with it. \ + * **ActiveSASFrozen**: The disk is attached to a VM in hibernated state and has an active SAS URI associated with it. \ * **ReadyToUpload**: A disk is ready to be created by upload by requesting a write token. \ * **ActiveUpload**: A disk is created for upload and a write token has been issued for uploading to it. */ @@ -7023,6 +7127,24 @@ export enum KnownDiskSecurityTypes { */ export type DiskSecurityTypes = string; +/** Known values of {@link PublicNetworkAccess} that the service accepts. */ +export enum KnownPublicNetworkAccess { + /** You can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate. */ + Enabled = "Enabled", + /** You cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate. */ + 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**: You can generate a SAS URI to access the underlying data of the disk publicly on the internet when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate. \ + * **Disabled**: You cannot access the underlying data of the disk publicly on the internet even when NetworkAccessPolicy is set to AllowAll. You can access the data via the SAS URI only from your trusted Azure VNET when NetworkAccessPolicy is set to AllowPrivate. + */ +export type PublicNetworkAccess = string; + /** Known values of {@link AccessLevel} that the service accepts. */ export enum KnownAccessLevel { None = "None", @@ -7961,18 +8083,17 @@ export interface VirtualMachineImagesEdgeZoneListSkusOptionalParams export type VirtualMachineImagesEdgeZoneListSkusResponse = VirtualMachineImageResource[]; /** Optional parameters. */ -export interface UsageOperationsListOptionalParams - extends coreClient.OperationOptions {} +export interface UsageListOptionalParams extends coreClient.OperationOptions {} /** Contains response data for the list operation. */ -export type UsageOperationsListResponse = ListUsagesResult; +export type UsageListResponse = ListUsagesResult; /** Optional parameters. */ -export interface UsageOperationsListNextOptionalParams +export interface UsageListNextOptionalParams extends coreClient.OperationOptions {} /** Contains response data for the listNext operation. */ -export type UsageOperationsListNextResponse = ListUsagesResult; +export type UsageListNextResponse = ListUsagesResult; /** Optional parameters. */ export interface VirtualMachinesListByLocationOptionalParams @@ -9659,21 +9780,21 @@ export interface DiskAccessesListPrivateEndpointConnectionsNextOptionalParams export type DiskAccessesListPrivateEndpointConnectionsNextResponse = PrivateEndpointConnectionListResult; /** Optional parameters. */ -export interface DiskRestorePointOperationsGetOptionalParams +export interface DiskRestorePointGetOptionalParams extends coreClient.OperationOptions {} /** Contains response data for the get operation. */ -export type DiskRestorePointOperationsGetResponse = DiskRestorePoint; +export type DiskRestorePointGetResponse = DiskRestorePoint; /** Optional parameters. */ -export interface DiskRestorePointOperationsListByRestorePointOptionalParams +export interface DiskRestorePointListByRestorePointOptionalParams extends coreClient.OperationOptions {} /** Contains response data for the listByRestorePoint operation. */ -export type DiskRestorePointOperationsListByRestorePointResponse = DiskRestorePointList; +export type DiskRestorePointListByRestorePointResponse = DiskRestorePointList; /** Optional parameters. */ -export interface DiskRestorePointOperationsGrantAccessOptionalParams +export interface DiskRestorePointGrantAccessOptionalParams extends coreClient.OperationOptions { /** Delay to wait until next poll, in milliseconds. */ updateIntervalInMs?: number; @@ -9682,10 +9803,10 @@ export interface DiskRestorePointOperationsGrantAccessOptionalParams } /** Contains response data for the grantAccess operation. */ -export type DiskRestorePointOperationsGrantAccessResponse = AccessUri; +export type DiskRestorePointGrantAccessResponse = AccessUri; /** Optional parameters. */ -export interface DiskRestorePointOperationsRevokeAccessOptionalParams +export interface DiskRestorePointRevokeAccessOptionalParams extends coreClient.OperationOptions { /** Delay to wait until next poll, in milliseconds. */ updateIntervalInMs?: number; @@ -9694,11 +9815,11 @@ export interface DiskRestorePointOperationsRevokeAccessOptionalParams } /** Optional parameters. */ -export interface DiskRestorePointOperationsListByRestorePointNextOptionalParams +export interface DiskRestorePointListByRestorePointNextOptionalParams extends coreClient.OperationOptions {} /** Contains response data for the listByRestorePointNext operation. */ -export type DiskRestorePointOperationsListByRestorePointNextResponse = DiskRestorePointList; +export type DiskRestorePointListByRestorePointNextResponse = DiskRestorePointList; /** Optional parameters. */ export interface GalleriesCreateOrUpdateOptionalParams @@ -10086,6 +10207,27 @@ export interface SharedGalleryImageVersionsListNextOptionalParams /** Contains response data for the listNext operation. */ export type SharedGalleryImageVersionsListNextResponse = SharedGalleryImageVersionList; +/** Optional parameters. */ +export interface CommunityGalleriesGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type CommunityGalleriesGetResponse = CommunityGallery; + +/** Optional parameters. */ +export interface CommunityGalleryImagesGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type CommunityGalleryImagesGetResponse = CommunityGalleryImage; + +/** Optional parameters. */ +export interface CommunityGalleryImageVersionsGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type CommunityGalleryImageVersionsGetResponse = CommunityGalleryImageVersion; + /** Optional parameters. */ export interface CloudServiceRoleInstancesDeleteOptionalParams extends coreClient.OperationOptions { diff --git a/sdk/compute/arm-compute/src/models/mappers.ts b/sdk/compute/arm-compute/src/models/mappers.ts index b1ae0cf5b58d..77f1bd607a33 100644 --- a/sdk/compute/arm-compute/src/models/mappers.ts +++ b/sdk/compute/arm-compute/src/models/mappers.ts @@ -6883,6 +6883,21 @@ export const PurchasePlanAutoGenerated: coreClient.CompositeMapper = { } }; +export const SupportedCapabilities: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "SupportedCapabilities", + modelProperties: { + acceleratedNetwork: { + serializedName: "acceleratedNetwork", + type: { + name: "Boolean" + } + } + } + } +}; + export const CreationData: coreClient.CompositeMapper = { type: { name: "Composite", @@ -7264,6 +7279,13 @@ export const DiskUpdate: coreClient.CompositeMapper = { className: "PurchasePlanAutoGenerated" } }, + supportedCapabilities: { + serializedName: "properties.supportedCapabilities", + type: { + name: "Composite", + className: "SupportedCapabilities" + } + }, propertyUpdatesInProgress: { serializedName: "properties.propertyUpdatesInProgress", type: { @@ -7276,6 +7298,12 @@ export const DiskUpdate: coreClient.CompositeMapper = { type: { name: "Boolean" } + }, + publicNetworkAccess: { + serializedName: "properties.publicNetworkAccess", + type: { + name: "String" + } } } } @@ -7433,6 +7461,12 @@ export const SnapshotUpdate: coreClient.CompositeMapper = { type: { name: "Boolean" } + }, + publicNetworkAccess: { + serializedName: "properties.publicNetworkAccess", + type: { + name: "String" + } } } } @@ -8797,6 +8831,42 @@ export const SharedGalleryImageVersionList: coreClient.CompositeMapper = { } }; +export const PirCommunityGalleryResource: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PirCommunityGalleryResource", + modelProperties: { + name: { + serializedName: "name", + readOnly: true, + type: { + name: "String" + } + }, + location: { + serializedName: "location", + readOnly: true, + type: { + name: "String" + } + }, + type: { + serializedName: "type", + readOnly: true, + type: { + name: "String" + } + }, + uniqueId: { + serializedName: "identifier.uniqueId", + type: { + name: "String" + } + } + } + } +}; + export const RoleInstance: coreClient.CompositeMapper = { type: { name: "Composite", @@ -11556,6 +11626,13 @@ export const Disk: coreClient.CompositeMapper = { className: "PurchasePlanAutoGenerated" } }, + supportedCapabilities: { + serializedName: "properties.supportedCapabilities", + type: { + name: "Composite", + className: "SupportedCapabilities" + } + }, creationData: { serializedName: "properties.creationData", type: { @@ -11697,6 +11774,18 @@ export const Disk: coreClient.CompositeMapper = { name: "Composite", className: "DiskSecurityProfile" } + }, + completionPercent: { + serializedName: "properties.completionPercent", + type: { + name: "Number" + } + }, + publicNetworkAccess: { + serializedName: "properties.publicNetworkAccess", + type: { + name: "String" + } } } } @@ -11756,6 +11845,13 @@ export const Snapshot: coreClient.CompositeMapper = { className: "PurchasePlanAutoGenerated" } }, + supportedCapabilities: { + serializedName: "properties.supportedCapabilities", + type: { + name: "Composite", + className: "SupportedCapabilities" + } + }, creationData: { serializedName: "properties.creationData", type: { @@ -11834,6 +11930,18 @@ export const Snapshot: coreClient.CompositeMapper = { type: { name: "Boolean" } + }, + publicNetworkAccess: { + serializedName: "properties.publicNetworkAccess", + type: { + name: "String" + } + }, + completionPercent: { + serializedName: "properties.completionPercent", + type: { + name: "Number" + } } } } @@ -11897,6 +12005,13 @@ export const DiskEncryptionSet: coreClient.CompositeMapper = { type: { name: "DateTime" } + }, + autoKeyRotationError: { + serializedName: "properties.autoKeyRotationError", + type: { + name: "Composite", + className: "ApiError" + } } } } @@ -11908,6 +12023,13 @@ export const DiskAccess: coreClient.CompositeMapper = { className: "DiskAccess", modelProperties: { ...Resource.type.modelProperties, + extendedLocation: { + serializedName: "extendedLocation", + type: { + name: "Composite", + className: "ExtendedLocation" + } + }, privateEndpointConnections: { serializedName: "properties.privateEndpointConnections", readOnly: true, @@ -14198,6 +14320,13 @@ export const DiskRestorePoint: coreClient.CompositeMapper = { className: "PurchasePlanAutoGenerated" } }, + supportedCapabilities: { + serializedName: "properties.supportedCapabilities", + type: { + name: "Composite", + className: "SupportedCapabilities" + } + }, familyId: { serializedName: "properties.familyId", readOnly: true, @@ -14224,6 +14353,30 @@ export const DiskRestorePoint: coreClient.CompositeMapper = { type: { name: "Boolean" } + }, + networkAccessPolicy: { + serializedName: "properties.networkAccessPolicy", + type: { + name: "String" + } + }, + publicNetworkAccess: { + serializedName: "properties.publicNetworkAccess", + type: { + name: "String" + } + }, + diskAccessId: { + serializedName: "properties.diskAccessId", + type: { + name: "String" + } + }, + completionPercent: { + serializedName: "properties.completionPercent", + type: { + name: "Number" + } } } } @@ -14606,6 +14759,114 @@ export const PirSharedGalleryResource: coreClient.CompositeMapper = { } }; +export const CommunityGallery: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CommunityGallery", + modelProperties: { + ...PirCommunityGalleryResource.type.modelProperties + } + } +}; + +export const CommunityGalleryImage: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CommunityGalleryImage", + modelProperties: { + ...PirCommunityGalleryResource.type.modelProperties, + osType: { + serializedName: "properties.osType", + type: { + name: "Enum", + allowedValues: ["Windows", "Linux"] + } + }, + osState: { + serializedName: "properties.osState", + type: { + name: "Enum", + allowedValues: ["Generalized", "Specialized"] + } + }, + endOfLifeDate: { + serializedName: "properties.endOfLifeDate", + type: { + name: "DateTime" + } + }, + identifier: { + serializedName: "properties.identifier", + type: { + name: "Composite", + className: "GalleryImageIdentifier" + } + }, + recommended: { + serializedName: "properties.recommended", + type: { + name: "Composite", + className: "RecommendedMachineConfiguration" + } + }, + disallowed: { + serializedName: "properties.disallowed", + type: { + name: "Composite", + className: "Disallowed" + } + }, + hyperVGeneration: { + serializedName: "properties.hyperVGeneration", + type: { + name: "String" + } + }, + features: { + serializedName: "properties.features", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "GalleryImageFeature" + } + } + } + }, + purchasePlan: { + serializedName: "properties.purchasePlan", + type: { + name: "Composite", + className: "ImagePurchasePlan" + } + } + } + } +}; + +export const CommunityGalleryImageVersion: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CommunityGalleryImageVersion", + modelProperties: { + ...PirCommunityGalleryResource.type.modelProperties, + publishedDate: { + serializedName: "properties.publishedDate", + type: { + name: "DateTime" + } + }, + endOfLifeDate: { + serializedName: "properties.endOfLifeDate", + type: { + name: "DateTime" + } + } + } + } +}; + export const VirtualMachineImage: coreClient.CompositeMapper = { type: { name: "Composite", diff --git a/sdk/compute/arm-compute/src/models/parameters.ts b/sdk/compute/arm-compute/src/models/parameters.ts index 9a661149ab51..71f9c1cfa352 100644 --- a/sdk/compute/arm-compute/src/models/parameters.ts +++ b/sdk/compute/arm-compute/src/models/parameters.ts @@ -898,7 +898,7 @@ export const diskName: OperationURLParameter = { export const apiVersion1: OperationQueryParameter = { parameterPath: "apiVersion", mapper: { - defaultValue: "2020-12-01", + defaultValue: "2021-04-01", isConstant: true, serializedName: "api-version", type: { @@ -1169,6 +1169,17 @@ export const galleryUniqueName: OperationURLParameter = { } }; +export const publicGalleryName: OperationURLParameter = { + parameterPath: "publicGalleryName", + mapper: { + serializedName: "publicGalleryName", + required: true, + type: { + name: "String" + } + } +}; + export const roleInstanceName: OperationURLParameter = { parameterPath: "roleInstanceName", mapper: { diff --git a/sdk/compute/arm-compute/src/operations/availabilitySets.ts b/sdk/compute/arm-compute/src/operations/availabilitySets.ts index eaba7a91b182..a83ab63f0a3b 100644 --- a/sdk/compute/arm-compute/src/operations/availabilitySets.ts +++ b/sdk/compute/arm-compute/src/operations/availabilitySets.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { AvailabilitySets } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/capacityReservationGroups.ts b/sdk/compute/arm-compute/src/operations/capacityReservationGroups.ts index c89716f9e324..b42606f5ff83 100644 --- a/sdk/compute/arm-compute/src/operations/capacityReservationGroups.ts +++ b/sdk/compute/arm-compute/src/operations/capacityReservationGroups.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CapacityReservationGroups } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/capacityReservations.ts b/sdk/compute/arm-compute/src/operations/capacityReservations.ts index d693834e0d8f..8b1a24774de7 100644 --- a/sdk/compute/arm-compute/src/operations/capacityReservations.ts +++ b/sdk/compute/arm-compute/src/operations/capacityReservations.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CapacityReservations } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/cloudServiceOperatingSystems.ts b/sdk/compute/arm-compute/src/operations/cloudServiceOperatingSystems.ts index 095048a610de..e82b749a1f66 100644 --- a/sdk/compute/arm-compute/src/operations/cloudServiceOperatingSystems.ts +++ b/sdk/compute/arm-compute/src/operations/cloudServiceOperatingSystems.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CloudServiceOperatingSystems } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/cloudServiceRoleInstances.ts b/sdk/compute/arm-compute/src/operations/cloudServiceRoleInstances.ts index 19aa04060b90..c92fb5207461 100644 --- a/sdk/compute/arm-compute/src/operations/cloudServiceRoleInstances.ts +++ b/sdk/compute/arm-compute/src/operations/cloudServiceRoleInstances.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CloudServiceRoleInstances } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/cloudServiceRoles.ts b/sdk/compute/arm-compute/src/operations/cloudServiceRoles.ts index 5ebe9f39ce02..89fcdd7ee360 100644 --- a/sdk/compute/arm-compute/src/operations/cloudServiceRoles.ts +++ b/sdk/compute/arm-compute/src/operations/cloudServiceRoles.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CloudServiceRoles } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/cloudServices.ts b/sdk/compute/arm-compute/src/operations/cloudServices.ts index 69eada98b205..0497623bed85 100644 --- a/sdk/compute/arm-compute/src/operations/cloudServices.ts +++ b/sdk/compute/arm-compute/src/operations/cloudServices.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CloudServices } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/cloudServicesUpdateDomain.ts b/sdk/compute/arm-compute/src/operations/cloudServicesUpdateDomain.ts index f4a6419915ea..2ab09a9414fa 100644 --- a/sdk/compute/arm-compute/src/operations/cloudServicesUpdateDomain.ts +++ b/sdk/compute/arm-compute/src/operations/cloudServicesUpdateDomain.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CloudServicesUpdateDomain } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/communityGalleries.ts b/sdk/compute/arm-compute/src/operations/communityGalleries.ts new file mode 100644 index 000000000000..8282d5a8ab24 --- /dev/null +++ b/sdk/compute/arm-compute/src/operations/communityGalleries.ts @@ -0,0 +1,72 @@ +/* + * 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 { CommunityGalleries } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { ComputeManagementClientContext } from "../computeManagementClientContext"; +import { + CommunityGalleriesGetOptionalParams, + CommunityGalleriesGetResponse +} from "../models"; + +/** Class containing CommunityGalleries operations. */ +export class CommunityGalleriesImpl implements CommunityGalleries { + private readonly client: ComputeManagementClientContext; + + /** + * Initialize a new instance of the class CommunityGalleries class. + * @param client Reference to the service client + */ + constructor(client: ComputeManagementClientContext) { + this.client = client; + } + + /** + * Get a community gallery by gallery public name. + * @param location Resource location. + * @param publicGalleryName The public name of the community gallery. + * @param options The options parameters. + */ + get( + location: string, + publicGalleryName: string, + options?: CommunityGalleriesGetOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { location, publicGalleryName, options }, + getOperationSpec + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CommunityGallery + }, + default: { + bodyMapper: Mappers.CloudError + } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.publicGalleryName + ], + headerParameters: [Parameters.accept], + serializer +}; diff --git a/sdk/compute/arm-compute/src/operations/communityGalleryImageVersions.ts b/sdk/compute/arm-compute/src/operations/communityGalleryImageVersions.ts new file mode 100644 index 000000000000..f69757518206 --- /dev/null +++ b/sdk/compute/arm-compute/src/operations/communityGalleryImageVersions.ts @@ -0,0 +1,87 @@ +/* + * 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 { CommunityGalleryImageVersions } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { ComputeManagementClientContext } from "../computeManagementClientContext"; +import { + CommunityGalleryImageVersionsGetOptionalParams, + CommunityGalleryImageVersionsGetResponse +} from "../models"; + +/** Class containing CommunityGalleryImageVersions operations. */ +export class CommunityGalleryImageVersionsImpl + implements CommunityGalleryImageVersions { + private readonly client: ComputeManagementClientContext; + + /** + * Initialize a new instance of the class CommunityGalleryImageVersions class. + * @param client Reference to the service client + */ + constructor(client: ComputeManagementClientContext) { + this.client = client; + } + + /** + * Get a community gallery image version. + * @param location Resource location. + * @param publicGalleryName The public name of the community gallery. + * @param galleryImageName The name of the community gallery image definition. + * @param galleryImageVersionName The name of the community gallery image version. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within + * the range of a 32-bit integer. Format: .. + * @param options The options parameters. + */ + get( + location: string, + publicGalleryName: string, + galleryImageName: string, + galleryImageVersionName: string, + options?: CommunityGalleryImageVersionsGetOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { + location, + publicGalleryName, + galleryImageName, + galleryImageVersionName, + options + }, + getOperationSpec + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}/versions/{galleryImageVersionName}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CommunityGalleryImageVersion + }, + default: { + bodyMapper: Mappers.CloudError + } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.galleryImageName, + Parameters.galleryImageVersionName, + Parameters.publicGalleryName + ], + headerParameters: [Parameters.accept], + serializer +}; diff --git a/sdk/compute/arm-compute/src/operations/communityGalleryImages.ts b/sdk/compute/arm-compute/src/operations/communityGalleryImages.ts new file mode 100644 index 000000000000..9d54a1cde266 --- /dev/null +++ b/sdk/compute/arm-compute/src/operations/communityGalleryImages.ts @@ -0,0 +1,75 @@ +/* + * 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 { CommunityGalleryImages } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; +import * as Parameters from "../models/parameters"; +import { ComputeManagementClientContext } from "../computeManagementClientContext"; +import { + CommunityGalleryImagesGetOptionalParams, + CommunityGalleryImagesGetResponse +} from "../models"; + +/** Class containing CommunityGalleryImages operations. */ +export class CommunityGalleryImagesImpl implements CommunityGalleryImages { + private readonly client: ComputeManagementClientContext; + + /** + * Initialize a new instance of the class CommunityGalleryImages class. + * @param client Reference to the service client + */ + constructor(client: ComputeManagementClientContext) { + this.client = client; + } + + /** + * Get a community gallery image. + * @param location Resource location. + * @param publicGalleryName The public name of the community gallery. + * @param galleryImageName The name of the community gallery image definition. + * @param options The options parameters. + */ + get( + location: string, + publicGalleryName: string, + galleryImageName: string, + options?: CommunityGalleryImagesGetOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { location, publicGalleryName, galleryImageName, options }, + getOperationSpec + ); + } +} +// Operation Specifications +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/communityGalleries/{publicGalleryName}/images/{galleryImageName}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.CommunityGalleryImage + }, + default: { + bodyMapper: Mappers.CloudError + } + }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.location, + Parameters.galleryImageName, + Parameters.publicGalleryName + ], + headerParameters: [Parameters.accept], + serializer +}; diff --git a/sdk/compute/arm-compute/src/operations/dedicatedHostGroups.ts b/sdk/compute/arm-compute/src/operations/dedicatedHostGroups.ts index ce2aaf3d1dbb..c98c6d532267 100644 --- a/sdk/compute/arm-compute/src/operations/dedicatedHostGroups.ts +++ b/sdk/compute/arm-compute/src/operations/dedicatedHostGroups.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DedicatedHostGroups } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/dedicatedHosts.ts b/sdk/compute/arm-compute/src/operations/dedicatedHosts.ts index 2a6f2a721b1b..fd9e630b79c7 100644 --- a/sdk/compute/arm-compute/src/operations/dedicatedHosts.ts +++ b/sdk/compute/arm-compute/src/operations/dedicatedHosts.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DedicatedHosts } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/diskAccesses.ts b/sdk/compute/arm-compute/src/operations/diskAccesses.ts index cc5190d2b193..09bcfe562006 100644 --- a/sdk/compute/arm-compute/src/operations/diskAccesses.ts +++ b/sdk/compute/arm-compute/src/operations/diskAccesses.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DiskAccesses } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; @@ -160,7 +159,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ public listPrivateEndpointConnections( @@ -233,7 +232,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Put disk access operation. * @param options The options parameters. */ @@ -303,7 +302,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Put disk access operation. * @param options The options parameters. */ @@ -327,7 +326,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Patch disk access operation. * @param options The options parameters. */ @@ -397,7 +396,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Patch disk access operation. * @param options The options parameters. */ @@ -421,7 +420,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ get( @@ -440,7 +439,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ async beginDelete( @@ -503,7 +502,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ async beginDeleteAndWait( @@ -549,7 +548,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ getPrivateLinkResources( @@ -569,8 +568,8 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param privateEndpointConnection private endpoint connection object supplied in the body of the Put * private endpoint connection operation. * @param options The options parameters. @@ -649,8 +648,8 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param privateEndpointConnection private endpoint connection object supplied in the body of the Put * private endpoint connection operation. * @param options The options parameters. @@ -677,8 +676,8 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param options The options parameters. */ getAPrivateEndpointConnection( @@ -703,8 +702,8 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param options The options parameters. */ async beginDeleteAPrivateEndpointConnection( @@ -773,8 +772,8 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param options The options parameters. */ async beginDeleteAPrivateEndpointConnectionAndWait( @@ -797,7 +796,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ private _listPrivateEndpointConnections( @@ -848,7 +847,7 @@ export class DiskAccessesImpl implements DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param nextLink The nextLink from the previous successful call to the ListPrivateEndpointConnections * method. * @param options The options parameters. diff --git a/sdk/compute/arm-compute/src/operations/diskEncryptionSets.ts b/sdk/compute/arm-compute/src/operations/diskEncryptionSets.ts index caa751ea0525..5188a8d8eaa2 100644 --- a/sdk/compute/arm-compute/src/operations/diskEncryptionSets.ts +++ b/sdk/compute/arm-compute/src/operations/diskEncryptionSets.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DiskEncryptionSets } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; @@ -152,7 +151,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ public listAssociatedResources( @@ -225,7 +224,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Put disk encryption * set operation. * @param options The options parameters. @@ -296,7 +295,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Put disk encryption * set operation. * @param options The options parameters. @@ -321,7 +320,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Patch disk * encryption set operation. * @param options The options parameters. @@ -392,7 +391,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Patch disk * encryption set operation. * @param options The options parameters. @@ -417,7 +416,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ get( @@ -436,7 +435,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ async beginDelete( @@ -499,7 +498,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ async beginDeleteAndWait( @@ -545,7 +544,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ private _listAssociatedResources( @@ -596,7 +595,7 @@ export class DiskEncryptionSetsImpl implements DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param nextLink The nextLink from the previous successful call to the ListAssociatedResources * method. * @param options The options parameters. diff --git a/sdk/compute/arm-compute/src/operations/diskRestorePointOperations.ts b/sdk/compute/arm-compute/src/operations/diskRestorePointOperations.ts index 156dbf225f0a..7de996e43e54 100644 --- a/sdk/compute/arm-compute/src/operations/diskRestorePointOperations.ts +++ b/sdk/compute/arm-compute/src/operations/diskRestorePointOperations.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DiskRestorePointOperations } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; @@ -17,16 +16,16 @@ import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; import { LroImpl } from "../lroImpl"; import { DiskRestorePoint, - DiskRestorePointOperationsListByRestorePointNextOptionalParams, - DiskRestorePointOperationsListByRestorePointOptionalParams, - DiskRestorePointOperationsGetOptionalParams, - DiskRestorePointOperationsGetResponse, - DiskRestorePointOperationsListByRestorePointResponse, + DiskRestorePointListByRestorePointNextOptionalParams, + DiskRestorePointListByRestorePointOptionalParams, + DiskRestorePointGetOptionalParams, + DiskRestorePointGetResponse, + DiskRestorePointListByRestorePointResponse, GrantAccessData, - DiskRestorePointOperationsGrantAccessOptionalParams, - DiskRestorePointOperationsGrantAccessResponse, - DiskRestorePointOperationsRevokeAccessOptionalParams, - DiskRestorePointOperationsListByRestorePointNextResponse + DiskRestorePointGrantAccessOptionalParams, + DiskRestorePointGrantAccessResponse, + DiskRestorePointRevokeAccessOptionalParams, + DiskRestorePointListByRestorePointNextResponse } from "../models"; /// @@ -47,17 +46,15 @@ export class DiskRestorePointOperationsImpl * Lists diskRestorePoints under a vmRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. * @param options The options parameters. */ public listByRestorePoint( resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, - options?: DiskRestorePointOperationsListByRestorePointOptionalParams + options?: DiskRestorePointListByRestorePointOptionalParams ): PagedAsyncIterableIterator { const iter = this.listByRestorePointPagingAll( resourceGroupName, @@ -87,7 +84,7 @@ export class DiskRestorePointOperationsImpl resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, - options?: DiskRestorePointOperationsListByRestorePointOptionalParams + options?: DiskRestorePointListByRestorePointOptionalParams ): AsyncIterableIterator { let result = await this._listByRestorePoint( resourceGroupName, @@ -114,7 +111,7 @@ export class DiskRestorePointOperationsImpl resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, - options?: DiskRestorePointOperationsListByRestorePointOptionalParams + options?: DiskRestorePointListByRestorePointOptionalParams ): AsyncIterableIterator { for await (const page of this.listByRestorePointPagingPage( resourceGroupName, @@ -130,12 +127,9 @@ export class DiskRestorePointOperationsImpl * Get disk restorePoint resource * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param options The options parameters. */ get( @@ -143,8 +137,8 @@ export class DiskRestorePointOperationsImpl restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, - options?: DiskRestorePointOperationsGetOptionalParams - ): Promise { + options?: DiskRestorePointGetOptionalParams + ): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -161,18 +155,16 @@ export class DiskRestorePointOperationsImpl * Lists diskRestorePoints under a vmRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. * @param options The options parameters. */ private _listByRestorePoint( resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, - options?: DiskRestorePointOperationsListByRestorePointOptionalParams - ): Promise { + options?: DiskRestorePointListByRestorePointOptionalParams + ): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -188,12 +180,9 @@ export class DiskRestorePointOperationsImpl * Grants access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. */ @@ -203,17 +192,17 @@ export class DiskRestorePointOperationsImpl vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, - options?: DiskRestorePointOperationsGrantAccessOptionalParams + options?: DiskRestorePointGrantAccessOptionalParams ): Promise< PollerLike< - PollOperationState, - DiskRestorePointOperationsGrantAccessResponse + PollOperationState, + DiskRestorePointGrantAccessResponse > > { const directSendOperation = async ( args: coreClient.OperationArguments, spec: coreClient.OperationSpec - ): Promise => { + ): Promise => { return this.client.sendOperationRequest(args, spec); }; const sendOperation = async ( @@ -272,12 +261,9 @@ export class DiskRestorePointOperationsImpl * Grants access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. */ @@ -287,8 +273,8 @@ export class DiskRestorePointOperationsImpl vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, - options?: DiskRestorePointOperationsGrantAccessOptionalParams - ): Promise { + options?: DiskRestorePointGrantAccessOptionalParams + ): Promise { const poller = await this.beginGrantAccess( resourceGroupName, restorePointCollectionName, @@ -304,12 +290,9 @@ export class DiskRestorePointOperationsImpl * Revokes access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param options The options parameters. */ async beginRevokeAccess( @@ -317,7 +300,7 @@ export class DiskRestorePointOperationsImpl restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, - options?: DiskRestorePointOperationsRevokeAccessOptionalParams + options?: DiskRestorePointRevokeAccessOptionalParams ): Promise, void>> { const directSendOperation = async ( args: coreClient.OperationArguments, @@ -380,12 +363,9 @@ export class DiskRestorePointOperationsImpl * Revokes access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param options The options parameters. */ async beginRevokeAccessAndWait( @@ -393,7 +373,7 @@ export class DiskRestorePointOperationsImpl restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, - options?: DiskRestorePointOperationsRevokeAccessOptionalParams + options?: DiskRestorePointRevokeAccessOptionalParams ): Promise { const poller = await this.beginRevokeAccess( resourceGroupName, @@ -409,10 +389,8 @@ export class DiskRestorePointOperationsImpl * ListByRestorePointNext * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. * @param nextLink The nextLink from the previous successful call to the ListByRestorePoint method. * @param options The options parameters. */ @@ -421,8 +399,8 @@ export class DiskRestorePointOperationsImpl restorePointCollectionName: string, vmRestorePointName: string, nextLink: string, - options?: DiskRestorePointOperationsListByRestorePointNextOptionalParams - ): Promise { + options?: DiskRestorePointListByRestorePointNextOptionalParams + ): Promise { return this.client.sendOperationRequest( { resourceGroupName, diff --git a/sdk/compute/arm-compute/src/operations/disks.ts b/sdk/compute/arm-compute/src/operations/disks.ts index 6e50e5ee6b96..c8a42d3a7e57 100644 --- a/sdk/compute/arm-compute/src/operations/disks.ts +++ b/sdk/compute/arm-compute/src/operations/disks.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Disks } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; @@ -151,7 +150,7 @@ export class DisksImpl implements Disks { * Creates or updates a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -221,7 +220,7 @@ export class DisksImpl implements Disks { * Creates or updates a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -245,7 +244,7 @@ export class DisksImpl implements Disks { * Updates (patches) a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Patch disk operation. * @param options The options parameters. @@ -312,7 +311,7 @@ export class DisksImpl implements Disks { * Updates (patches) a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Patch disk operation. * @param options The options parameters. @@ -336,7 +335,7 @@ export class DisksImpl implements Disks { * Gets information about a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -355,7 +354,7 @@ export class DisksImpl implements Disks { * Deletes a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -418,7 +417,7 @@ export class DisksImpl implements Disks { * Deletes a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -458,7 +457,7 @@ export class DisksImpl implements Disks { * Grants access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. @@ -529,7 +528,7 @@ export class DisksImpl implements Disks { * Grants access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. @@ -553,7 +552,7 @@ export class DisksImpl implements Disks { * Revokes access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -617,7 +616,7 @@ export class DisksImpl implements Disks { * Revokes access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ diff --git a/sdk/compute/arm-compute/src/operations/galleries.ts b/sdk/compute/arm-compute/src/operations/galleries.ts index 47b2e276f277..a1c0910844d0 100644 --- a/sdk/compute/arm-compute/src/operations/galleries.ts +++ b/sdk/compute/arm-compute/src/operations/galleries.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Galleries } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/galleryApplicationVersions.ts b/sdk/compute/arm-compute/src/operations/galleryApplicationVersions.ts index 09fffe4f28d1..a5dba383e2fb 100644 --- a/sdk/compute/arm-compute/src/operations/galleryApplicationVersions.ts +++ b/sdk/compute/arm-compute/src/operations/galleryApplicationVersions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { GalleryApplicationVersions } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/galleryApplications.ts b/sdk/compute/arm-compute/src/operations/galleryApplications.ts index 26272e7e1b03..fc926a470682 100644 --- a/sdk/compute/arm-compute/src/operations/galleryApplications.ts +++ b/sdk/compute/arm-compute/src/operations/galleryApplications.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { GalleryApplications } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/galleryImageVersions.ts b/sdk/compute/arm-compute/src/operations/galleryImageVersions.ts index 6b58a63bcc10..20fe78b3279f 100644 --- a/sdk/compute/arm-compute/src/operations/galleryImageVersions.ts +++ b/sdk/compute/arm-compute/src/operations/galleryImageVersions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { GalleryImageVersions } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/galleryImages.ts b/sdk/compute/arm-compute/src/operations/galleryImages.ts index db4be652db95..b34da2ce0cab 100644 --- a/sdk/compute/arm-compute/src/operations/galleryImages.ts +++ b/sdk/compute/arm-compute/src/operations/galleryImages.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { GalleryImages } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/images.ts b/sdk/compute/arm-compute/src/operations/images.ts index f4cd8fc54025..3fe8048b1755 100644 --- a/sdk/compute/arm-compute/src/operations/images.ts +++ b/sdk/compute/arm-compute/src/operations/images.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Images } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/index.ts b/sdk/compute/arm-compute/src/operations/index.ts index 2b94af01d92e..91179cafdf10 100644 --- a/sdk/compute/arm-compute/src/operations/index.ts +++ b/sdk/compute/arm-compute/src/operations/index.ts @@ -47,6 +47,9 @@ export * from "./gallerySharingProfile"; export * from "./sharedGalleries"; export * from "./sharedGalleryImages"; export * from "./sharedGalleryImageVersions"; +export * from "./communityGalleries"; +export * from "./communityGalleryImages"; +export * from "./communityGalleryImageVersions"; export * from "./cloudServiceRoleInstances"; export * from "./cloudServiceRoles"; export * from "./cloudServices"; diff --git a/sdk/compute/arm-compute/src/operations/operations.ts b/sdk/compute/arm-compute/src/operations/operations.ts index 10d2139ea915..a8c7e0970d15 100644 --- a/sdk/compute/arm-compute/src/operations/operations.ts +++ b/sdk/compute/arm-compute/src/operations/operations.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Operations } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/proximityPlacementGroups.ts b/sdk/compute/arm-compute/src/operations/proximityPlacementGroups.ts index 27f5297f594b..4f72cfe7c30f 100644 --- a/sdk/compute/arm-compute/src/operations/proximityPlacementGroups.ts +++ b/sdk/compute/arm-compute/src/operations/proximityPlacementGroups.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ProximityPlacementGroups } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/resourceSkus.ts b/sdk/compute/arm-compute/src/operations/resourceSkus.ts index 3485caa1c137..970bfd707f45 100644 --- a/sdk/compute/arm-compute/src/operations/resourceSkus.ts +++ b/sdk/compute/arm-compute/src/operations/resourceSkus.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ResourceSkus } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/restorePointCollections.ts b/sdk/compute/arm-compute/src/operations/restorePointCollections.ts index b66ffe0c665c..9f1665b19942 100644 --- a/sdk/compute/arm-compute/src/operations/restorePointCollections.ts +++ b/sdk/compute/arm-compute/src/operations/restorePointCollections.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { RestorePointCollections } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/sharedGalleries.ts b/sdk/compute/arm-compute/src/operations/sharedGalleries.ts index 5ab539dbdacf..f55c03bd9ada 100644 --- a/sdk/compute/arm-compute/src/operations/sharedGalleries.ts +++ b/sdk/compute/arm-compute/src/operations/sharedGalleries.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SharedGalleries } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/sharedGalleryImageVersions.ts b/sdk/compute/arm-compute/src/operations/sharedGalleryImageVersions.ts index fddb3afec751..013ba0d2451d 100644 --- a/sdk/compute/arm-compute/src/operations/sharedGalleryImageVersions.ts +++ b/sdk/compute/arm-compute/src/operations/sharedGalleryImageVersions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SharedGalleryImageVersions } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/sharedGalleryImages.ts b/sdk/compute/arm-compute/src/operations/sharedGalleryImages.ts index f3decf1cde24..11befb0708c6 100644 --- a/sdk/compute/arm-compute/src/operations/sharedGalleryImages.ts +++ b/sdk/compute/arm-compute/src/operations/sharedGalleryImages.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SharedGalleryImages } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/snapshots.ts b/sdk/compute/arm-compute/src/operations/snapshots.ts index 7ba99555f54b..123db630b7c4 100644 --- a/sdk/compute/arm-compute/src/operations/snapshots.ts +++ b/sdk/compute/arm-compute/src/operations/snapshots.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { Snapshots } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; @@ -151,7 +150,7 @@ export class SnapshotsImpl implements Snapshots { * Creates or updates a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -221,7 +220,7 @@ export class SnapshotsImpl implements Snapshots { * Creates or updates a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -245,7 +244,7 @@ export class SnapshotsImpl implements Snapshots { * Updates (patches) a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Patch snapshot operation. * @param options The options parameters. @@ -315,7 +314,7 @@ export class SnapshotsImpl implements Snapshots { * Updates (patches) a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Patch snapshot operation. * @param options The options parameters. @@ -339,7 +338,7 @@ export class SnapshotsImpl implements Snapshots { * Gets information about a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -358,7 +357,7 @@ export class SnapshotsImpl implements Snapshots { * Deletes a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -421,7 +420,7 @@ export class SnapshotsImpl implements Snapshots { * Deletes a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -467,7 +466,7 @@ export class SnapshotsImpl implements Snapshots { * Grants access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get snapshot access operation. * @param options The options parameters. @@ -538,7 +537,7 @@ export class SnapshotsImpl implements Snapshots { * Grants access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get snapshot access operation. * @param options The options parameters. @@ -562,7 +561,7 @@ export class SnapshotsImpl implements Snapshots { * Revokes access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -626,7 +625,7 @@ export class SnapshotsImpl implements Snapshots { * Revokes access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ diff --git a/sdk/compute/arm-compute/src/operations/sshPublicKeys.ts b/sdk/compute/arm-compute/src/operations/sshPublicKeys.ts index ba5f8f33c8eb..87420fe79659 100644 --- a/sdk/compute/arm-compute/src/operations/sshPublicKeys.ts +++ b/sdk/compute/arm-compute/src/operations/sshPublicKeys.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SshPublicKeys } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/usageOperations.ts b/sdk/compute/arm-compute/src/operations/usageOperations.ts index 6b9b070c3d60..32399ca3b9dd 100644 --- a/sdk/compute/arm-compute/src/operations/usageOperations.ts +++ b/sdk/compute/arm-compute/src/operations/usageOperations.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { UsageOperations } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; @@ -15,10 +14,10 @@ import * as Parameters from "../models/parameters"; import { ComputeManagementClientContext } from "../computeManagementClientContext"; import { Usage, - UsageOperationsListNextOptionalParams, - UsageOperationsListOptionalParams, - UsageOperationsListResponse, - UsageOperationsListNextResponse + UsageListNextOptionalParams, + UsageListOptionalParams, + UsageListResponse, + UsageListNextResponse } from "../models"; /// @@ -42,7 +41,7 @@ export class UsageOperationsImpl implements UsageOperations { */ public list( location: string, - options?: UsageOperationsListOptionalParams + options?: UsageListOptionalParams ): PagedAsyncIterableIterator { const iter = this.listPagingAll(location, options); return { @@ -60,7 +59,7 @@ export class UsageOperationsImpl implements UsageOperations { private async *listPagingPage( location: string, - options?: UsageOperationsListOptionalParams + options?: UsageListOptionalParams ): AsyncIterableIterator { let result = await this._list(location, options); yield result.value || []; @@ -74,7 +73,7 @@ export class UsageOperationsImpl implements UsageOperations { private async *listPagingAll( location: string, - options?: UsageOperationsListOptionalParams + options?: UsageListOptionalParams ): AsyncIterableIterator { for await (const page of this.listPagingPage(location, options)) { yield* page; @@ -89,8 +88,8 @@ export class UsageOperationsImpl implements UsageOperations { */ private _list( location: string, - options?: UsageOperationsListOptionalParams - ): Promise { + options?: UsageListOptionalParams + ): Promise { return this.client.sendOperationRequest( { location, options }, listOperationSpec @@ -106,8 +105,8 @@ export class UsageOperationsImpl implements UsageOperations { private _listNext( location: string, nextLink: string, - options?: UsageOperationsListNextOptionalParams - ): Promise { + options?: UsageListNextOptionalParams + ): Promise { return this.client.sendOperationRequest( { location, nextLink, options }, listNextOperationSpec diff --git a/sdk/compute/arm-compute/src/operations/virtualMachineRunCommands.ts b/sdk/compute/arm-compute/src/operations/virtualMachineRunCommands.ts index 1e4f9a0284a2..b45992aca574 100644 --- a/sdk/compute/arm-compute/src/operations/virtualMachineRunCommands.ts +++ b/sdk/compute/arm-compute/src/operations/virtualMachineRunCommands.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachineRunCommands } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetExtensions.ts b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetExtensions.ts index 700bf58a7d36..f033f6d9ec58 100644 --- a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetExtensions.ts +++ b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetExtensions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachineScaleSetExtensions } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMRunCommands.ts b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMRunCommands.ts index e311c0673959..d558bb213ceb 100644 --- a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMRunCommands.ts +++ b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMRunCommands.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachineScaleSetVMRunCommands } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMs.ts b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMs.ts index 5c6c1ba797f1..24a6db4f7e73 100644 --- a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMs.ts +++ b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSetVMs.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachineScaleSetVMs } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSets.ts b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSets.ts index e72fbf047f5f..2f97822bb25d 100644 --- a/sdk/compute/arm-compute/src/operations/virtualMachineScaleSets.ts +++ b/sdk/compute/arm-compute/src/operations/virtualMachineScaleSets.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachineScaleSets } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/virtualMachineSizes.ts b/sdk/compute/arm-compute/src/operations/virtualMachineSizes.ts index edc5552a3c2a..cf7b43d38ba0 100644 --- a/sdk/compute/arm-compute/src/operations/virtualMachineSizes.ts +++ b/sdk/compute/arm-compute/src/operations/virtualMachineSizes.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachineSizes } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operations/virtualMachines.ts b/sdk/compute/arm-compute/src/operations/virtualMachines.ts index da667704f5ca..04bbdeb1e6ea 100644 --- a/sdk/compute/arm-compute/src/operations/virtualMachines.ts +++ b/sdk/compute/arm-compute/src/operations/virtualMachines.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachines } from "../operationsInterfaces"; import * as coreClient from "@azure/core-client"; diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/availabilitySets.ts b/sdk/compute/arm-compute/src/operationsInterfaces/availabilitySets.ts index deb1c027acb7..02e18b92c1dc 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/availabilitySets.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/availabilitySets.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { AvailabilitySet, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservationGroups.ts b/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservationGroups.ts index 1f96d31a4b23..2d43fd8f245a 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservationGroups.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservationGroups.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CapacityReservationGroup, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservations.ts b/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservations.ts index 8bcdb0ef8c51..fee299cef1fa 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservations.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/capacityReservations.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceOperatingSystems.ts b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceOperatingSystems.ts index b7bc75e22ed1..43a831b17f7b 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceOperatingSystems.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceOperatingSystems.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { OSVersion, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoleInstances.ts b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoleInstances.ts index 53d4aec8b19e..082c3ccb6529 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoleInstances.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoleInstances.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoles.ts b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoles.ts index eb2c44f5f435..8dae38f480f8 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoles.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServiceRoles.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { CloudServiceRole, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServices.ts b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServices.ts index 7b99820deb0b..cdd15a97ecf9 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServices.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServices.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServicesUpdateDomain.ts b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServicesUpdateDomain.ts index 1cb5e2f2d34c..ef8d282899f7 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/cloudServicesUpdateDomain.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/cloudServicesUpdateDomain.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleries.ts b/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleries.ts new file mode 100644 index 000000000000..b39f7dd72a77 --- /dev/null +++ b/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleries.ts @@ -0,0 +1,27 @@ +/* + * 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 { + CommunityGalleriesGetOptionalParams, + CommunityGalleriesGetResponse +} from "../models"; + +/** Interface representing a CommunityGalleries. */ +export interface CommunityGalleries { + /** + * Get a community gallery by gallery public name. + * @param location Resource location. + * @param publicGalleryName The public name of the community gallery. + * @param options The options parameters. + */ + get( + location: string, + publicGalleryName: string, + options?: CommunityGalleriesGetOptionalParams + ): Promise; +} diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImageVersions.ts b/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImageVersions.ts new file mode 100644 index 000000000000..4a9f9ed88f2d --- /dev/null +++ b/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImageVersions.ts @@ -0,0 +1,33 @@ +/* + * 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 { + CommunityGalleryImageVersionsGetOptionalParams, + CommunityGalleryImageVersionsGetResponse +} from "../models"; + +/** Interface representing a CommunityGalleryImageVersions. */ +export interface CommunityGalleryImageVersions { + /** + * Get a community gallery image version. + * @param location Resource location. + * @param publicGalleryName The public name of the community gallery. + * @param galleryImageName The name of the community gallery image definition. + * @param galleryImageVersionName The name of the community gallery image version. Needs to follow + * semantic version name pattern: The allowed characters are digit and period. Digits must be within + * the range of a 32-bit integer. Format: .. + * @param options The options parameters. + */ + get( + location: string, + publicGalleryName: string, + galleryImageName: string, + galleryImageVersionName: string, + options?: CommunityGalleryImageVersionsGetOptionalParams + ): Promise; +} diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImages.ts b/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImages.ts new file mode 100644 index 000000000000..282d3af41a5d --- /dev/null +++ b/sdk/compute/arm-compute/src/operationsInterfaces/communityGalleryImages.ts @@ -0,0 +1,29 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +import { + CommunityGalleryImagesGetOptionalParams, + CommunityGalleryImagesGetResponse +} from "../models"; + +/** Interface representing a CommunityGalleryImages. */ +export interface CommunityGalleryImages { + /** + * Get a community gallery image. + * @param location Resource location. + * @param publicGalleryName The public name of the community gallery. + * @param galleryImageName The name of the community gallery image definition. + * @param options The options parameters. + */ + get( + location: string, + publicGalleryName: string, + galleryImageName: string, + options?: CommunityGalleryImagesGetOptionalParams + ): Promise; +} diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHostGroups.ts b/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHostGroups.ts index 7955ec460e25..8b50c847095a 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHostGroups.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHostGroups.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { DedicatedHostGroup, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHosts.ts b/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHosts.ts index bcc0e63d1878..d71a525682b9 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHosts.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/dedicatedHosts.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/diskAccesses.ts b/sdk/compute/arm-compute/src/operationsInterfaces/diskAccesses.ts index 0dca9e5ba7c5..b443314ae9ae 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/diskAccesses.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/diskAccesses.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { @@ -56,7 +55,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ listPrivateEndpointConnections( @@ -69,7 +68,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Put disk access operation. * @param options The options parameters. */ @@ -89,7 +88,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Put disk access operation. * @param options The options parameters. */ @@ -104,7 +103,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Patch disk access operation. * @param options The options parameters. */ @@ -124,7 +123,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param diskAccess disk access object supplied in the body of the Patch disk access operation. * @param options The options parameters. */ @@ -139,7 +138,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ get( @@ -152,7 +151,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ beginDelete( @@ -165,7 +164,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ beginDeleteAndWait( @@ -178,7 +177,7 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. + * 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ getPrivateLinkResources( @@ -192,8 +191,8 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param privateEndpointConnection private endpoint connection object supplied in the body of the Put * private endpoint connection operation. * @param options The options parameters. @@ -216,8 +215,8 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param privateEndpointConnection private endpoint connection object supplied in the body of the Put * private endpoint connection operation. * @param options The options parameters. @@ -234,8 +233,8 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param options The options parameters. */ getAPrivateEndpointConnection( @@ -249,8 +248,8 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param options The options parameters. */ beginDeleteAPrivateEndpointConnection( @@ -264,8 +263,8 @@ export interface DiskAccesses { * @param resourceGroupName The name of the resource group. * @param diskAccessName The name of the disk access resource that is being created. The name can't be * changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, - * 0-9 and _. The maximum name length is 80 characters. - * @param privateEndpointConnectionName The name of the private endpoint connection + * 0-9, _ and -. The maximum name length is 80 characters. + * @param privateEndpointConnectionName The name of the private endpoint connection. * @param options The options parameters. */ beginDeleteAPrivateEndpointConnectionAndWait( diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/diskEncryptionSets.ts b/sdk/compute/arm-compute/src/operationsInterfaces/diskEncryptionSets.ts index 4f92f8a1aa92..08ec1aec15f4 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/diskEncryptionSets.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/diskEncryptionSets.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { @@ -48,7 +47,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ listAssociatedResources( @@ -61,7 +60,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Put disk encryption * set operation. * @param options The options parameters. @@ -82,7 +81,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Put disk encryption * set operation. * @param options The options parameters. @@ -98,7 +97,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Patch disk * encryption set operation. * @param options The options parameters. @@ -119,7 +118,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param diskEncryptionSet disk encryption set object supplied in the body of the Patch disk * encryption set operation. * @param options The options parameters. @@ -135,7 +134,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ get( @@ -148,7 +147,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ beginDelete( @@ -161,7 +160,7 @@ export interface DiskEncryptionSets { * @param resourceGroupName The name of the resource group. * @param diskEncryptionSetName The name of the disk encryption set that is being created. The name * can't be changed after the disk encryption set is created. Supported characters for the name are - * a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters. * @param options The options parameters. */ beginDeleteAndWait( diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/diskRestorePointOperations.ts b/sdk/compute/arm-compute/src/operationsInterfaces/diskRestorePointOperations.ts index 241c7949da8c..3c0c927d99d4 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/diskRestorePointOperations.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/diskRestorePointOperations.ts @@ -6,18 +6,17 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { DiskRestorePoint, - DiskRestorePointOperationsListByRestorePointOptionalParams, - DiskRestorePointOperationsGetOptionalParams, - DiskRestorePointOperationsGetResponse, + DiskRestorePointListByRestorePointOptionalParams, + DiskRestorePointGetOptionalParams, + DiskRestorePointGetResponse, GrantAccessData, - DiskRestorePointOperationsGrantAccessOptionalParams, - DiskRestorePointOperationsGrantAccessResponse, - DiskRestorePointOperationsRevokeAccessOptionalParams + DiskRestorePointGrantAccessOptionalParams, + DiskRestorePointGrantAccessResponse, + DiskRestorePointRevokeAccessOptionalParams } from "../models"; /// @@ -27,28 +26,23 @@ export interface DiskRestorePointOperations { * Lists diskRestorePoints under a vmRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. * @param options The options parameters. */ listByRestorePoint( resourceGroupName: string, restorePointCollectionName: string, vmRestorePointName: string, - options?: DiskRestorePointOperationsListByRestorePointOptionalParams + options?: DiskRestorePointListByRestorePointOptionalParams ): PagedAsyncIterableIterator; /** * Get disk restorePoint resource * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param options The options parameters. */ get( @@ -56,18 +50,15 @@ export interface DiskRestorePointOperations { restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, - options?: DiskRestorePointOperationsGetOptionalParams - ): Promise; + options?: DiskRestorePointGetOptionalParams + ): Promise; /** * Grants access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. */ @@ -77,23 +68,20 @@ export interface DiskRestorePointOperations { vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, - options?: DiskRestorePointOperationsGrantAccessOptionalParams + options?: DiskRestorePointGrantAccessOptionalParams ): Promise< PollerLike< - PollOperationState, - DiskRestorePointOperationsGrantAccessResponse + PollOperationState, + DiskRestorePointGrantAccessResponse > >; /** * Grants access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. */ @@ -103,18 +91,15 @@ export interface DiskRestorePointOperations { vmRestorePointName: string, diskRestorePointName: string, grantAccessData: GrantAccessData, - options?: DiskRestorePointOperationsGrantAccessOptionalParams - ): Promise; + options?: DiskRestorePointGrantAccessOptionalParams + ): Promise; /** * Revokes access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param options The options parameters. */ beginRevokeAccess( @@ -122,18 +107,15 @@ export interface DiskRestorePointOperations { restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, - options?: DiskRestorePointOperationsRevokeAccessOptionalParams + options?: DiskRestorePointRevokeAccessOptionalParams ): Promise, void>>; /** * Revokes access to a diskRestorePoint. * @param resourceGroupName The name of the resource group. * @param restorePointCollectionName The name of the restore point collection that the disk restore - * point belongs. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is - * 80 characters. + * point belongs. * @param vmRestorePointName The name of the vm restore point that the disk disk restore point belongs. - * Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. - * @param diskRestorePointName The name of the disk restore point created. Supported characters for the - * name are a-z, A-Z, 0-9 and _. The maximum name length is 80 characters. + * @param diskRestorePointName The name of the disk restore point created. * @param options The options parameters. */ beginRevokeAccessAndWait( @@ -141,6 +123,6 @@ export interface DiskRestorePointOperations { restorePointCollectionName: string, vmRestorePointName: string, diskRestorePointName: string, - options?: DiskRestorePointOperationsRevokeAccessOptionalParams + options?: DiskRestorePointRevokeAccessOptionalParams ): Promise; } diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/disks.ts b/sdk/compute/arm-compute/src/operationsInterfaces/disks.ts index 2f53d8efa42f..45c95bbc1c2c 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/disks.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/disks.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { @@ -48,7 +47,7 @@ export interface Disks { * Creates or updates a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -68,7 +67,7 @@ export interface Disks { * Creates or updates a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -83,7 +82,7 @@ export interface Disks { * Updates (patches) a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Patch disk operation. * @param options The options parameters. @@ -100,7 +99,7 @@ export interface Disks { * Updates (patches) a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param disk Disk object supplied in the body of the Patch disk operation. * @param options The options parameters. @@ -115,7 +114,7 @@ export interface Disks { * Gets information about a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -128,7 +127,7 @@ export interface Disks { * Deletes a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -141,7 +140,7 @@ export interface Disks { * Deletes a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -154,7 +153,7 @@ export interface Disks { * Grants access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. @@ -174,7 +173,7 @@ export interface Disks { * Grants access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get disk access operation. * @param options The options parameters. @@ -189,7 +188,7 @@ export interface Disks { * Revokes access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ @@ -202,7 +201,7 @@ export interface Disks { * Revokes access to a disk. * @param resourceGroupName The name of the resource group. * @param diskName The name of the managed disk that is being created. The name can't be changed after - * the disk is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The maximum name + * the disk is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name * length is 80 characters. * @param options The options parameters. */ diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/galleries.ts b/sdk/compute/arm-compute/src/operationsInterfaces/galleries.ts index 8b7d2cd87902..7b4bdba44e0b 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/galleries.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/galleries.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplicationVersions.ts b/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplicationVersions.ts index f934bb13ac22..0cbbb3f3374e 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplicationVersions.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplicationVersions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplications.ts b/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplications.ts index 2e8e89ecacb2..2b54f24b2737 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplications.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/galleryApplications.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/galleryImageVersions.ts b/sdk/compute/arm-compute/src/operationsInterfaces/galleryImageVersions.ts index 912afc621131..88568f152ebc 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/galleryImageVersions.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/galleryImageVersions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/galleryImages.ts b/sdk/compute/arm-compute/src/operationsInterfaces/galleryImages.ts index 9b3f82080478..62814dbbee39 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/galleryImages.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/galleryImages.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/images.ts b/sdk/compute/arm-compute/src/operationsInterfaces/images.ts index f7f8ac8779d6..fdf6a39efb2c 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/images.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/images.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/index.ts b/sdk/compute/arm-compute/src/operationsInterfaces/index.ts index 2b94af01d92e..91179cafdf10 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/index.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/index.ts @@ -47,6 +47,9 @@ export * from "./gallerySharingProfile"; export * from "./sharedGalleries"; export * from "./sharedGalleryImages"; export * from "./sharedGalleryImageVersions"; +export * from "./communityGalleries"; +export * from "./communityGalleryImages"; +export * from "./communityGalleryImageVersions"; export * from "./cloudServiceRoleInstances"; export * from "./cloudServiceRoles"; export * from "./cloudServices"; diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/operations.ts b/sdk/compute/arm-compute/src/operationsInterfaces/operations.ts index 039e7c9688de..5addfa05a750 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/operations.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/operations.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ComputeOperationValue, OperationsListOptionalParams } from "../models"; diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/proximityPlacementGroups.ts b/sdk/compute/arm-compute/src/operationsInterfaces/proximityPlacementGroups.ts index 006f00a2091d..dfdc7ed4bcda 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/proximityPlacementGroups.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/proximityPlacementGroups.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ProximityPlacementGroup, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/resourceSkus.ts b/sdk/compute/arm-compute/src/operationsInterfaces/resourceSkus.ts index 18d2ea6a002b..3fa959f26775 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/resourceSkus.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/resourceSkus.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { ResourceSku, ResourceSkusListOptionalParams } from "../models"; diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/restorePointCollections.ts b/sdk/compute/arm-compute/src/operationsInterfaces/restorePointCollections.ts index d27863093da6..89be36d342ef 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/restorePointCollections.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/restorePointCollections.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleries.ts b/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleries.ts index 15cf5429f986..1499cf9dab8b 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleries.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleries.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SharedGallery, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImageVersions.ts b/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImageVersions.ts index 8099837144e6..3b6cde331c6f 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImageVersions.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImageVersions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SharedGalleryImageVersion, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImages.ts b/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImages.ts index c95aa17d2abb..db7ccb652d1b 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImages.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/sharedGalleryImages.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SharedGalleryImage, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/snapshots.ts b/sdk/compute/arm-compute/src/operationsInterfaces/snapshots.ts index bfe678ec91e1..21d2c58b6cb6 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/snapshots.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/snapshots.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { @@ -50,7 +49,7 @@ export interface Snapshots { * Creates or updates a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -70,7 +69,7 @@ export interface Snapshots { * Creates or updates a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Put disk operation. * @param options The options parameters. @@ -85,7 +84,7 @@ export interface Snapshots { * Updates (patches) a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Patch snapshot operation. * @param options The options parameters. @@ -105,7 +104,7 @@ export interface Snapshots { * Updates (patches) a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param snapshot Snapshot object supplied in the body of the Patch snapshot operation. * @param options The options parameters. @@ -120,7 +119,7 @@ export interface Snapshots { * Gets information about a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -133,7 +132,7 @@ export interface Snapshots { * Deletes a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -146,7 +145,7 @@ export interface Snapshots { * Deletes a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -159,7 +158,7 @@ export interface Snapshots { * Grants access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get snapshot access operation. * @param options The options parameters. @@ -179,7 +178,7 @@ export interface Snapshots { * Grants access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param grantAccessData Access data object supplied in the body of the get snapshot access operation. * @param options The options parameters. @@ -194,7 +193,7 @@ export interface Snapshots { * Revokes access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ @@ -207,7 +206,7 @@ export interface Snapshots { * Revokes access to a snapshot. * @param resourceGroupName The name of the resource group. * @param snapshotName The name of the snapshot that is being created. The name can't be changed after - * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name + * the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The max name * length is 80 characters. * @param options The options parameters. */ diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/sshPublicKeys.ts b/sdk/compute/arm-compute/src/operationsInterfaces/sshPublicKeys.ts index 20035c0e9958..323d9b4277f2 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/sshPublicKeys.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/sshPublicKeys.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { SshPublicKeyResource, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/usageOperations.ts b/sdk/compute/arm-compute/src/operationsInterfaces/usageOperations.ts index b4f4b735d1c2..f6a753fdfba7 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/usageOperations.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/usageOperations.ts @@ -6,9 +6,8 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; -import { Usage, UsageOperationsListOptionalParams } from "../models"; +import { Usage, UsageListOptionalParams } from "../models"; /// /** Interface representing a UsageOperations. */ @@ -21,6 +20,6 @@ export interface UsageOperations { */ list( location: string, - options?: UsageOperationsListOptionalParams + options?: UsageListOptionalParams ): PagedAsyncIterableIterator; } diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineRunCommands.ts b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineRunCommands.ts index 0feae514b67a..810b9e62aa00 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineRunCommands.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineRunCommands.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetExtensions.ts b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetExtensions.ts index 2d89de3c12a2..f6fa2d40c19d 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetExtensions.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetExtensions.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMRunCommands.ts b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMRunCommands.ts index d55a4ff703c1..2722e0347945 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMRunCommands.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMRunCommands.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMs.ts b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMs.ts index 2bdf60d86598..4992cbb93f6d 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMs.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSetVMs.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSets.ts b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSets.ts index 4a56b0d88cee..d27dfb19d234 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSets.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineScaleSets.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineSizes.ts b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineSizes.ts index 7b0bbe1c2cf2..ef1e113bee1b 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineSizes.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachineSizes.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { VirtualMachineSize, diff --git a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachines.ts b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachines.ts index 2448598f48c4..8f5d0f6d902c 100644 --- a/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachines.ts +++ b/sdk/compute/arm-compute/src/operationsInterfaces/virtualMachines.ts @@ -6,7 +6,6 @@ * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import "@azure/core-paging"; import { PagedAsyncIterableIterator } from "@azure/core-paging"; import { PollerLike, PollOperationState } from "@azure/core-lro"; import { diff --git a/sdk/compute/arm-compute/test/compute_examples.ts b/sdk/compute/arm-compute/test/compute_examples.ts new file mode 100644 index 000000000000..91aeee74448f --- /dev/null +++ b/sdk/compute/arm-compute/test/compute_examples.ts @@ -0,0 +1,275 @@ +/* + * 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 { + env, + record, + RecorderEnvironmentSetup, + Recorder +} from "@azure-tools/test-recorder"; +import * as assert from "assert"; +import { ClientSecretCredential } from "@azure/identity"; +import { ComputeManagementClient } from "../src/computeManagementClient"; +import { NetworkManagementClient,VirtualNetwork,Subnet,NetworkInterface } from "@azure/arm-network"; + +const recorderEnvSetup: RecorderEnvironmentSetup = { + replaceableVariables: { + AZURE_CLIENT_ID: "azure_client_id", + AZURE_CLIENT_SECRET: "azure_client_secret", + AZURE_TENANT_ID: "88888888-8888-8888-8888-888888888888", + SUBSCRIPTION_ID: "azure_subscription_id" + }, + customizationsOnRecordings: [ + (recording: any): any => + recording.replace( + /"access_token":"[^"]*"/g, + `"access_token":"access_token"` + ) + ], + queryParametersToSkip: [] +}; + +describe("Compute test", () => { + let recorder: Recorder; + let subscriptionId: string; + let client: ComputeManagementClient; + let network_client: NetworkManagementClient; + let location: string; + let resourceGroupName: string; + let availabilitySetName: string; + let network_name: string; + let subnet_name: string; + let interface_name: string; + let virtual_machine_name: string; + + beforeEach(async function() { + recorder = record(this, recorderEnvSetup); + subscriptionId = env.SUBSCRIPTION_ID; + // This is an example of how the environment variables are used + const credential = new ClientSecretCredential( + env.AZURE_TENANT_ID, + env.AZURE_CLIENT_ID, + env.AZURE_CLIENT_SECRET + ); + client = new ComputeManagementClient(credential, subscriptionId); + network_client = new NetworkManagementClient(credential,subscriptionId); + location = "eastus"; + resourceGroupName = "myjstest"; + availabilitySetName = "availabilitySets123"; + network_name = "networknamex"; + subnet_name = "subnetnamex"; + interface_name = "interfacex"; + virtual_machine_name = "virtualmachinex"; + }); + + afterEach(async function() { + await recorder.stop(); + }); + + //network_client.virtualNetworks.createOrUpdate + async function createVirtualNetwork() { + const parameter: VirtualNetwork = { + location: location, + addressSpace: { + addressPrefixes: ["10.0.0.0/16"], + }, + }; + const virtualNetworks_create_info = await network_client.virtualNetworks.beginCreateOrUpdateAndWait( + resourceGroupName, + network_name, + parameter + ); + + const subnet_parameter: Subnet = { + addressPrefix: "10.0.0.0/24", + }; + const subnet__create_info = await network_client.subnets.beginCreateOrUpdateAndWait( + resourceGroupName, + network_name, + subnet_name, + subnet_parameter + ); + } + + //network_client.networkInterfaces.createOrUpdate + async function createNetworkInterface( + group_name: any, + location: any, + nic_name: any + ) { + const parameter: NetworkInterface = { + location: location, + ipConfigurations: [ + { + name: "MyIpConfig", + subnet: { + id: + "/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.Network/virtualNetworks/" + + network_name + + "/subnets/" + + subnet_name, + }, + }, + ], + }; + const nic_info = await network_client.networkInterfaces.beginCreateOrUpdateAndWait( + group_name, + nic_name, + parameter + ); + } + + it("availabilitySets create test", async function() { + const res = await client.availabilitySets.createOrUpdate(resourceGroupName, availabilitySetName, { + platformFaultDomainCount: 2, + platformUpdateDomainCount: 20, + location: location, + }) + assert.equal(res.name,availabilitySetName); + }); + + it("availabilitySets update test", async function() { + const res = await client.availabilitySets.update(resourceGroupName, availabilitySetName, { + platformFaultDomainCount: 2, + platformUpdateDomainCount: 20 + }) + assert.equal(res.type,"Microsoft.Compute/availabilitySets"); + }); + + it("availabilitySets get test", async function() { + const res = await client.availabilitySets.get(resourceGroupName, availabilitySetName); + assert.equal(res.name,availabilitySetName); + }); + + it("availabilitySets list test", async function() { + const resArray = new Array(); + for await (const item of client.availabilitySets.list(resourceGroupName)) { + resArray.push(item); + } + assert.equal(resArray.length,1); + }); + + it("availabilitySets delete test", async function() { + const res = await client.availabilitySets.delete(resourceGroupName,availabilitySetName); + const resArray = new Array(); + for await (const item of client.availabilitySets.list(resourceGroupName)) { + resArray.push(item); + } + assert.equal(resArray.length,0); + }); + + it("virtualMachines create test", async function() { + await createVirtualNetwork(); + await createNetworkInterface(resourceGroupName, location, interface_name); + const res = await client.virtualMachines.beginCreateOrUpdateAndWait(resourceGroupName,virtual_machine_name,{ + location: location, + hardwareProfile: { + vmSize: "Standard_D2_v2", + }, + storageProfile: { + imageReference: { + sku: "2016-Datacenter", + publisher: "MicrosoftWindowsServer", + version: "latest", + offer: "WindowsServer", + }, + osDisk: { + caching: "ReadWrite", + managedDisk: { + storageAccountType: "Standard_LRS", + }, + name: "myVMosdisk", + createOption: "FromImage", + }, + dataDisks: [ + { + diskSizeGB: 1023, + createOption: "Empty", + lun: 0, + }, + { + diskSizeGB: 1023, + createOption: "Empty", + lun: 1, + }, + ], + }, + osProfile: { + adminUsername: "testuser", + computerName: "myVM", + adminPassword: "Aa!1()-xyz", + windowsConfiguration: { + enableAutomaticUpdates: true, // need automatic update for reimage + }, + }, + networkProfile: { + networkInterfaces: [ + { + id: + "/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.Network/networkInterfaces/" + + interface_name + + "", + primary: true, + }, + ], + } + }); + assert.equal(res.name,virtual_machine_name); + }); + + it("virtualMachines get test", async function() { + const res = await client.virtualMachines.get(resourceGroupName, virtual_machine_name); + assert.equal(res.name,virtual_machine_name); + }); + + it("virtualMachines list test", async function() { + const resArray = new Array(); + for await (const item of client.virtualMachines.list(resourceGroupName)) { + resArray.push(item); + } + assert.equal(resArray.length,1); + }); + + it("virtualMachines update test", async function() { + const res = await client.virtualMachines.beginUpdateAndWait(resourceGroupName, virtual_machine_name, { + networkProfile: { + networkInterfaces: [ + { + id: + "/subscriptions/" + + subscriptionId + + "/resourceGroups/" + + resourceGroupName + + "/providers/Microsoft.Network/networkInterfaces/" + + interface_name + + "", + primary: true, + }, + ], + } + }) + assert.equal(res.type,"Microsoft.Compute/virtualMachines"); + }); + + it("virtualMachines delete test", async function() { + const res = await client.virtualMachines.beginDeleteAndWait(resourceGroupName,virtual_machine_name); + const resArray = new Array(); + for await (const item of client.virtualMachines.list(resourceGroupName)) { + resArray.push(item); + } + assert.equal(resArray.length,0); + }); +}); diff --git a/sdk/compute/arm-compute/tsconfig.json b/sdk/compute/arm-compute/tsconfig.json index 603440b3a359..6e3251194117 100644 --- a/sdk/compute/arm-compute/tsconfig.json +++ b/sdk/compute/arm-compute/tsconfig.json @@ -14,6 +14,6 @@ "outDir": "./dist-esm", "importHelpers": true }, - "include": ["./src/**/*.ts"], + "include": ["./src/**/*.ts", "./test/**/*.ts"], "exclude": ["node_modules"] } From 040f1868c661236528aa55978479ad725c9472a3 Mon Sep 17 00:00:00 2001 From: colawwj Date: Mon, 18 Oct 2021 15:51:00 +0800 Subject: [PATCH 2/2] update --- common/config/rush/pnpm-lock.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index b17605a5bebb..b4e0a9acd4f6 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -366,6 +366,21 @@ packages: util: 0.11.1 dev: false + /@azure/arm-network/26.0.0-beta.1: + resolution: {integrity: sha512-uTX8AmRmyXZO2EDY+4ZOy8OGg7acetv7RqGVE+r5YxwUdp7z7cws/gR0NCwWs0j474yk8Wp4p60IfhUKHVcWRg==} + engines: {node: '>=12.0.0'} + dependencies: + '@azure/abort-controller': 1.0.4 + '@azure/core-auth': 1.3.2 + '@azure/core-client': 1.3.1 + '@azure/core-lro': 2.2.1 + '@azure/core-paging': 1.2.0 + '@azure/core-rest-pipeline': 1.3.1 + tslib: 2.3.1 + transitivePeerDependencies: + - supports-color + dev: false + /@azure/arm-network/30.0.0-beta.3: resolution: {integrity: sha512-+wjvjsWQ4CNsA96jvQxbWkRQrkbPqf7rHUuV9O3aj5wD2ECkDVvhvy8TjRE2UWuEPJoFkJkKrpaAwx2xNIZJBg==} engines: {node: '>=12.0.0'} @@ -8611,10 +8626,11 @@ packages: dev: false file:projects/arm-compute.tgz: - resolution: {integrity: sha512-5BqAukGEZXq9+mAIu0BcKj+eI0JE509xxS9qghbJDACkaj4ek/dijKq/rBL/RmPC1Wk+WTnBdRcYZ/DdaIZarQ==, tarball: file:projects/arm-compute.tgz} + resolution: {integrity: sha512-FaD4eIsZKSPaCdi+sZG/rLdxIK53N2kLSPC9WpA9R16MNspd5oGDdIrNBaqMm0wIiGVgmaF0I/Bz0xhjwpJRlg==, tarball: file:projects/arm-compute.tgz} name: '@rush-temp/arm-compute' version: 0.0.0 dependencies: + '@azure/arm-network': 26.0.0-beta.1 '@azure/identity': 2.0.0-beta.6 '@microsoft/api-extractor': 7.7.11 '@rollup/plugin-commonjs': 11.0.2_rollup@1.32.1