From d515f86c0e68237001af1a9bf9dbf0a6bb4c526e Mon Sep 17 00:00:00 2001 From: colawwj <70128817+colawwj@users.noreply.github.com> Date: Mon, 22 Nov 2021 10:39:47 +0800 Subject: [PATCH] batch-track2 (#18746) * batch-track2 * update --- common/config/rush/pnpm-lock.yaml | 23 + rush.json | 5 + sdk/batch/arm-batch/CHANGELOG.md | 14 + sdk/batch/arm-batch/{LICENSE.txt => LICENSE} | 4 +- sdk/batch/arm-batch/README.md | 152 +- sdk/batch/arm-batch/_meta.json | 7 + sdk/batch/arm-batch/api-extractor.json | 18 + sdk/batch/arm-batch/package.json | 105 +- ...rding_applicationoperations_create_test.js | 151 + ...rding_applicationoperations_delete_test.js | 177 + ...ecording_applicationoperations_get_test.js | 151 + ...cording_applicationoperations_list_test.js | 147 + ...ding_batchaccountoperations_create_test.js | 559 + ...ding_batchaccountoperations_delete_test.js | 37543 ++++++++++++++++ ...cording_batchaccountoperations_get_test.js | 151 + ...ing_batchaccountoperations_getkeys_test.js | 147 + ...ording_batchaccountoperations_list_test.js | 147 + ...tchaccountoperations_regeneratekey_test.js | 147 + ...ding_batchaccountoperations_update_test.js | 151 + ...rtificateoperations_canceldeletion_test.js | 151 + ...rding_certificateoperations_create_test.js | 151 + ...rding_certificateoperations_delete_test.js | 6603 +++ ...ecording_certificateoperations_get_test.js | 151 + ...cording_certificateoperations_list_test.js | 147 + ...rding_certificateoperations_update_test.js | 151 + ...ing_location_checknameavailability_test.js | 147 + .../recording_location_getquotas_test.js | 147 + ...tion_listsupportedcloudserviceskus_test.js | 147 + ...on_listsupportedvirtualmachineskus_test.js | 147 + .../recording_pooloperations_create_test.js | 151 + .../recording_pooloperations_delete_test.js | 245 + ...ng_pooloperations_disableautoscale_test.js | 151 + .../recording_pooloperations_get_test.js | 151 + ..._pooloperations_listbybatchaccount_test.js | 147 + ...ecording_pooloperations_stopresize_test.js | 151 + .../recording_pooloperations_update_test.js | 151 + ...ctionoperations_listbybatchaccount_test.js | 147 + ...ourceoperations_listbybatchaccount_test.js | 147 + sdk/batch/arm-batch/review/arm-batch.api.md | 1459 + sdk/batch/arm-batch/rollup.config.js | 211 +- .../arm-batch/src/batchManagementClient.ts | 112 +- .../src/batchManagementClientContext.ts | 94 +- sdk/batch/arm-batch/src/index.ts | 13 + sdk/batch/arm-batch/src/lroImpl.ts | 34 + .../models/applicationOperationsMappers.ts | 72 - .../applicationPackageOperationsMappers.ts | 73 - .../models/batchAccountOperationsMappers.ts | 78 - .../models/certificateOperationsMappers.ts | 77 - sdk/batch/arm-batch/src/models/index.ts | 4524 +- .../arm-batch/src/models/locationMappers.ts | 14 - sdk/batch/arm-batch/src/models/mappers.ts | 3540 +- .../arm-batch/src/models/operationsMappers.ts | 14 - sdk/batch/arm-batch/src/models/parameters.ts | 338 +- .../src/models/poolOperationsMappers.ts | 78 - ...vateEndpointConnectionOperationsMappers.ts | 73 - .../privateLinkResourceOperationsMappers.ts | 72 - .../src/operations/applicationOperations.ts | 479 +- .../applicationPackageOperations.ts | 531 +- .../src/operations/batchAccountOperations.ts | 1148 +- .../src/operations/certificateOperations.ts | 718 +- sdk/batch/arm-batch/src/operations/index.ts | 8 +- .../arm-batch/src/operations/location.ts | 422 +- .../arm-batch/src/operations/operations.ts | 154 +- .../src/operations/poolOperations.ts | 754 +- .../privateEndpointConnectionOperations.ts | 439 +- .../privateLinkResourceOperations.ts | 283 +- .../applicationOperations.ts | 90 + .../applicationPackageOperations.ts | 106 + .../batchAccountOperations.ts | 196 + .../certificateOperations.ts | 139 + .../src/operationsInterfaces/index.ts | 17 + .../src/operationsInterfaces/location.ts | 62 + .../src/operationsInterfaces/operations.ts | 22 + .../operationsInterfaces/poolOperations.ts | 142 + .../privateEndpointConnectionOperations.ts | 87 + .../privateLinkResourceOperations.ts | 45 + .../test/batchManagementClient.spec.ts | 576 - sdk/batch/arm-batch/test/sample.env | 15 - sdk/batch/arm-batch/test/sampleTest.ts | 331 + sdk/batch/arm-batch/tsconfig.json | 6 +- sdk/batch/ci.yml | 29 + 81 files changed, 58533 insertions(+), 8324 deletions(-) create mode 100644 sdk/batch/arm-batch/CHANGELOG.md rename sdk/batch/arm-batch/{LICENSE.txt => LICENSE} (96%) create mode 100644 sdk/batch/arm-batch/_meta.json create mode 100644 sdk/batch/arm-batch/api-extractor.json create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_create_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_delete_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_get_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_list_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_create_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_delete_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_get_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_getkeys_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_list_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_regeneratekey_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_update_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_canceldeletion_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_create_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_delete_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_get_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_list_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_update_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_location_checknameavailability_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_location_getquotas_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedcloudserviceskus_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedvirtualmachineskus_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_create_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_delete_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_disableautoscale_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_get_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_listbybatchaccount_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_stopresize_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_update_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_privateendpointconnectionoperations_listbybatchaccount_test.js create mode 100644 sdk/batch/arm-batch/recordings/node/batch_test/recording_privatelinkresourceoperations_listbybatchaccount_test.js create mode 100644 sdk/batch/arm-batch/review/arm-batch.api.md create mode 100644 sdk/batch/arm-batch/src/index.ts create mode 100644 sdk/batch/arm-batch/src/lroImpl.ts delete mode 100644 sdk/batch/arm-batch/src/models/applicationOperationsMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/applicationPackageOperationsMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/batchAccountOperationsMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/certificateOperationsMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/locationMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/operationsMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/poolOperationsMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/privateEndpointConnectionOperationsMappers.ts delete mode 100644 sdk/batch/arm-batch/src/models/privateLinkResourceOperationsMappers.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/applicationOperations.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/applicationPackageOperations.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/batchAccountOperations.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/certificateOperations.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/index.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/location.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/operations.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/poolOperations.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/privateEndpointConnectionOperations.ts create mode 100644 sdk/batch/arm-batch/src/operationsInterfaces/privateLinkResourceOperations.ts delete mode 100644 sdk/batch/arm-batch/test/batchManagementClient.spec.ts delete mode 100644 sdk/batch/arm-batch/test/sample.env create mode 100644 sdk/batch/arm-batch/test/sampleTest.ts create mode 100644 sdk/batch/ci.yml diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index 7e67dee01ed3..2d099166d664 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -13,6 +13,7 @@ specifiers: '@rush-temp/arm-appplatform': file:./projects/arm-appplatform.tgz '@rush-temp/arm-appservice': file:./projects/arm-appservice.tgz '@rush-temp/arm-authorization': file:./projects/arm-authorization.tgz + '@rush-temp/arm-batch': file:./projects/arm-batch.tgz '@rush-temp/arm-cdn': file:./projects/arm-cdn.tgz '@rush-temp/arm-compute': file:./projects/arm-compute.tgz '@rush-temp/arm-consumption': file:./projects/arm-consumption.tgz @@ -170,6 +171,7 @@ dependencies: '@rush-temp/arm-appplatform': file:projects/arm-appplatform.tgz '@rush-temp/arm-appservice': file:projects/arm-appservice.tgz '@rush-temp/arm-authorization': file:projects/arm-authorization.tgz + '@rush-temp/arm-batch': file:projects/arm-batch.tgz '@rush-temp/arm-cdn': file:projects/arm-cdn.tgz '@rush-temp/arm-compute': file:projects/arm-compute.tgz '@rush-temp/arm-consumption': file:projects/arm-consumption.tgz @@ -8696,6 +8698,27 @@ packages: uglify-js: 3.14.3 dev: false + file:projects/arm-batch.tgz: + resolution: {integrity: sha512-yZunhswkrAsneBi3vyqkvAw/N0g2/5gSVNN34qKC35jIFM2TQ+Bo2aD2DN0a+DUviPrkBKGAAC1S9Zbcce8PyQ==, tarball: file:projects/arm-batch.tgz} + name: '@rush-temp/arm-batch' + version: 0.0.0 + dependencies: + '@microsoft/api-extractor': 7.18.19 + '@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 + rimraf: 3.0.2 + rollup: 1.32.1 + rollup-plugin-sourcemaps: 0.4.2_rollup@1.32.1 + tslib: 2.3.1 + typescript: 4.2.4 + uglify-js: 3.14.3 + dev: false + file:projects/arm-cdn.tgz: resolution: {integrity: sha512-0pz1nmXlUjshQA07w1Bhn37C7MSyxuReagHuf2RDmgI2Ntjsw7cw6fYdlGx8Fhio7WcT2Eixe6lH1v76Gi2M1A==, tarball: file:projects/arm-cdn.tgz} name: '@rush-temp/arm-cdn' diff --git a/rush.json b/rush.json index 90fc2152e12e..3af0d56f7d48 100644 --- a/rush.json +++ b/rush.json @@ -1095,6 +1095,11 @@ "packageName": "@azure/arm-datalake-analytics", "projectFolder": "sdk/datalake-analytics/arm-datalake-analytics", "versionPolicyName": "management" + }, + { + "packageName": "@azure/arm-batch", + "projectFolder": "sdk/batch/arm-batch", + "versionPolicyName": "management" } ] } \ No newline at end of file diff --git a/sdk/batch/arm-batch/CHANGELOG.md b/sdk/batch/arm-batch/CHANGELOG.md new file mode 100644 index 000000000000..761990191130 --- /dev/null +++ b/sdk/batch/arm-batch/CHANGELOG.md @@ -0,0 +1,14 @@ +## 7.0.0-beta.1 (2021-11-18) + +This is the first preview for the new version of the `@azure/arm-batch` package that follows the new [guidelines for TypeScript SDKs](https://azure.github.io/azure-sdk/typescript_introduction.html) for Azure services. + +While this package remains auto generated, the SDK generator itself has undergone changes to comply with the above guidelines in order to generate packages that are idiomatic to the JavaScript/TypeScript ecosystem and consistent with other packages for Azure services. For more on this, please see [State of the Azure SDK 2021](https://devblogs.microsoft.com/azure-sdk/state-of-the-azure-sdk-2021/). + +Please note that this version has breaking changes, all of which were made after careful consideration during the authoring of the guidelines and user studies. + +**Noteworthy changes and features** +- Authentication: The packages `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` are no longer supported. Use package [@azure/identity](https://www.npmjs.com/package/@azure/identity) instead. Select a credential from Azure Identity examples based on the authentication method of your choice. +- Callbacks: Method overloads that used callbacks have been removed and the use of promises is encouraged instead. +- List operations now return an iterable result that follows the `PagedAsyncIterableIterator` interface as opposed to the previous model where you had to make a new request using the link to the next page. +- Long running operations i.e. the Lro related object returned by methods whose names started with `begin`, now uses `pollUntilDone` to check whether the request is finished, instead of `pollUntilFinished`. To get the final result, use the corresponding method that will have the suffix `AndWait`. +- The SDK only supports ECMAScript 2015 (ES6) and beyond, all projects that referenced this SDK should be upgraded to use ES6. diff --git a/sdk/batch/arm-batch/LICENSE.txt b/sdk/batch/arm-batch/LICENSE similarity index 96% rename from sdk/batch/arm-batch/LICENSE.txt rename to sdk/batch/arm-batch/LICENSE index ea8fb1516028..ccb63b166732 100644 --- a/sdk/batch/arm-batch/LICENSE.txt +++ b/sdk/batch/arm-batch/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2020 Microsoft +Copyright (c) 2021 Microsoft Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. +SOFTWARE. \ No newline at end of file diff --git a/sdk/batch/arm-batch/README.md b/sdk/batch/arm-batch/README.md index 7b0d748b036c..ebc45b2b48ae 100644 --- a/sdk/batch/arm-batch/README.md +++ b/sdk/batch/arm-batch/README.md @@ -1,112 +1,98 @@ -## Azure BatchManagementClient SDK for JavaScript +# Azure BatchManagement client library for JavaScript -This package contains an isomorphic SDK (runs both in Node.js and in browsers) for BatchManagementClient. +This package contains an isomorphic SDK (runs both in Node.js and in browsers) for Azure BatchManagement client. + +Batch Client + +[Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/batch/arm-batch) | +[Package (NPM)](https://www.npmjs.com/package/@azure/arm-batch) | +[API reference documentation](https://docs.microsoft.com/javascript/api/@azure/arm-batch?view=azure-node-preview) | +[Samples](https://github.com/Azure-Samples/azure-samples-js-management) + +## Getting started ### Currently supported environments - [LTS versions of Node.js](https://nodejs.org/about/releases/) -- Latest versions of Safari, Chrome, Edge, and Firefox. +- Latest versions of Safari, Chrome, Edge and Firefox. ### Prerequisites -You must have an [Azure subscription](https://azure.microsoft.com/free/). +- An [Azure subscription][azure_sub]. -### How to install +### Install the `@azure/arm-batch` package -To use this SDK in your project, you will need to install two packages. -- `@azure/arm-batch` that contains the client. -- `@azure/identity` that provides different mechanisms for the client to authenticate your requests using Azure Active Directory. +Install the Azure BatchManagement client library for JavaScript with `npm`: -Install both packages using the below command: ```bash -npm install --save @azure/arm-batch @azure/identity +npm install @azure/arm-batch ``` -> **Note**: You may have used either `@azure/ms-rest-nodeauth` or `@azure/ms-rest-browserauth` in the past. These packages are in maintenance mode receiving critical bug fixes, but no new features. -If you are on a [Node.js that has LTS status](https://nodejs.org/about/releases/), or are writing a client side browser application, we strongly encourage you to upgrade to `@azure/identity` which uses the latest versions of Azure Active Directory and MSAL APIs and provides more authentication options. +### Create and authenticate a `BatchManagementClient` -### How to use +To create a client object to access the Azure BatchManagement API, you will need the `endpoint` of your Azure BatchManagement resource and a `credential`. The Azure BatchManagement client can use Azure Active Directory credentials to authenticate. +You can find the endpoint for your Azure BatchManagement resource in the [Azure Portal][azure_portal]. -- If you are writing a client side browser application, - - Follow the instructions in the section on Authenticating client side browser applications in [Azure Identity examples](https://aka.ms/azsdk/js/identity/examples) to register your application in the Microsoft identity platform and set the right permissions. - - Copy the client ID and tenant ID from the Overview section of your app registration in Azure portal and use it in the browser sample below. -- If you are writing a server side application, - - [Select a credential from `@azure/identity` based on the authentication method of your choice](https://aka.ms/azsdk/js/identity/examples) - - Complete the set up steps required by the credential if any. - - Use the credential you picked in the place of `DefaultAzureCredential` in the Node.js sample below. +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). -In the below samples, we pass the credential and the Azure subscription id to instantiate the client. -Once the client is created, explore the operations on it either in your favorite editor or in our [API reference documentation](https://docs.microsoft.com/javascript/api) to get started. +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 +``` -#### nodejs - Authentication, client creation, and get batchAccount as an example written in JavaScript. +You will also need to **register a new AAD application and grant access to Azure BatchManagement** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions). +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`. -##### Sample code +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 { DefaultAzureCredential } = require("@azure/identity"); const { BatchManagementClient } = require("@azure/arm-batch"); -const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]; - -// Use `DefaultAzureCredential` or any other credential of your choice based on https://aka.ms/azsdk/js/identity/examples -// Please note that you can also use credentials from the `@azure/ms-rest-nodeauth` package instead. -const creds = new DefaultAzureCredential(); -const client = new BatchManagementClient(creds, subscriptionId); -const resourceGroupName = "testresourceGroupName"; -const accountName = "testaccountName"; -client.batchAccount.get(resourceGroupName, accountName).then((result) => { - console.log("The result is:"); - console.log(result); -}).catch((err) => { - console.log("An error occurred:"); - console.error(err); -}); +const { DefaultAzureCredential } = require("@azure/identity"); +const subscriptionId = "00000000-0000-0000-0000-000000000000"; +const client = new BatchManagementClient(new DefaultAzureCredential(), subscriptionId); ``` -#### browser - Authentication, client creation, and get batchAccount as an example written in JavaScript. - -In browser applications, we recommend using the `InteractiveBrowserCredential` that interactively authenticates using the default system browser. - - See [Single-page application: App registration guide](https://docs.microsoft.com/azure/active-directory/develop/scenario-spa-app-registration) to configure your app registration for the browser. - - Note down the client Id from the previous step and use it in the browser sample below. - -##### Sample code - -- index.html - -```html - - - - @azure/arm-batch sample - - - - - - - + +### JavaScript Bundle +To use this client library in the browser, first you need to use a bundler. For details on how to do this, please refer to our [bundling documentation](https://aka.ms/AzureSDKBundling). + +## Key concepts + +### BatchManagementClient + +`BatchManagementClient` is the primary interface for developers using the Azure BatchManagement client library. Explore the methods on this client object to understand the different features of the Azure BatchManagement service that you can access. + +## Troubleshooting + +### Logging + +Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`: + +```javascript +const { setLogLevel } = require("@azure/logger"); +setLogLevel("info"); ``` +For more detailed instructions on how to enable logs, you can look at the [@azure/logger package docs](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger). + +## Next steps + +Please take a look at the [samples](https://github.com/Azure-Samples/azure-samples-js-management) directory for detailed examples on how to use this library. + +## Contributing + +If you'd like to contribute to this library, please read the [contributing guide](https://github.com/Azure/azure-sdk-for-js/blob/main/CONTRIBUTING.md) to learn more about how to build and test the code. + ## Related projects -- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js) +- [Microsoft Azure SDK for JavaScript](https://github.com/Azure/azure-sdk-for-js) + +![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fsdk%2Fbatch%2Farm-batch%2FREADME.png) -![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/batch/arm-batch/README.png) +[azure_cli]: https://docs.microsoft.com/cli/azure +[azure_sub]: https://azure.microsoft.com/free/ +[azure_sub]: https://azure.microsoft.com/free/ +[azure_portal]: https://portal.azure.com +[azure_identity]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity +[defaultazurecredential]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity#defaultazurecredential diff --git a/sdk/batch/arm-batch/_meta.json b/sdk/batch/arm-batch/_meta.json new file mode 100644 index 000000000000..435799223817 --- /dev/null +++ b/sdk/batch/arm-batch/_meta.json @@ -0,0 +1,7 @@ +{ + "commit": "1ddb357fe819c8ed527f3b74d8bf00be752ecd3f", + "readme": "specification/batch/resource-manager/readme.md", + "autorest_command": "autorest --version=3.1.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\mydev\\azure-sdk-for-js ../azure-rest-api-specs/specification/batch/resource-manager/readme.md --use=@autorest/typescript@6.0.0-alpha.15.20211116.1", + "repository_url": "https://github.com/Azure/azure-rest-api-specs.git", + "use": "@autorest/typescript@6.0.0-alpha.15.20211116.1" +} \ No newline at end of file diff --git a/sdk/batch/arm-batch/api-extractor.json b/sdk/batch/arm-batch/api-extractor.json new file mode 100644 index 000000000000..74a32fc5ad6e --- /dev/null +++ b/sdk/batch/arm-batch/api-extractor.json @@ -0,0 +1,18 @@ +{ + "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", + "mainEntryPointFilePath": "./dist-esm/src/index.d.ts", + "docModel": { "enabled": true }, + "apiReport": { "enabled": true, "reportFolder": "./review" }, + "dtsRollup": { + "enabled": true, + "untrimmedFilePath": "", + "publicTrimmedFilePath": "./types/arm-batch.d.ts" + }, + "messages": { + "tsdocMessageReporting": { "default": { "logLevel": "none" } }, + "extractorMessageReporting": { + "ae-missing-release-tag": { "logLevel": "none" }, + "ae-unresolved-link": { "logLevel": "none" } + } + } +} diff --git a/sdk/batch/arm-batch/package.json b/sdk/batch/arm-batch/package.json index 25147b040606..6a7a7408106a 100644 --- a/sdk/batch/arm-batch/package.json +++ b/sdk/batch/arm-batch/package.json @@ -1,67 +1,92 @@ { "name": "@azure/arm-batch", + "sdk-type": "mgmt", "author": "Microsoft Corporation", - "description": "BatchManagementClient Library with typescript type definitions for node.js and browser.", - "version": "5.1.0", + "description": "A generated SDK for BatchManagementClient.", + "version": "7.0.0-beta.1", + "engines": { "node": ">=12.0.0" }, "dependencies": { - "@azure/ms-rest-azure-js": "^2.1.0", - "@azure/ms-rest-js": "^2.2.0", - "@azure/core-auth": "^1.1.4", - "tslib": "^2.0.0" + "@azure/core-lro": "^2.2.0", + "@azure/abort-controller": "^1.0.0", + "@azure/core-paging": "^1.2.0", + "@azure/core-client": "^1.0.0", + "@azure/core-auth": "^1.3.0", + "@azure/core-rest-pipeline": "^1.1.0", + "tslib": "^2.2.0", + "@azure/arm-storage": "^17.0.0-beta.1" }, - "keywords": [ - "node", - "azure", - "typescript", - "browser", - "isomorphic" - ], + "keywords": ["node", "azure", "typescript", "browser", "isomorphic"], "license": "MIT", - "main": "./dist/arm-batch.js", - "module": "./esm/batchManagementClient.js", - "types": "./esm/batchManagementClient.d.ts", + "main": "./dist/index.js", + "module": "./dist-esm/src/index.js", + "types": "./types/arm-batch.d.ts", "devDependencies": { - "@types/chai": "^4.1.6", - "@types/jssha": "^2.0.0", - "@types/mocha": "^7.0.2", - "chai": "^4.2.0", - "dotenv": "^8.2.0", - "mocha": "^7.1.1", + "@microsoft/api-extractor": "^7.18.11", + "@rollup/plugin-commonjs": "11.0.2", + "@rollup/plugin-json": "^4.0.0", + "@rollup/plugin-multi-entry": "^3.0.0", + "@rollup/plugin-node-resolve": "^8.0.0", + "mkdirp": "^1.0.4", "rollup": "^1.16.3", - "rollup-plugin-node-resolve": "^5.2.0", "rollup-plugin-sourcemaps": "^0.4.2", - "esm": "^3.2.25", - "ts-node": "^8.3.0", - "typescript": "^3.6.0", - "uglify-js": "^3.4.9" + "typescript": "~4.2.0", + "uglify-js": "^3.4.9", + "rimraf": "^3.0.0", + "@azure/identity": "^2.0.1", + "@azure-tools/test-recorder": "^1.0.0", + "mocha": "^7.1.1", + "cross-env": "^7.0.2" }, - "homepage": "https://github.com/Azure/azure-sdk-for-js", + "homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/batch/arm-batch", "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", "dist/**/*.d.ts", "dist/**/*.d.ts.map", - "esm/**/*.js", - "esm/**/*.js.map", - "esm/**/*.d.ts", - "esm/**/*.d.ts.map", + "dist-esm/**/*.js", + "dist-esm/**/*.js.map", + "dist-esm/**/*.d.ts", + "dist-esm/**/*.d.ts.map", "src/**/*.ts", "README.md", + "LICENSE", "rollup.config.js", - "tsconfig.json" + "tsconfig.json", + "review/*", + "CHANGELOG.md", + "types/*" ], "scripts": { - "build": "tsc && rollup -c rollup.config.js && npm run minify", - "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/arm-batch.js.map'\" -o ./dist/arm-batch.min.js ./dist/arm-batch.js", - "prepack": "npm install && npm run build", - "test": "mocha -r esm --require ts-node/register test/*.spec.ts --timeout 1200000 --full-trace" + "build": "npm run clean && tsc && rollup -c 2>&1 && npm run minify && mkdirp ./review && npm run extract-api", + "minify": "uglifyjs -c -m --comments --source-map \"content='./dist/index.js.map'\" -o ./dist/index.min.js ./dist/index.js", + "prepack": "npm run build", + "pack": "npm pack 2>&1", + "extract-api": "api-extractor run --local", + "lint": "echo skipped", + "audit": "echo skipped", + "clean": "rimraf dist dist-browser dist-esm test-dist temp types *.tgz *.log", + "build:node": "echo skipped", + "build:browser": "echo skipped", + "build:test": "echo skipped", + "build:samples": "echo skipped.", + "check-format": "echo skipped", + "execute:samples": "echo skipped", + "format": "echo skipped", + "test": "npm run integration-test", + "test:node": "echo skipped", + "test:browser": "echo skipped", + "unit-test": "npm run unit-test:node && npm run unit-test:browser", + "unit-test:node": "cross-env TEST_MODE=playback npm run integration-test:node", + "unit-test:browser": "echo skipped", + "integration-test": "npm run integration-test:node && npm run integration-test:browser", + "integration-test:node": "mocha -r esm --require ts-node/register --timeout 1200000 --full-trace test/*.ts --reporter ../../../common/tools/mocha-multi-reporter.js", + "integration-test:browser": "echo skipped", + "docs": "echo skipped" }, "sideEffects": false, "autoPublish": true diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_create_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_create_test.js new file mode 100644 index 000000000000..84e2b98600c2 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_create_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "4344111f736f8c1cea904105c7da93d1"; + +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', + 'd757ccb4-8810-408b-82e3-83ccbf17f600', + 'x-ms-ests-server', + '2.1.12231.7 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=As60zeWdBOVKq3yZAKhHT-o; expires=Sun, 19-Dec-2021 07:07:29 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrmFnXc8jRNgf8w2F5tfMKDsemWyl1U585_l3t2N1zUB1-zQI-fdxJcZGWbzYsue2YDFYggwKwfpVXl_rM67V5AT4XZNnTs8APzHtaEzhne-pAzKDr-QzaAQ_mzJ-KAZAJ4dnVvAvfSz2X8WhVsjclfYdKJKnRBGsC96lTsyaYP-AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:29 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', + '3c88997b-98c8-4a59-9b64-19da1ce13f00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AjDfwX7_zTdEob8MJKhja-k; expires=Sun, 19-Dec-2021 07:07:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-pOqCKEp3vMaNsw2K4HtUHh4WuPVK_ZU-fBl_ibtQPIhxbiAYgcqFcQYSosAMF6j9cyxRVAotOxYgkHJoqioRrd4LSKz2QCfkb1rvRiKf_Y_sXnK3JemI-rFk-Eb26YGnWTMyJjyA3IYb5u53rY8EWrYgJFRFgcGJSgktVwDQ-wgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:29 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=08c26929-056e-4f5c-8996-b1b4c8f65ef7&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', + '3144b304-c4ce-4f00-bf92-0eb73a113c00', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Aj4zE6Yr1ApFtYAwCmCKejgWPr5BAQAAADJEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:29 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/applications/myapplicationxxx', {"properties":{"allowUpdates":false}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147edf52affe8d1475f14d3ba6aaaf376fc246ba7f3bb13fc7b3c9d56eb65dbdccd56abb298666d512d9b8f461f15337ae36eb39e34d3ba58f1a7771fee9d3fbc3f3b38dfbe37fdf4c1f6feeedefef6c3dde983ed83e9f9ce83e96c72beb7bf7bb7ce9b6a5d4ff3cfeb6abd6aee2eae7fba69f3a6bdbbaaabcb6296d7cdddcd782cae33f9f5ddbb770152f8c6fd49df1296cb6c819145bec9dbec82bef9eedddff7a39d77074f1f1e3fd97bb2bff3e4fecebd7bcf7edf8fa801e1b3caebb6c89b8f1efde28fb2b2acaebe5acd32c2f5a347e759d9e4bfe4","97fc3f16c438683a010000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:30 GMT', + 'ETag', + 'W/"0x8D9AB2B40B5033F"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1194', + 'x-ms-request-id', + '94d62c69-a5ab-47e4-a2e9-353b3e2f400f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'c144ff68-b3e3-4600-9743-8a2409168ec3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070730Z:c144ff68-b3e3-4600-9743-8a2409168ec3', + 'Date', + 'Fri, 19 Nov 2021 07:07:29 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_delete_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_delete_test.js new file mode 100644 index 000000000000..d45513b200aa --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_delete_test.js @@ -0,0 +1,177 @@ +let nock = require('nock'); + +module.exports.hash = "3eb19ef6cf63ec39fce3fa747f4f9f5b"; + +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', + '2b7f48af-7a4b-4e1d-9b8a-c9d3d51f6500', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Au3QA0wsQYNOhajs5pD_R-I; expires=Sun, 19-Dec-2021 07:08:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRtcRj_OTkDO-h_WQVkoF6GdVxA8r76QL5dbajAvgY5bQxETHomV05nBNpbOGbN0CXTRFy5Xo9kkw4gy0a-dfx6P8UHKDSiclpSgkboXLwnwpHHblEj_Kq145Hi-E7o8bp-FiVEtn8dkKap6m6aKAGjPqngnlbSJI6A6ChFzA-6UgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:08: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', + '4bbbbf0d-6bf6-458d-b125-20bd4fa53500', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AnrWNSD6cG5NsQm-94dxN3M; expires=Sun, 19-Dec-2021 07:08:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrVOmydHwKumI-rEWMrly6d_9VL2sxqND2UCSXcTdcdCF7bGmrE_GXD1alBSpuF3YW6NNOyE1SHZioqPCeC2WxzUi_IJ7YXTpiafmo194iD8RUuTjGSUFnFHPi41GBWe8dYeBdJu7gGelRSwBMjRUNxX9Is0_XKnZMI_n_cyUKE2QgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:08: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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=72ed726d-95bc-447c-bbb1-87412725164a&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', + 'a6af092e-d9ef-4345-8611-2f0f3e864400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Am9JWyyYZOhGvw8ApONs4-UWPr5BAQAAAIFEKdkOAAAA; expires=Sun, 19-Dec-2021 07:08:50 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:08:50 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/applications/myapplicationxxx') + .query(true) + .reply(200, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'x-ms-request-id', + 'bf1d6714-fa45-4848-af8f-cb96de1661da', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-deletes', + '14997', + 'x-ms-correlation-request-id', + '5d66acde-c0a4-4024-ad5e-930baefc9b6c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070851Z:5d66acde-c0a4-4024-ad5e-930baefc9b6c', + 'Date', + 'Fri, 19 Nov 2021 07:08:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/applications') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bdefff","92ff0742ea40440c000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11779', + 'x-ms-request-id', + 'f8815540-9c81-41c0-969f-de5cbea2065c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'e156e473-71d1-4ee8-9d3a-18aa004fa729', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070851Z:e156e473-71d1-4ee8-9d3a-18aa004fa729', + 'Date', + 'Fri, 19 Nov 2021 07:08:51 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_get_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_get_test.js new file mode 100644 index 000000000000..dbc262971704 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_get_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "48f192586084b13ff7683d6225834ab8"; + +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', + '9c336831-c143-4a99-9043-6bef0c956f00', + 'x-ms-ests-server', + '2.1.12231.7 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AmtSGl6FU9dMoq9Z6H693ck; expires=Sun, 19-Dec-2021 07:07:30 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrttIqN5BciRHkS9FfZFqNmmNKykI5tX9ORs-A92VKbxRKu2qRTtYy8vQ1S1PwkoJh3hrb7ZgfVbKZg99ZS4SlkQDHCMRA2rJ13etbamp5iELM4ujdrf5RZS6Nd_kJV8SgOkPCFdmAtUmrR-vJKGZv66U0MdYBrLAy1ACPDpxqV84gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:30 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'f4ed96f2-9537-472a-b9ab-348fb94f4500', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Atqwiynt6udAr-lRQODGEWk; expires=Sun, 19-Dec-2021 07:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEPHQpdqgJHWlRnDVC86-8N0NJCZlRMxRG4pbZ-9HhlSrmmdo2sTiJrkh_u2h8FhWwYWL73CuomHNVMfc-fyNNwyMVSF8G1iahvy6yFoPfYPBv61looNnM-RAHaa7fXoJdEieWOENiELgHB57Thdd7ZyOHFjKqk59zA_nehSfhzMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:30 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=218f236f-7b45-4168-b860-b504f8d14db5&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', + '906e4ea3-a767-46f3-ad6e-942a12293400', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AtYCnaFRqXNGsWwesY8Fl2IWPr5BAQAAADJEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:30 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/applications/myapplicationxxx') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147edf52affe8d1475f14d3ba6aaaf376fc246ba7f3bb13fc7b3c9d56eb65dbdccd56abb298666d512d9b8f461f15337ae36eb39e34d3ba58f1a7771fee9d3fbc3f3b38dfbe37fdf4c1f6feeedefef6c3dde983ed83e9f9ce83e96c72beb7bf7bb7ce9b6a5d4ff3cfeb6abd6aee2eae7fba69f3a6bdbbaaabcb6296d7cdddcd782cae33f9f5ddbb770152f8c6fd49df1296cb6c819145bec9dbec82bef9eedddff7a39d77074f1f1e3fd97bb2bff3e4fecebd7bcf7edf8fa801e1b3caebb6c89b8f1efde28fb2b2acaebe5acd32c2f5a347e759d9e4bfe4","97fc3f16c438683a010000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:30 GMT', + 'ETag', + 'W/"0x8D9AB2B40B5033F"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11983', + 'x-ms-request-id', + '5e39f8fc-8306-42c5-9500-ef3fc9011be4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '66e3a4ac-d515-4736-a7b2-d48f0f9ae675', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070731Z:66e3a4ac-d515-4736-a7b2-d48f0f9ae675', + 'Date', + 'Fri, 19 Nov 2021 07:07:30 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_list_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_list_test.js new file mode 100644 index 000000000000..674fea420e4c --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_applicationoperations_list_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "b419197d7916f1e89fe74c0e395b54a0"; + +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', + 'cb773309-d84b-43fb-bbf5-1394dcc72800', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AmKcoXQw76dFts2OWo9VES0; expires=Sun, 19-Dec-2021 07:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr69Xl_GeFIekoM2PX_U7l2QoVjRgY1jzwfvq1OJM9VvCa2HQieyLm5RJqqlpRBsRSEPhNYGO4YYkSB2Mpc_G8UitDhf4mA7DszcqucrS0oDf-TMJSasr5Kf2nn6HANo8JJIlnIsWkVCUcZDjf74OG2LFL5R3t-hnE2tspdra5IB8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:30 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'cb0f8a18-9cf2-4235-8927-6ea94d553e00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AgGl6KF5vPtOm_Cwr7Qc-ds; expires=Sun, 19-Dec-2021 07:07:31 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBW86YsnZjucwPRma5-UoCYVGr974RZtcm4VSw6J_cVp80zT7Vhg7xPLEzf02LljopyuMk_Ys02FvYO1VfMsW3wII38061drncAQ_D_D9KhtPMTL4Rp3IqvTC0QGDC0SLu73Eni_HNxHOSwr12DgOBkcsRd4-OuA4_MsfqbTZy0ogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:30 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=c39c7008-60ef-4fe7-ac12-240d7e8c379f&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', + '4bbbbf0d-6bf6-458d-b125-20bd6b953500', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=ArkLV0nfCEZFrT06M8Xs-3EWPr5BAQAAADNEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:31 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/applications') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffc517bbda25f3efaa298d655539db7e327593b9ddf9de0dfe3e9b45a2fdbe66eb65a95c5346b8b6ad97c34faa898d11b779bf5a499d6c58a3fbdfb70effce1fdd9c1f9f6bde9a70fb6f777f7f6b71fee4e1f6c1f4ccf771e4c6793f3bdfdddbb75de54eb7a9a7f5e57eb55737771fdd34d9b37eddd555d5d16b3bc6eee6ec663719dc9afefdebd0b90c237ee4ffa96b05c660b8c2cf24dde6617f4cd77effebe1fedbc3b78faf0f8c9de93fd9d27f777eedd7bf6fb7e440d089f555eb745de7cf4e8177f94956575f5d56a9611ae1f3d3acfca26ff25bfe4fb","bfe4ff016595c49546010000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11982', + 'x-ms-request-id', + '01d9fd89-3406-48a1-a538-517f8ab886c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '70d8dd13-1435-4df7-b2ca-4173bd11efc9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070732Z:70d8dd13-1435-4df7-b2ca-4173bd11efc9', + 'Date', + 'Fri, 19 Nov 2021 07:07:31 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_create_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_create_test.js new file mode 100644 index 000000000000..f525d6beb855 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_create_test.js @@ -0,0 +1,559 @@ +let nock = require('nock'); + +module.exports.hash = "99485d9ce6c4fa29518ff210a58e35b1"; + +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', + 'a81c5db7-88c5-428c-b371-e60731cad600', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Avmijh2iayVEm1aDdz6a83c; expires=Sun, 19-Dec-2021 07:07:09 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrnaM_k1FYP7wx0cuYsHnWApWh9mwpvtfF61j8x2fYgD3sMDYTk70NXkCo_Sn9ozCODfzXyp2QnyUL9yum3EcPPO1DTlxUL9Xbt9FKjXK60eh1igM12WibX4kZONdaTuOPMQCkB3TBMKqQGVIfw9HvnVQtgdl_l6DVN4dCXXUP7wwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:08 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'f2cd5188-710b-40eb-b71f-1e6124861900', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AkdDwuFMvktOg6WLc_CTlZ0; expires=Sun, 19-Dec-2021 07:07:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrE2T9lu2OhDYYt8hO4IvRgZfPLxvDz71AUpTI1wptKcBmIll3Cjjt4tlxinA_RSV-LylaNAV46S7vAFdT3vWP9VS7XegP-zBXCfQMz6nanj6B3OuQ3yuTOL14ijpw4Wsfly4GiIkFevXDKcsfymMYcq0QNXBriG7Rw8JdEiAki6EgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:09 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=cf47d16e-d55d-4b33-b655-9ea9bd563b9b&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', + 'b50fe2c2-7565-429c-b06f-0aac4df23f00', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AiNSH2g3sLpNghvyR4z-Y5MWPr5BAQAAAB1EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:10 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:09 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx', {"location":"eastus","properties":{"autoStorage":{"storageAccountId":"/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Storage/storageAccounts/mystorageaccountxxx"}}}) + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '96659cec-c1d8-41dd-8ddb-bd091c6c0a9c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-writes', + '1196', + 'x-ms-correlation-request-id', + '0ca11698-677b-4c85-ba1d-6278ba411279', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070720Z:0ca11698-677b-4c85-ba1d-6278ba411279', + 'Date', + 'Fri, 19 Nov 2021 07:07:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ac9ee686-ac4f-45be-aa7d-b6489da37a33', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11997', + 'x-ms-correlation-request-id', + '61918c10-243d-4d99-a100-df1f0e13e3c4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070720Z:61918c10-243d-4d99-a100-df1f0e13e3c4', + 'Date', + 'Fri, 19 Nov 2021 07:07:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '02805f37-c3b7-4ec0-8fd9-fc3fa019f78a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11996', + 'x-ms-correlation-request-id', + 'c926cef3-f2e3-41d3-b687-98250daff37c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070720Z:c926cef3-f2e3-41d3-b687-98250daff37c', + 'Date', + 'Fri, 19 Nov 2021 07:07:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e745360b-f0d9-48ee-be91-22536e01794e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11995', + 'x-ms-correlation-request-id', + '459d3191-7f74-4c71-8499-143f673d2a45', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070721Z:459d3191-7f74-4c71-8499-143f673d2a45', + 'Date', + 'Fri, 19 Nov 2021 07:07:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '60e203d3-71ef-4aae-b242-2c807623f090', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11994', + 'x-ms-correlation-request-id', + '79c3327f-765e-46b5-9ad9-09a2096711d4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070721Z:79c3327f-765e-46b5-9ad9-09a2096711d4', + 'Date', + 'Fri, 19 Nov 2021 07:07:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7b73dd5c-3dd4-47cb-a767-e075034f7996', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11993', + 'x-ms-correlation-request-id', + 'a88553a5-2af6-4c2e-8128-d7102ba9a249', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070721Z:a88553a5-2af6-4c2e-8128-d7102ba9a249', + 'Date', + 'Fri, 19 Nov 2021 07:07:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '57b481e2-4690-4d81-a7c4-50a98b00533b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11992', + 'x-ms-correlation-request-id', + '6a0c1d22-41d6-4026-99ca-c10f74f333a9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070722Z:6a0c1d22-41d6-4026-99ca-c10f74f333a9', + 'Date', + 'Fri, 19 Nov 2021 07:07:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2e0c8f12-57d7-49ee-8c83-992a473c8ea4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11991', + 'x-ms-correlation-request-id', + '5caf9bfb-2e2f-4ec8-8e59-c1c82c5905e2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070722Z:5caf9bfb-2e2f-4ec8-8e59-c1c82c5905e2', + 'Date', + 'Fri, 19 Nov 2021 07:07:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b6e0970a-a09f-47d2-a681-596b076d9e82', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11990', + 'x-ms-correlation-request-id', + '1d61ffe2-7f87-47d9-8a1e-42bf3a30941f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070722Z:1d61ffe2-7f87-47d9-8a1e-42bf3a30941f', + 'Date', + 'Fri, 19 Nov 2021 07:07:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '97877af1-726b-4b7f-b68a-19df854e9543', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11989', + 'x-ms-correlation-request-id', + '098d6b98-a0dd-470d-ae73-88839ce0956e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070723Z:098d6b98-a0dd-470d-ae73-88839ce0956e', + 'Date', + 'Fri, 19 Nov 2021 07:07:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6c26d509-e627-495a-b323-9791f9cb669c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11988', + 'x-ms-correlation-request-id', + 'cff99f2e-bf29-437a-a473-8b721a5b2bdb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070723Z:cff99f2e-bf29-437a-a473-8b721a5b2bdb', + 'Date', + 'Fri, 19 Nov 2021 07:07:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '300650fc-9039-495a-8ac2-21fdc79cd344', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11987', + 'x-ms-correlation-request-id', + '8d142da9-98c9-4e57-804b-d87fb613fcd2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070723Z:8d142da9-98c9-4e57-804b-d87fb613fcd2', + 'Date', + 'Fri, 19 Nov 2021 07:07:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/operationResults/96659cec-c1d8-41dd-8ddb-bd091c6c0a9c') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eea3d147cb6c9113269d4fdbeb153edd08899a95d53403ead434cf9a768dcf088f555eb745de7cf4e8177fa4504f97b355552c5b6ae8f73496b7c60c779cfd605de7e369b51028974543a08be5c5eb366b81cdebf5749ae7b37c46dfd3bf05f59dcf4eaa3aff8975d5661f3dbabfb313fbe2655effe417cfb245515e7ff4e87bbfd88cb869b3e52cab67c7977bfae5e8a3a9798781fd9251aff1d378e3bdfbf1c6f7628de3904fdfa7f1d3d7ef85c7ebf7817dfa5ead9f0d60b21b6dfde224d6766f3fd6f4276fddf4e9d3cbfd58e3380e4f891cefd1fcf4bd809fbe1ff0e39ddffff841ac79b4f1c1ef7fbcbb7bdbd64f6fdbf0f39b1a4eb2a6981edfd4ca807b76db862f7ef2655d2daa5b373f79afe6dfbe75c3f702fbc5ebdbb67c7aeb96cf6eddf2f35bb77cfe1e2de3021c6bfbe2e47d1adf9e02801bd539b1c6df7e726bb8df3eb975d3173ff95e28d4cded09f1f438ae12e26d07f447acf1e97b003e7d1fc05fbcc7349f9edd9e6e20f28d4890b5e7c6e98b13c2f9deefff663fbde91503fff73e3d1bd2bf7e73d703939bb4eaceceadfb784abc7a6be27cfbc97b10e7e5ad99f5d9effdc5d39f1c68fdfd1b5ca0d3e57945de23799f6dbdcee1c25dbdac8baa2eda6bdb9c8d3df9605555eadf44a111f9726d71997fa79a1c2f67f4efebe93c9fad4bf3ca3d6eb26eabd76d55671784ef2f2684f957f518cfa8d39f7597577bbf1b768d97f413e77d12e9caac697faffcfaf5f5724ab8ededeced6eefd2ff1ebed979f088feb7b733deddbfb7fb60f7a7a82d8d6d9e2f5b909650ffa29ad11089971828c1683efa2542b2e3d2b8c5da867de7d7797d594c7382b35a4fca62fa226fafaafa2de19737e4297f74bacc26254dcbe8a37c39adaf993c20e15bc28e074f6ddc2819243acca8b3ab7c76dcc38d607eefa3d7f3acce67841c813d3e7e4affbec99ab761e337d5db7cf9d1f7091691923e6dc94bfec5260078512df38f7ec9","2ff97f00fb9db93eaf0c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:23 GMT', + 'ETag', + '"0x8D9AB2B3CA27C97"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11986', + 'x-ms-request-id', + '720a201d-0fed-4dd3-88f0-9d3769cd989e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'a7630e0b-3bd2-48b5-8950-c6ca4fa6f1ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070723Z:a7630e0b-3bd2-48b5-8950-c6ca4fa6f1ce', + 'Date', + 'Fri, 19 Nov 2021 07:07:23 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_delete_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_delete_test.js new file mode 100644 index 000000000000..9164bcf2dc87 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_delete_test.js @@ -0,0 +1,37543 @@ +let nock = require('nock'); + +module.exports.hash = "c0605a5f5f0bb0b1207b8a70f2f8290e"; + +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', + 'a7062157-7dc4-4742-90dc-bd00dfaa1300', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AhDRkbT_t3JKp1mepgonrVw; expires=Sun, 19-Dec-2021 07:08:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevryGdgEuyAtN2dftPynZXO57oF4YizbAkaRBytgD3h17eWxxakUFShwoA2UPUOEG3XYUtWKF8GAPywtrO5XHSIxHKEk17EdtA_E1DXty78RtDcxG91G-oj4DYBvUVnGZagskZbz28dYcFRBeRTU-UKrUEiJ-SVqWk4RO5kJyI6sYggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:08:52 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', + 'a6af092e-d9ef-4345-8611-2f0f99864400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AvEIH-04SqZJhwsGji3SCXg; expires=Sun, 19-Dec-2021 07:08:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrw_2OAA-Z9kF8W3lsb-bjqRt98XC0XCkuq2NlYRLN5V_trIDOTtNTLlnSLDMwyl-uY6EHrg8BsHxba_3IA6I9lN3x-erHYo1ZJAVKb_cQ2CJAmca2AEutA8yxue6s9DoXoi99xrn8yzms1NewduvNzBIY8I6xrQsHp_cHsMi6DeUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:08:52 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4646891b-14af-4483-bcbd-d15de6364528&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', + 'b7b271c6-fddd-4f57-a418-98cb76343700', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AlvVxXUkGMdPtARWIjKzV4oWPr5BAQAAAINEKdkOAAAA; expires=Sun, 19-Dec-2021 07:08:52 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:08:52 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1751e2ee-22c0-4472-a8ee-e5d756fc1a70', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-deletes', + '14996', + 'x-ms-correlation-request-id', + 'b6f8154b-8b8f-44e2-9d47-1c6429935404', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070853Z:b6f8154b-8b8f-44e2-9d47-1c6429935404', + 'Date', + 'Fri, 19 Nov 2021 07:08:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ec5fe20b-0e0b-4827-bab3-65b663d981eb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11778', + 'x-ms-correlation-request-id', + 'b5ba3685-bc84-486d-babe-2dac3de98325', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070853Z:b5ba3685-bc84-486d-babe-2dac3de98325', + 'Date', + 'Fri, 19 Nov 2021 07:08:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b76e49dd-5af9-43e7-b67c-dfbd85159db2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11777', + 'x-ms-correlation-request-id', + '83827f83-1965-407d-9c78-964a5fd4871e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070853Z:83827f83-1965-407d-9c78-964a5fd4871e', + 'Date', + 'Fri, 19 Nov 2021 07:08:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e1c862ed-ccf6-4ca1-8f68-8d24ddbf8708', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11776', + 'x-ms-correlation-request-id', + '2e6dcd26-85b4-4761-adaf-51f406ffbcc9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070854Z:2e6dcd26-85b4-4761-adaf-51f406ffbcc9', + 'Date', + 'Fri, 19 Nov 2021 07:08:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '778826ad-ae46-41ec-a65b-447a901ac75a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11775', + 'x-ms-correlation-request-id', + '5dc51807-2ac0-43b7-8a42-5e1c471deb09', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070854Z:5dc51807-2ac0-43b7-8a42-5e1c471deb09', + 'Date', + 'Fri, 19 Nov 2021 07:08:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '73703655-0923-4ea4-9d27-b73f3a0f869a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11774', + 'x-ms-correlation-request-id', + '4ddcf867-2bfd-4e93-9c92-62b9f5aedd5e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070854Z:4ddcf867-2bfd-4e93-9c92-62b9f5aedd5e', + 'Date', + 'Fri, 19 Nov 2021 07:08:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '83585287-3b14-4654-9870-45a7c752cf81', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11773', + 'x-ms-correlation-request-id', + '701be7c1-ee3c-4741-bffa-a000b8c161ba', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070854Z:701be7c1-ee3c-4741-bffa-a000b8c161ba', + 'Date', + 'Fri, 19 Nov 2021 07:08:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5662bc60-301a-419c-ab0b-a8500f480f9e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11772', + 'x-ms-correlation-request-id', + '530be195-826e-47ad-ab7a-9349831309fa', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070855Z:530be195-826e-47ad-ab7a-9349831309fa', + 'Date', + 'Fri, 19 Nov 2021 07:08:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f8ab9883-10da-442b-975f-564a178cdf87', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11771', + 'x-ms-correlation-request-id', + '0b2a5571-e893-4e48-ac47-62eded353c57', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070855Z:0b2a5571-e893-4e48-ac47-62eded353c57', + 'Date', + 'Fri, 19 Nov 2021 07:08:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ab8a14d8-d371-427e-831c-331936bc0ad8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11770', + 'x-ms-correlation-request-id', + '11745920-94a3-456f-840a-929241e67fee', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070855Z:11745920-94a3-456f-840a-929241e67fee', + 'Date', + 'Fri, 19 Nov 2021 07:08:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f65aa7e3-55a3-42b9-bbe2-cecc770c8375', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11769', + 'x-ms-correlation-request-id', + '921e3090-ccc0-4f0e-8a89-fe3d992df028', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070856Z:921e3090-ccc0-4f0e-8a89-fe3d992df028', + 'Date', + 'Fri, 19 Nov 2021 07:08:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '323497e2-46a2-4f6b-a380-266aac4a3070', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11768', + 'x-ms-correlation-request-id', + '4f99f947-b8b7-4503-a3af-0960ec29e9ab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070856Z:4f99f947-b8b7-4503-a3af-0960ec29e9ab', + 'Date', + 'Fri, 19 Nov 2021 07:08:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8b50c28f-d302-4172-91e4-fa1fda814c63', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11767', + 'x-ms-correlation-request-id', + '8025ac7f-e1bb-40af-9b9d-66181838c131', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070856Z:8025ac7f-e1bb-40af-9b9d-66181838c131', + 'Date', + 'Fri, 19 Nov 2021 07:08:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '65a85bc4-d508-46f1-bf54-bf5682880ccc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11766', + 'x-ms-correlation-request-id', + 'b8f1ef27-3ab7-4d6d-8f9a-6f293d2bd773', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070856Z:b8f1ef27-3ab7-4d6d-8f9a-6f293d2bd773', + 'Date', + 'Fri, 19 Nov 2021 07:08:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '39a49df6-7749-47c3-8a7c-040ab833399f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11765', + 'x-ms-correlation-request-id', + 'e77e58f0-5f31-4e47-bcf9-a348f9669656', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070857Z:e77e58f0-5f31-4e47-bcf9-a348f9669656', + 'Date', + 'Fri, 19 Nov 2021 07:08:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6845f5bc-3654-499e-8436-5d0868914e20', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11764', + 'x-ms-correlation-request-id', + '2322255c-329d-4f2c-a8a5-3ffd588ca6e0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070857Z:2322255c-329d-4f2c-a8a5-3ffd588ca6e0', + 'Date', + 'Fri, 19 Nov 2021 07:08:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f7f51692-2ab7-4f88-aea5-9c870cfd8b40', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11763', + 'x-ms-correlation-request-id', + 'e67d4fbf-17c4-423a-9b9a-4a5e0cb08307', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070857Z:e67d4fbf-17c4-423a-9b9a-4a5e0cb08307', + 'Date', + 'Fri, 19 Nov 2021 07:08:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd812613b-063e-41d4-a4dd-cee809e2551c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11762', + 'x-ms-correlation-request-id', + '5653a0c2-d388-4028-9669-d94194334a5c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070858Z:5653a0c2-d388-4028-9669-d94194334a5c', + 'Date', + 'Fri, 19 Nov 2021 07:08:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fb434e6e-b639-47b5-962f-5c71df824ee2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11761', + 'x-ms-correlation-request-id', + '0ea541bc-39f7-47b5-b076-b1859982c5d1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070858Z:0ea541bc-39f7-47b5-b076-b1859982c5d1', + 'Date', + 'Fri, 19 Nov 2021 07:08:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '74f126da-7c82-4bd8-b11f-1dfb3d03522e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11760', + 'x-ms-correlation-request-id', + '1899c1e0-7d0f-489c-8a59-2badf8cc3cf2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070858Z:1899c1e0-7d0f-489c-8a59-2badf8cc3cf2', + 'Date', + 'Fri, 19 Nov 2021 07:08:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f6c6037a-a307-488b-8305-8a07e8e29c41', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11759', + 'x-ms-correlation-request-id', + '2ece6342-8764-42f7-888a-c7628de5f636', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070859Z:2ece6342-8764-42f7-888a-c7628de5f636', + 'Date', + 'Fri, 19 Nov 2021 07:08:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1f855786-8606-4bf7-b5cd-9aa023b44bd1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11758', + 'x-ms-correlation-request-id', + 'f31700a3-2cb7-4162-a6b1-55a5b0811683', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070859Z:f31700a3-2cb7-4162-a6b1-55a5b0811683', + 'Date', + 'Fri, 19 Nov 2021 07:08:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6432ab25-cbe5-4682-9aac-148034fff93c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11757', + 'x-ms-correlation-request-id', + 'e78d2a42-4de9-4f49-b185-da0435827a69', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070859Z:e78d2a42-4de9-4f49-b185-da0435827a69', + 'Date', + 'Fri, 19 Nov 2021 07:08:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '39add4a9-5625-45b1-b488-509ded5f1a6e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11756', + 'x-ms-correlation-request-id', + 'e5eff3ab-f489-43a7-8085-902ce8aaf509', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070859Z:e5eff3ab-f489-43a7-8085-902ce8aaf509', + 'Date', + 'Fri, 19 Nov 2021 07:08:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '16654fee-c371-454a-b70a-c17f377c8310', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11755', + 'x-ms-correlation-request-id', + 'af437c72-c5f7-4664-93f5-61dc95c5b91b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070900Z:af437c72-c5f7-4664-93f5-61dc95c5b91b', + 'Date', + 'Fri, 19 Nov 2021 07:08:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b95ef09b-88e1-4a2e-ae69-70bc2c47cd95', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11754', + 'x-ms-correlation-request-id', + '9b7e811c-db8c-4478-9268-1dc61f76cae5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070900Z:9b7e811c-db8c-4478-9268-1dc61f76cae5', + 'Date', + 'Fri, 19 Nov 2021 07:09:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '365a16ae-472a-4055-8666-10b0296cf9a1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11753', + 'x-ms-correlation-request-id', + 'c01b30e0-843a-4ee7-a3f2-ea93ce60b650', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070900Z:c01b30e0-843a-4ee7-a3f2-ea93ce60b650', + 'Date', + 'Fri, 19 Nov 2021 07:09:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '58751d9f-e760-4f4f-8ea2-996aab064dee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11752', + 'x-ms-correlation-request-id', + 'bd44bc90-7fb3-4bc0-a5cb-1a5eb3ed49b8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070901Z:bd44bc90-7fb3-4bc0-a5cb-1a5eb3ed49b8', + 'Date', + 'Fri, 19 Nov 2021 07:09:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '336045b0-9e5b-47ad-8abb-cdd6a5dabe4d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11751', + 'x-ms-correlation-request-id', + 'f50c7b5f-2075-4081-a188-9828f0e5a2a8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070901Z:f50c7b5f-2075-4081-a188-9828f0e5a2a8', + 'Date', + 'Fri, 19 Nov 2021 07:09:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f3250b63-152c-4264-8933-92753c1b1767', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11750', + 'x-ms-correlation-request-id', + 'ba282a01-f586-47cf-88ea-d30a23275819', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070901Z:ba282a01-f586-47cf-88ea-d30a23275819', + 'Date', + 'Fri, 19 Nov 2021 07:09:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '25a43f43-1a64-41c3-93f8-3aa1321639a7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11749', + 'x-ms-correlation-request-id', + '496ed011-1cad-490c-8f90-cec0b66086b8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070902Z:496ed011-1cad-490c-8f90-cec0b66086b8', + 'Date', + 'Fri, 19 Nov 2021 07:09:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7b5d09aa-b96e-4fee-ba9f-3baabbd26734', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11748', + 'x-ms-correlation-request-id', + '6c3fb169-1025-4c94-b026-dd9a31221496', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070902Z:6c3fb169-1025-4c94-b026-dd9a31221496', + 'Date', + 'Fri, 19 Nov 2021 07:09:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd8b6f15d-df05-4097-a9f8-23f147f42fe1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11747', + 'x-ms-correlation-request-id', + '0451a2df-3592-4973-84a6-fc3d83c9f050', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070902Z:0451a2df-3592-4973-84a6-fc3d83c9f050', + 'Date', + 'Fri, 19 Nov 2021 07:09:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3086fbaa-b7c5-4bca-ac76-8cb9f8b5d928', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11746', + 'x-ms-correlation-request-id', + '84d0df46-cc25-4487-884c-c5e661736ac9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070902Z:84d0df46-cc25-4487-884c-c5e661736ac9', + 'Date', + 'Fri, 19 Nov 2021 07:09:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '27e8aa65-2835-45e5-8933-bf793bcd1eba', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11745', + 'x-ms-correlation-request-id', + 'c66c9d88-a189-4332-8846-d4de7e1ca7f8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070903Z:c66c9d88-a189-4332-8846-d4de7e1ca7f8', + 'Date', + 'Fri, 19 Nov 2021 07:09:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e763396c-8993-473c-8dde-7b715fb04716', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11744', + 'x-ms-correlation-request-id', + '2fa5070d-03e6-4096-ab5f-a8e89a33e5d6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070903Z:2fa5070d-03e6-4096-ab5f-a8e89a33e5d6', + 'Date', + 'Fri, 19 Nov 2021 07:09:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e427e479-612a-4573-8ca3-26c468a7fff1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11743', + 'x-ms-correlation-request-id', + '5fa9cbf7-304d-4d9e-b5bc-e02edf525d29', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070903Z:5fa9cbf7-304d-4d9e-b5bc-e02edf525d29', + 'Date', + 'Fri, 19 Nov 2021 07:09:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e64fbdc9-e532-42ce-827d-ec1671c87d18', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11742', + 'x-ms-correlation-request-id', + '92618cd4-6c6a-4adc-9f4f-1403f869c9e0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070904Z:92618cd4-6c6a-4adc-9f4f-1403f869c9e0', + 'Date', + 'Fri, 19 Nov 2021 07:09:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd80c6d5b-b1c5-4ab4-b5f0-7115885474ac', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11741', + 'x-ms-correlation-request-id', + 'd019c552-317a-4f6c-8d6e-10d016f86480', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070904Z:d019c552-317a-4f6c-8d6e-10d016f86480', + 'Date', + 'Fri, 19 Nov 2021 07:09:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8424e281-8e90-4ab3-be41-19bceaf8e7af', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11740', + 'x-ms-correlation-request-id', + '6e0e5b93-8859-4d31-b2b0-0415373b8219', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070904Z:6e0e5b93-8859-4d31-b2b0-0415373b8219', + 'Date', + 'Fri, 19 Nov 2021 07:09:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3e2c09c8-a22c-4ab4-a678-76f9ce895d72', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11739', + 'x-ms-correlation-request-id', + 'c75625e5-93a3-4e7b-8dc2-29d633cb13d3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070905Z:c75625e5-93a3-4e7b-8dc2-29d633cb13d3', + 'Date', + 'Fri, 19 Nov 2021 07:09:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'af9fe275-9741-4230-9539-c26e654c1af9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11738', + 'x-ms-correlation-request-id', + 'abf2f3ab-adb7-4590-9f95-1157811faf1f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070905Z:abf2f3ab-adb7-4590-9f95-1157811faf1f', + 'Date', + 'Fri, 19 Nov 2021 07:09:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '546fc721-7885-4066-b8cd-1924589045e2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11737', + 'x-ms-correlation-request-id', + 'f32c1a1f-b343-48a4-9549-4a97972842f9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070905Z:f32c1a1f-b343-48a4-9549-4a97972842f9', + 'Date', + 'Fri, 19 Nov 2021 07:09:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e8ae9426-ba7b-41b6-af38-3f87c56ac224', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11736', + 'x-ms-correlation-request-id', + '6b589991-1068-44c1-92f3-4c4aff3f49f4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070906Z:6b589991-1068-44c1-92f3-4c4aff3f49f4', + 'Date', + 'Fri, 19 Nov 2021 07:09:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e2b975b3-c9a6-4b08-af9b-6fe87fad26eb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11735', + 'x-ms-correlation-request-id', + '5d2099dd-ce80-4505-bc21-ef6571b2cc73', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070906Z:5d2099dd-ce80-4505-bc21-ef6571b2cc73', + 'Date', + 'Fri, 19 Nov 2021 07:09:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '12a2a934-fd03-4e56-93ae-2cacb68d55e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11734', + 'x-ms-correlation-request-id', + '4a0e1519-2592-4a82-8439-07e9ba89aa12', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070906Z:4a0e1519-2592-4a82-8439-07e9ba89aa12', + 'Date', + 'Fri, 19 Nov 2021 07:09:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4a7570ba-c1de-4160-9265-ed7528e528d4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11733', + 'x-ms-correlation-request-id', + '146e41f6-0305-4d0b-abff-0efa78843f28', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070906Z:146e41f6-0305-4d0b-abff-0efa78843f28', + 'Date', + 'Fri, 19 Nov 2021 07:09:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '21a62394-d6a2-4699-b93e-9ec0fb4209c0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11732', + 'x-ms-correlation-request-id', + '3eec9122-b783-42e7-ab37-c31e7e6fc056', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070907Z:3eec9122-b783-42e7-ab37-c31e7e6fc056', + 'Date', + 'Fri, 19 Nov 2021 07:09:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a70f455b-487b-4f58-805e-16b73020d89c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11731', + 'x-ms-correlation-request-id', + 'f4674488-e419-4222-838e-e8942907c31f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070907Z:f4674488-e419-4222-838e-e8942907c31f', + 'Date', + 'Fri, 19 Nov 2021 07:09:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f86f6ebd-87e0-4163-a12f-9c7714fa8e81', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11730', + 'x-ms-correlation-request-id', + '13e2dabe-6ca3-4b3b-ad18-1f3fb19718e5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070907Z:13e2dabe-6ca3-4b3b-ad18-1f3fb19718e5', + 'Date', + 'Fri, 19 Nov 2021 07:09:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1b6c0f70-9582-4478-97cc-36d27da65fed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11729', + 'x-ms-correlation-request-id', + '2b364eb5-4924-4bc0-9008-5f4bdb11154c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070908Z:2b364eb5-4924-4bc0-9008-5f4bdb11154c', + 'Date', + 'Fri, 19 Nov 2021 07:09:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e4d01c16-0fe1-4f66-be8e-6bf70c60b38f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11728', + 'x-ms-correlation-request-id', + '63c7201a-153a-455d-86d0-3932b8fa9310', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070908Z:63c7201a-153a-455d-86d0-3932b8fa9310', + 'Date', + 'Fri, 19 Nov 2021 07:09:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '599d15af-fead-4bae-940e-d09aa608b3cd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11727', + 'x-ms-correlation-request-id', + '0f40acfc-26ea-4e75-9c7e-5ef4825956f0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070908Z:0f40acfc-26ea-4e75-9c7e-5ef4825956f0', + 'Date', + 'Fri, 19 Nov 2021 07:09:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e5874c2f-83b9-4ad2-9c09-e1fe1a4551e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11726', + 'x-ms-correlation-request-id', + 'e7c6c295-7062-4b19-89e4-a226f94963e2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070909Z:e7c6c295-7062-4b19-89e4-a226f94963e2', + 'Date', + 'Fri, 19 Nov 2021 07:09:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a9c36d78-89a6-412e-911a-6f659e979bcd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11725', + 'x-ms-correlation-request-id', + 'a97cad35-5f68-4dd9-9d3a-af78543764fe', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070909Z:a97cad35-5f68-4dd9-9d3a-af78543764fe', + 'Date', + 'Fri, 19 Nov 2021 07:09:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bc53152d-c015-4392-8db5-122bdb59b3df', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11724', + 'x-ms-correlation-request-id', + '589a1b81-d2d9-49f5-9b92-e1d8fa8625a3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070909Z:589a1b81-d2d9-49f5-9b92-e1d8fa8625a3', + 'Date', + 'Fri, 19 Nov 2021 07:09:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '61692f07-539d-4afe-817c-e9e8bd2ba418', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11723', + 'x-ms-correlation-request-id', + 'eecee30b-768c-4120-9a65-c6166047b4b1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070909Z:eecee30b-768c-4120-9a65-c6166047b4b1', + 'Date', + 'Fri, 19 Nov 2021 07:09:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '657a57fb-f69a-4884-9ec3-3aa6c6647add', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11722', + 'x-ms-correlation-request-id', + '99c17a25-a2fb-40fe-b0bd-d617dd4c0856', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070910Z:99c17a25-a2fb-40fe-b0bd-d617dd4c0856', + 'Date', + 'Fri, 19 Nov 2021 07:09:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '36ffbe99-c25d-4828-901f-b553cacd205e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11721', + 'x-ms-correlation-request-id', + '8082ad08-2560-4db1-808f-09c79675b08d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070910Z:8082ad08-2560-4db1-808f-09c79675b08d', + 'Date', + 'Fri, 19 Nov 2021 07:09:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5e9153f8-e2ca-44c3-abc6-d466334cf89f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11720', + 'x-ms-correlation-request-id', + '86c7af5f-a073-4157-86e9-ece49ab34212', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070910Z:86c7af5f-a073-4157-86e9-ece49ab34212', + 'Date', + 'Fri, 19 Nov 2021 07:09:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '683edf28-f57b-46eb-b99c-7988fabe3095', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11719', + 'x-ms-correlation-request-id', + '67d10b17-24c2-468a-a630-c3a9a150628c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070911Z:67d10b17-24c2-468a-a630-c3a9a150628c', + 'Date', + 'Fri, 19 Nov 2021 07:09:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'edfa794b-5ae3-4f18-bcf3-5e56a3100564', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11718', + 'x-ms-correlation-request-id', + '54172528-768d-4e19-9085-d3a3d84e8671', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070911Z:54172528-768d-4e19-9085-d3a3d84e8671', + 'Date', + 'Fri, 19 Nov 2021 07:09:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4ca409a2-0ea7-4cd4-b88e-43d4cd4bbabe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11717', + 'x-ms-correlation-request-id', + '011e5abf-f9a4-428f-9f18-68601745a990', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070911Z:011e5abf-f9a4-428f-9f18-68601745a990', + 'Date', + 'Fri, 19 Nov 2021 07:09:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cae373e2-1388-4683-965f-7c63ac555d10', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11716', + 'x-ms-correlation-request-id', + '5006cf1a-dc33-457b-97b4-d03a91db3ada', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070912Z:5006cf1a-dc33-457b-97b4-d03a91db3ada', + 'Date', + 'Fri, 19 Nov 2021 07:09:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '674588e3-ccee-4c69-81ff-58eaf31ccf94', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11715', + 'x-ms-correlation-request-id', + '0ede4a52-7992-49f8-a568-9f3bf5b52545', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070912Z:0ede4a52-7992-49f8-a568-9f3bf5b52545', + 'Date', + 'Fri, 19 Nov 2021 07:09:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bddd9619-c3b9-4a1c-a5c2-0d5728242036', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11714', + 'x-ms-correlation-request-id', + 'f1a08890-9860-49f0-a25a-2884ed285fa4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070912Z:f1a08890-9860-49f0-a25a-2884ed285fa4', + 'Date', + 'Fri, 19 Nov 2021 07:09:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8a26d032-4011-47ad-b61b-1717b41eb9c1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11713', + 'x-ms-correlation-request-id', + '7492c203-8426-4ebe-9bae-99cf6157e982', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070912Z:7492c203-8426-4ebe-9bae-99cf6157e982', + 'Date', + 'Fri, 19 Nov 2021 07:09:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2b5a36b0-5978-4b94-95c6-d1d0fd0fc228', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11712', + 'x-ms-correlation-request-id', + '17fade96-1973-49a8-b1a2-3727c5542106', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070913Z:17fade96-1973-49a8-b1a2-3727c5542106', + 'Date', + 'Fri, 19 Nov 2021 07:09:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7c6734b0-5d27-4793-9e4b-3db3fb9ba452', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11711', + 'x-ms-correlation-request-id', + 'c8458fdf-128f-4bd0-b14a-fea96d43a45d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070913Z:c8458fdf-128f-4bd0-b14a-fea96d43a45d', + 'Date', + 'Fri, 19 Nov 2021 07:09:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '737ac31f-fd3e-48f6-92cd-731f168effbe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11710', + 'x-ms-correlation-request-id', + '7a9f5ffc-78c0-4fb5-a450-01103b458fa9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070913Z:7a9f5ffc-78c0-4fb5-a450-01103b458fa9', + 'Date', + 'Fri, 19 Nov 2021 07:09:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0e12b0d7-e6c6-4f24-a50e-a475a862fd09', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11709', + 'x-ms-correlation-request-id', + '5bacf35b-208b-4091-a662-4c0a231c9540', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070914Z:5bacf35b-208b-4091-a662-4c0a231c9540', + 'Date', + 'Fri, 19 Nov 2021 07:09:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e936aff4-10c5-44c7-b0da-a6f1bc2f5e38', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11708', + 'x-ms-correlation-request-id', + 'c6f84ae5-1185-463a-9113-b003df3b4184', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070914Z:c6f84ae5-1185-463a-9113-b003df3b4184', + 'Date', + 'Fri, 19 Nov 2021 07:09:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2f5d6c4a-58a8-4635-8d3d-731c858fd35e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11707', + 'x-ms-correlation-request-id', + 'a2063d96-55be-4923-afa3-8dd843316bab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070914Z:a2063d96-55be-4923-afa3-8dd843316bab', + 'Date', + 'Fri, 19 Nov 2021 07:09:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '464f041c-48ac-439d-81bc-4545f0401910', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11706', + 'x-ms-correlation-request-id', + '1808e00d-7b94-4186-a4da-a46f6b68a1be', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070915Z:1808e00d-7b94-4186-a4da-a46f6b68a1be', + 'Date', + 'Fri, 19 Nov 2021 07:09:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '52ca13a0-fe1b-4c0f-ba34-723b4b8a8b61', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11705', + 'x-ms-correlation-request-id', + 'e8b769be-54ca-4e7e-90d3-1396bbe65b79', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070915Z:e8b769be-54ca-4e7e-90d3-1396bbe65b79', + 'Date', + 'Fri, 19 Nov 2021 07:09:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bb3635f5-711e-4ab7-84f3-bd6af5bd0f72', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11704', + 'x-ms-correlation-request-id', + 'b9375461-02e0-43ca-9071-119ace4dad18', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070915Z:b9375461-02e0-43ca-9071-119ace4dad18', + 'Date', + 'Fri, 19 Nov 2021 07:09:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '077d9e94-6f61-4bf9-bea7-15234eda7f7f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11703', + 'x-ms-correlation-request-id', + '22e8f05f-ed80-41ee-8a8a-19c870db665b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070915Z:22e8f05f-ed80-41ee-8a8a-19c870db665b', + 'Date', + 'Fri, 19 Nov 2021 07:09:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6fa05473-ad94-4e1f-851f-01193f0d8051', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11702', + 'x-ms-correlation-request-id', + 'd321cfb7-7a96-4873-8119-1d094b8c62d4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070916Z:d321cfb7-7a96-4873-8119-1d094b8c62d4', + 'Date', + 'Fri, 19 Nov 2021 07:09:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '466a77c2-6382-49e8-a18e-7145256304ee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11701', + 'x-ms-correlation-request-id', + '9a938ebc-609f-4058-9e4a-a4d2955b4eb8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070916Z:9a938ebc-609f-4058-9e4a-a4d2955b4eb8', + 'Date', + 'Fri, 19 Nov 2021 07:09:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b9fa9ef1-cb32-434a-8650-589f83bb2c2d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11700', + 'x-ms-correlation-request-id', + '62cb88e7-2666-4556-b2b7-93c9b2a8d1bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070916Z:62cb88e7-2666-4556-b2b7-93c9b2a8d1bc', + 'Date', + 'Fri, 19 Nov 2021 07:09:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2ff30169-ccfe-45e8-867e-faf43e400049', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11699', + 'x-ms-correlation-request-id', + '3357e008-52cd-4d5e-8feb-49ed656f6f59', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070917Z:3357e008-52cd-4d5e-8feb-49ed656f6f59', + 'Date', + 'Fri, 19 Nov 2021 07:09:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3b8db66-a3c9-4e33-958c-637e0aec548c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11698', + 'x-ms-correlation-request-id', + '59030065-c041-4069-9aba-1e08709ef990', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070917Z:59030065-c041-4069-9aba-1e08709ef990', + 'Date', + 'Fri, 19 Nov 2021 07:09:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3deef34-73e7-4a83-9335-be046846d4c7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11697', + 'x-ms-correlation-request-id', + 'f52b705b-1b98-494a-b469-40b3c12c2aea', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070917Z:f52b705b-1b98-494a-b469-40b3c12c2aea', + 'Date', + 'Fri, 19 Nov 2021 07:09:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ce2ae5e6-f53d-4704-830f-d680ea415d90', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11696', + 'x-ms-correlation-request-id', + '55438026-092f-43ad-bdfc-3671c2c7bb6a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070918Z:55438026-092f-43ad-bdfc-3671c2c7bb6a', + 'Date', + 'Fri, 19 Nov 2021 07:09:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4c79e9d0-e1ee-458f-bff3-30942f7d2a67', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11695', + 'x-ms-correlation-request-id', + '169aa1fb-b269-45d6-a9b5-0b97e33e041f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070918Z:169aa1fb-b269-45d6-a9b5-0b97e33e041f', + 'Date', + 'Fri, 19 Nov 2021 07:09:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '819121e2-3b3d-4cfa-bfb2-cb0e4b75201a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11694', + 'x-ms-correlation-request-id', + '41e3cedf-93e2-4751-8b43-54c9b48e886c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070918Z:41e3cedf-93e2-4751-8b43-54c9b48e886c', + 'Date', + 'Fri, 19 Nov 2021 07:09:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd6f8647f-a158-4df3-b983-8f72b249595d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11693', + 'x-ms-correlation-request-id', + '9b768a72-e1f6-45bb-886d-17be28d18b9a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070919Z:9b768a72-e1f6-45bb-886d-17be28d18b9a', + 'Date', + 'Fri, 19 Nov 2021 07:09:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e7db350f-4b56-4d8f-88f5-b0e71a9ebfa1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11692', + 'x-ms-correlation-request-id', + '3e95e0aa-672d-4d15-a358-1a51ff1ce800', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070919Z:3e95e0aa-672d-4d15-a358-1a51ff1ce800', + 'Date', + 'Fri, 19 Nov 2021 07:09:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '72e28688-b0f9-4efd-aefe-ed1b25cf0116', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11691', + 'x-ms-correlation-request-id', + 'a3a0fa80-a326-485f-a7af-d9289a10b2d8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070919Z:a3a0fa80-a326-485f-a7af-d9289a10b2d8', + 'Date', + 'Fri, 19 Nov 2021 07:09:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3b3d1fb4-58ef-43fe-8b58-45c4295d8a51', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11690', + 'x-ms-correlation-request-id', + '1c2d43bc-0e9f-4c09-b9bd-356cbeff77a0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070919Z:1c2d43bc-0e9f-4c09-b9bd-356cbeff77a0', + 'Date', + 'Fri, 19 Nov 2021 07:09:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dfc54213-a079-42df-9f26-3a41984c79b8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11689', + 'x-ms-correlation-request-id', + '68f3a70c-83e9-4bb4-831a-d7eadf0a3895', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070920Z:68f3a70c-83e9-4bb4-831a-d7eadf0a3895', + 'Date', + 'Fri, 19 Nov 2021 07:09:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0929d291-e7c8-4c06-a6a8-3ae11ad1d4dc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11688', + 'x-ms-correlation-request-id', + '7f3ee96f-a6ea-4754-9d0b-dcdd03222df8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070920Z:7f3ee96f-a6ea-4754-9d0b-dcdd03222df8', + 'Date', + 'Fri, 19 Nov 2021 07:09:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6438711a-5eaa-4654-bef7-dbd8cde90f39', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11687', + 'x-ms-correlation-request-id', + 'c8a4b994-a246-4dd8-9c7a-a1fdecdc2c72', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070920Z:c8a4b994-a246-4dd8-9c7a-a1fdecdc2c72', + 'Date', + 'Fri, 19 Nov 2021 07:09:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '63e0a7fb-d338-487a-b4c2-941e490d2fe4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11686', + 'x-ms-correlation-request-id', + '13427203-5d99-4ab3-84f4-8fc6ab86e238', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070921Z:13427203-5d99-4ab3-84f4-8fc6ab86e238', + 'Date', + 'Fri, 19 Nov 2021 07:09:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bcfb00b9-6872-4991-a5c3-cd70f2347bd7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11685', + 'x-ms-correlation-request-id', + '6793d159-4adf-4a44-bd85-ab66903262db', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070921Z:6793d159-4adf-4a44-bd85-ab66903262db', + 'Date', + 'Fri, 19 Nov 2021 07:09:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1019dd5a-af3f-411f-a4cf-f593717d3ed4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11684', + 'x-ms-correlation-request-id', + '31f36192-5cce-4137-b9e2-33f6c890fab3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070921Z:31f36192-5cce-4137-b9e2-33f6c890fab3', + 'Date', + 'Fri, 19 Nov 2021 07:09:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b927affa-32ba-4502-9275-17cfc46d2b9a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11683', + 'x-ms-correlation-request-id', + 'a59db57c-87fa-4d9d-8730-5e412cd7b6a5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070922Z:a59db57c-87fa-4d9d-8730-5e412cd7b6a5', + 'Date', + 'Fri, 19 Nov 2021 07:09:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '36d3ae6d-f685-4213-8420-7da8b06be5f6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11682', + 'x-ms-correlation-request-id', + '4f61fb69-c73c-4b30-aaaa-924705530af6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070922Z:4f61fb69-c73c-4b30-aaaa-924705530af6', + 'Date', + 'Fri, 19 Nov 2021 07:09:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f30dd1af-43a1-4af2-a9e1-ca57899108af', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11681', + 'x-ms-correlation-request-id', + 'c611f811-5ee9-4f77-8188-fd6afc49b284', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070922Z:c611f811-5ee9-4f77-8188-fd6afc49b284', + 'Date', + 'Fri, 19 Nov 2021 07:09:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '031074d7-502e-43a3-92eb-92731600cd3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11680', + 'x-ms-correlation-request-id', + 'c2db5400-f946-42cf-8a71-a9cc3d858730', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070922Z:c2db5400-f946-42cf-8a71-a9cc3d858730', + 'Date', + 'Fri, 19 Nov 2021 07:09:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '581cfcfc-7f1c-410a-a0fb-230028d03ffb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11679', + 'x-ms-correlation-request-id', + '7bffbb48-5e3d-4a69-89c2-ef501bf1a2ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070923Z:7bffbb48-5e3d-4a69-89c2-ef501bf1a2ce', + 'Date', + 'Fri, 19 Nov 2021 07:09:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '935237ab-6ef5-4bc8-a616-76d0ff89532f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11678', + 'x-ms-correlation-request-id', + '4fae2976-7864-4433-8733-134be996270b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070923Z:4fae2976-7864-4433-8733-134be996270b', + 'Date', + 'Fri, 19 Nov 2021 07:09:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2956983c-56a3-4235-9bd0-ae151d646ac6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11677', + 'x-ms-correlation-request-id', + 'df6a4013-09b9-46b4-9b70-8600f13ccf5a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070923Z:df6a4013-09b9-46b4-9b70-8600f13ccf5a', + 'Date', + 'Fri, 19 Nov 2021 07:09:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b579b41d-6319-46e9-88e6-401a65a3a751', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11676', + 'x-ms-correlation-request-id', + 'ed405c74-f5fc-4008-974f-0a79b11df74d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070924Z:ed405c74-f5fc-4008-974f-0a79b11df74d', + 'Date', + 'Fri, 19 Nov 2021 07:09:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2fdb9341-4fd8-4081-b4a9-1694a61c5dd0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11675', + 'x-ms-correlation-request-id', + 'e413a83b-02f8-4d5d-8c32-6d842108039c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070924Z:e413a83b-02f8-4d5d-8c32-6d842108039c', + 'Date', + 'Fri, 19 Nov 2021 07:09:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '52356f81-d8b2-4b0b-ad14-55ec2ee3d2fd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11674', + 'x-ms-correlation-request-id', + 'd6dd74cb-19a8-4ac1-9503-758d8029bdbe', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070924Z:d6dd74cb-19a8-4ac1-9503-758d8029bdbe', + 'Date', + 'Fri, 19 Nov 2021 07:09:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '92afde14-3dde-4f40-809e-c501e1fcefd0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11673', + 'x-ms-correlation-request-id', + 'f4bdd988-f2c3-4b08-a362-50340a414943', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070925Z:f4bdd988-f2c3-4b08-a362-50340a414943', + 'Date', + 'Fri, 19 Nov 2021 07:09:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9ae58b15-9f32-444c-8761-c38d674c843c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11672', + 'x-ms-correlation-request-id', + '6eb38301-6862-4b05-885d-191ffdcc9ddb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070925Z:6eb38301-6862-4b05-885d-191ffdcc9ddb', + 'Date', + 'Fri, 19 Nov 2021 07:09:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f1a698ce-2def-4ae6-90e8-e8c6bac9572c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11671', + 'x-ms-correlation-request-id', + '5e797137-5b8f-4406-89f1-f5eb23a3a7cd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070925Z:5e797137-5b8f-4406-89f1-f5eb23a3a7cd', + 'Date', + 'Fri, 19 Nov 2021 07:09:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b9f62982-a5df-4b82-b411-729c7d7e66a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11670', + 'x-ms-correlation-request-id', + '04378316-ee29-457d-b079-f3058597b643', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070926Z:04378316-ee29-457d-b079-f3058597b643', + 'Date', + 'Fri, 19 Nov 2021 07:09:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '465c1fc0-2a52-41c3-bf0e-6baf321c5ad6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11669', + 'x-ms-correlation-request-id', + 'b679dfca-ec6e-4a03-a957-f042bd70f624', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070926Z:b679dfca-ec6e-4a03-a957-f042bd70f624', + 'Date', + 'Fri, 19 Nov 2021 07:09:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd5ecfd16-748a-4770-a98b-c9c14c4c66af', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11668', + 'x-ms-correlation-request-id', + '35895d44-687f-425a-ad22-b4b80be61c60', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070926Z:35895d44-687f-425a-ad22-b4b80be61c60', + 'Date', + 'Fri, 19 Nov 2021 07:09:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '465db629-b4f2-4e88-8b7d-ed2f2a92c40f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11667', + 'x-ms-correlation-request-id', + '93230baf-748a-404e-8646-5dc03c934e1e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070927Z:93230baf-748a-404e-8646-5dc03c934e1e', + 'Date', + 'Fri, 19 Nov 2021 07:09:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8fa7ebf9-8f05-4241-81fb-b539a4e33318', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11666', + 'x-ms-correlation-request-id', + '127c436e-0b7e-41b5-a4dc-d9cd11993a7c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070927Z:127c436e-0b7e-41b5-a4dc-d9cd11993a7c', + 'Date', + 'Fri, 19 Nov 2021 07:09:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7b00090d-0787-40b0-b404-7930c1016639', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11665', + 'x-ms-correlation-request-id', + '713263a4-4a7e-4dba-8f1b-8d222a486f14', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070927Z:713263a4-4a7e-4dba-8f1b-8d222a486f14', + 'Date', + 'Fri, 19 Nov 2021 07:09:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '601188e1-f12c-4cab-84ef-84ba0b76a93c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11664', + 'x-ms-correlation-request-id', + 'ae4d9f15-2f18-4e50-846a-e92dfebf1604', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070928Z:ae4d9f15-2f18-4e50-846a-e92dfebf1604', + 'Date', + 'Fri, 19 Nov 2021 07:09:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b0a8dabb-8986-4acd-a253-63343df001c5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11663', + 'x-ms-correlation-request-id', + 'fa0356e3-1356-4ac3-8455-b409b371dd7c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070928Z:fa0356e3-1356-4ac3-8455-b409b371dd7c', + 'Date', + 'Fri, 19 Nov 2021 07:09:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b2cd27bc-694b-44c9-9305-0fe1ed429409', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11662', + 'x-ms-correlation-request-id', + 'fd11a5d9-7c13-461b-9056-a5513b48de11', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070928Z:fd11a5d9-7c13-461b-9056-a5513b48de11', + 'Date', + 'Fri, 19 Nov 2021 07:09:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5bff6322-38c9-4072-8fb9-860b13bdb601', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11661', + 'x-ms-correlation-request-id', + 'ee86322e-2844-4b90-9b65-7487e1996804', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070929Z:ee86322e-2844-4b90-9b65-7487e1996804', + 'Date', + 'Fri, 19 Nov 2021 07:09:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'af1716c4-6610-4ace-baa0-4615360cea30', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11660', + 'x-ms-correlation-request-id', + 'b39a8c63-b89f-4359-845a-dd9a336b3e13', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070929Z:b39a8c63-b89f-4359-845a-dd9a336b3e13', + 'Date', + 'Fri, 19 Nov 2021 07:09:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '49a4c3f5-18f9-4b01-a1a6-3d255ae8e3d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11659', + 'x-ms-correlation-request-id', + 'cf9e4462-645e-415b-9463-748b57d08e66', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070929Z:cf9e4462-645e-415b-9463-748b57d08e66', + 'Date', + 'Fri, 19 Nov 2021 07:09:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '30c78428-53fa-4230-842a-876d296121ee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11658', + 'x-ms-correlation-request-id', + '84254583-e5db-4eb3-b39e-ebff7444616e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070929Z:84254583-e5db-4eb3-b39e-ebff7444616e', + 'Date', + 'Fri, 19 Nov 2021 07:09:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '162779bf-592e-4cfc-a0bb-00fb4b369020', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11657', + 'x-ms-correlation-request-id', + '08a92a5f-2b69-41d4-a6c7-2705591af7e9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070930Z:08a92a5f-2b69-41d4-a6c7-2705591af7e9', + 'Date', + 'Fri, 19 Nov 2021 07:09:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd6a26fa3-d6ac-4aa6-a585-8f3aafa80c86', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11656', + 'x-ms-correlation-request-id', + 'e93192d8-8fec-4cc9-a8c9-fdf3396f84e3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070930Z:e93192d8-8fec-4cc9-a8c9-fdf3396f84e3', + 'Date', + 'Fri, 19 Nov 2021 07:09:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c5d3ae56-eb7c-40ff-81a2-9b547be41bb3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11655', + 'x-ms-correlation-request-id', + '2e3a5107-b317-4729-ab34-97f286b0b157', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070930Z:2e3a5107-b317-4729-ab34-97f286b0b157', + 'Date', + 'Fri, 19 Nov 2021 07:09:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f2fffc80-2118-4946-b622-0aac1cb4a23e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11654', + 'x-ms-correlation-request-id', + '7209f965-fe44-40ce-a434-dfe383e29835', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070931Z:7209f965-fe44-40ce-a434-dfe383e29835', + 'Date', + 'Fri, 19 Nov 2021 07:09:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '85f01c17-77de-49d0-a42e-66b7c735c20a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11653', + 'x-ms-correlation-request-id', + 'cdb3075c-d4ed-42e3-aed1-9d9c99035f34', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070931Z:cdb3075c-d4ed-42e3-aed1-9d9c99035f34', + 'Date', + 'Fri, 19 Nov 2021 07:09:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '035336c2-0a53-4265-bd41-bc079486b419', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11652', + 'x-ms-correlation-request-id', + '1ab075c3-a25c-44e9-8bf9-5180905d486e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070931Z:1ab075c3-a25c-44e9-8bf9-5180905d486e', + 'Date', + 'Fri, 19 Nov 2021 07:09:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '58792df6-3893-405b-a6b7-de1644a753e8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11651', + 'x-ms-correlation-request-id', + '84185320-f8cd-43d2-89fd-a172c953892a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070932Z:84185320-f8cd-43d2-89fd-a172c953892a', + 'Date', + 'Fri, 19 Nov 2021 07:09:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '269f4c1b-75a8-4bdf-b382-cb17e66f0f31', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11650', + 'x-ms-correlation-request-id', + '730104a7-3a2d-4e68-ba09-643039e56c08', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070932Z:730104a7-3a2d-4e68-ba09-643039e56c08', + 'Date', + 'Fri, 19 Nov 2021 07:09:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5eb087a1-004c-4e1d-a70c-4b9a9f67e388', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11649', + 'x-ms-correlation-request-id', + '15e8aafb-714c-46fa-b79e-cb98468b9d91', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070932Z:15e8aafb-714c-46fa-b79e-cb98468b9d91', + 'Date', + 'Fri, 19 Nov 2021 07:09:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7c2de6e2-fbab-4f8e-97a7-957cbb2ea33a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11648', + 'x-ms-correlation-request-id', + 'adbe2dd0-7cbb-4857-9804-f49093905b35', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070932Z:adbe2dd0-7cbb-4857-9804-f49093905b35', + 'Date', + 'Fri, 19 Nov 2021 07:09:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '56a86841-0dd1-4729-9ab4-e0e825608870', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11647', + 'x-ms-correlation-request-id', + '62e4b1d2-55e8-472b-be8f-bcc4ef51d046', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070933Z:62e4b1d2-55e8-472b-be8f-bcc4ef51d046', + 'Date', + 'Fri, 19 Nov 2021 07:09:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a81a303b-b3f9-4651-b3ea-9b5bb12ab630', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11646', + 'x-ms-correlation-request-id', + 'b46423cb-f38a-4904-b628-2151d3f3f605', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070933Z:b46423cb-f38a-4904-b628-2151d3f3f605', + 'Date', + 'Fri, 19 Nov 2021 07:09:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4b525009-d5d1-4dab-81eb-f3a540f47b9a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11645', + 'x-ms-correlation-request-id', + '600c3dea-efa6-4ee8-b4e6-adafbd48d037', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070933Z:600c3dea-efa6-4ee8-b4e6-adafbd48d037', + 'Date', + 'Fri, 19 Nov 2021 07:09:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3cc6eb50-88e8-4baa-b537-4f8c2f028a29', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11644', + 'x-ms-correlation-request-id', + 'e454e218-5db4-4fd5-a668-2dbe4061f655', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070934Z:e454e218-5db4-4fd5-a668-2dbe4061f655', + 'Date', + 'Fri, 19 Nov 2021 07:09:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f41f5eeb-4ed9-40d8-9d32-0e02b5192927', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11643', + 'x-ms-correlation-request-id', + '9a5a1d39-d60b-4236-80a1-7d840d4441ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070934Z:9a5a1d39-d60b-4236-80a1-7d840d4441ca', + 'Date', + 'Fri, 19 Nov 2021 07:09:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '475a4176-e1a7-418b-913e-4805583d976d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11642', + 'x-ms-correlation-request-id', + '28344b9b-4e7f-43e5-81fb-b4488ff6e58d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070934Z:28344b9b-4e7f-43e5-81fb-b4488ff6e58d', + 'Date', + 'Fri, 19 Nov 2021 07:09:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd4f2efbd-a107-454e-823c-1d1e5225c25e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11641', + 'x-ms-correlation-request-id', + 'e00b9858-d8c1-425d-a291-ec56fe39f6b1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070935Z:e00b9858-d8c1-425d-a291-ec56fe39f6b1', + 'Date', + 'Fri, 19 Nov 2021 07:09:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aa16c97c-0485-47fe-8941-8d42b56c4838', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11640', + 'x-ms-correlation-request-id', + '8dd1eb21-cf4b-4c7b-a86a-c0310ea67d42', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070935Z:8dd1eb21-cf4b-4c7b-a86a-c0310ea67d42', + 'Date', + 'Fri, 19 Nov 2021 07:09:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0faf9576-2a26-4245-b77d-364a7ad542c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11639', + 'x-ms-correlation-request-id', + '78074ea0-e12e-498b-a500-96ecd1e5c994', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070935Z:78074ea0-e12e-498b-a500-96ecd1e5c994', + 'Date', + 'Fri, 19 Nov 2021 07:09:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4a4cded6-a225-4347-8531-9bfbdaa8dd7e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11638', + 'x-ms-correlation-request-id', + '5ed4bdaf-dad5-439c-bf95-15497f60f850', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070935Z:5ed4bdaf-dad5-439c-bf95-15497f60f850', + 'Date', + 'Fri, 19 Nov 2021 07:09:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eecfb0a7-5087-4506-9a57-34507a69ebcb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11637', + 'x-ms-correlation-request-id', + '5d0c9adc-fad0-4654-8201-469e14ef01cf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070936Z:5d0c9adc-fad0-4654-8201-469e14ef01cf', + 'Date', + 'Fri, 19 Nov 2021 07:09:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cc6afaa7-8229-4a40-8f43-bb7df93366c0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11636', + 'x-ms-correlation-request-id', + '7a0142c9-5fe4-439e-9e75-0b9c7ad5ef8b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070936Z:7a0142c9-5fe4-439e-9e75-0b9c7ad5ef8b', + 'Date', + 'Fri, 19 Nov 2021 07:09:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'da4a87dd-2ce6-4603-a18c-36f43b575d79', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11635', + 'x-ms-correlation-request-id', + 'a58c7666-9b82-41ca-ac3d-1f7cbf671159', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070936Z:a58c7666-9b82-41ca-ac3d-1f7cbf671159', + 'Date', + 'Fri, 19 Nov 2021 07:09:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f6262393-101b-4a61-b44f-f8390a11b7d8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11634', + 'x-ms-correlation-request-id', + '0fce24e5-d618-456a-aa1e-d0ee002fcbaf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070937Z:0fce24e5-d618-456a-aa1e-d0ee002fcbaf', + 'Date', + 'Fri, 19 Nov 2021 07:09:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f700007d-d482-4996-8e89-22086f46d2e7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11633', + 'x-ms-correlation-request-id', + '769b0aa7-7043-42e9-b635-81f7c4fe38f4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070937Z:769b0aa7-7043-42e9-b635-81f7c4fe38f4', + 'Date', + 'Fri, 19 Nov 2021 07:09:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '79c42462-d53d-4b05-b746-40f487ed5ea8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11632', + 'x-ms-correlation-request-id', + '358e29db-e313-461a-b0e9-34d2cd38ba05', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070937Z:358e29db-e313-461a-b0e9-34d2cd38ba05', + 'Date', + 'Fri, 19 Nov 2021 07:09:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8d00a100-a5f7-4b81-b1af-229371978e5e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11631', + 'x-ms-correlation-request-id', + '35c81033-dc25-4751-8e6c-7410fe65ec2f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070938Z:35c81033-dc25-4751-8e6c-7410fe65ec2f', + 'Date', + 'Fri, 19 Nov 2021 07:09:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd8c5fdb7-2601-4baa-9f2b-c8282b234eb3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11630', + 'x-ms-correlation-request-id', + 'a28ecd90-0c38-4bba-910f-49442a30b218', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070938Z:a28ecd90-0c38-4bba-910f-49442a30b218', + 'Date', + 'Fri, 19 Nov 2021 07:09:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '96f210ea-a06a-4c39-b167-13bfd22381d6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11629', + 'x-ms-correlation-request-id', + 'd43ab592-0ada-42b4-a861-e618108683e1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070938Z:d43ab592-0ada-42b4-a861-e618108683e1', + 'Date', + 'Fri, 19 Nov 2021 07:09:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '650f5bd2-4ec9-43d2-b47f-24f082894371', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11628', + 'x-ms-correlation-request-id', + '812ec1ee-c5d6-41c7-842d-005e4ac580b1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070938Z:812ec1ee-c5d6-41c7-842d-005e4ac580b1', + 'Date', + 'Fri, 19 Nov 2021 07:09:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7ae9708d-df9c-4c91-939e-591de0aff3ae', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11627', + 'x-ms-correlation-request-id', + 'e2ba3303-c942-45f5-8b2c-d6b2a92b840c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070939Z:e2ba3303-c942-45f5-8b2c-d6b2a92b840c', + 'Date', + 'Fri, 19 Nov 2021 07:09:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0fb7a503-b059-4595-8a06-90c59b0d298b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11626', + 'x-ms-correlation-request-id', + '849c1f6d-0bca-49ed-95d8-a457e5400948', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070939Z:849c1f6d-0bca-49ed-95d8-a457e5400948', + 'Date', + 'Fri, 19 Nov 2021 07:09:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5e9724a1-9def-4d3b-bdaf-83d63b9f7ec3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11625', + 'x-ms-correlation-request-id', + '7309a427-566b-4022-837f-96775e0d6dd1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070939Z:7309a427-566b-4022-837f-96775e0d6dd1', + 'Date', + 'Fri, 19 Nov 2021 07:09:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1a96f570-7cc5-4ff8-8d21-ced8186c2f81', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11624', + 'x-ms-correlation-request-id', + '290b5952-2552-4543-a138-79dc9998aa05', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070940Z:290b5952-2552-4543-a138-79dc9998aa05', + 'Date', + 'Fri, 19 Nov 2021 07:09:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3f31db7d-868c-4ba2-8db1-eafd908639d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11623', + 'x-ms-correlation-request-id', + '100b208a-0ec6-43c9-b14f-05d222edaf90', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070940Z:100b208a-0ec6-43c9-b14f-05d222edaf90', + 'Date', + 'Fri, 19 Nov 2021 07:09:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '16d89b16-ea18-4eed-be58-461e996e1adc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11622', + 'x-ms-correlation-request-id', + '19178340-74f1-481e-8ae8-45d7ad06ca2b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070940Z:19178340-74f1-481e-8ae8-45d7ad06ca2b', + 'Date', + 'Fri, 19 Nov 2021 07:09:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '93b8305b-3935-4db3-8c7a-a64858d6d01a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11621', + 'x-ms-correlation-request-id', + '161324d3-7b90-496b-8c13-433810cf6a01', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070941Z:161324d3-7b90-496b-8c13-433810cf6a01', + 'Date', + 'Fri, 19 Nov 2021 07:09:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bb666ecb-1104-40ed-add3-efb2ec1aa055', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11620', + 'x-ms-correlation-request-id', + '4cc9c465-0523-456e-b64c-d8402935d942', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070941Z:4cc9c465-0523-456e-b64c-d8402935d942', + 'Date', + 'Fri, 19 Nov 2021 07:09:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '83244223-5ac1-4cd4-8510-f96fa232cbce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11619', + 'x-ms-correlation-request-id', + '968c41a2-f9ea-46ea-9fba-f48b1b47ec95', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070941Z:968c41a2-f9ea-46ea-9fba-f48b1b47ec95', + 'Date', + 'Fri, 19 Nov 2021 07:09:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2e3308dc-42c7-49a4-af68-6a95725f4843', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11618', + 'x-ms-correlation-request-id', + 'acec2313-ffb3-4a3d-abe2-2694e1aa0066', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070941Z:acec2313-ffb3-4a3d-abe2-2694e1aa0066', + 'Date', + 'Fri, 19 Nov 2021 07:09:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '63f1cb8e-031e-4d2c-aeb8-56a27503a036', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11617', + 'x-ms-correlation-request-id', + '811356b6-09ae-4da1-80b9-17d97f817205', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070942Z:811356b6-09ae-4da1-80b9-17d97f817205', + 'Date', + 'Fri, 19 Nov 2021 07:09:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '26af8cdd-ca45-4a28-9441-58a3c0f49856', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11616', + 'x-ms-correlation-request-id', + '7fba8493-b068-48ee-952c-001ebec8d713', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070942Z:7fba8493-b068-48ee-952c-001ebec8d713', + 'Date', + 'Fri, 19 Nov 2021 07:09:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aad8005a-d698-422b-8b1a-b52d1c098946', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11615', + 'x-ms-correlation-request-id', + '349af6ee-b4d8-413c-b0b2-37afe7d849e7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070942Z:349af6ee-b4d8-413c-b0b2-37afe7d849e7', + 'Date', + 'Fri, 19 Nov 2021 07:09:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4bf4f995-c957-41ca-85bb-ecadd3ac5886', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11614', + 'x-ms-correlation-request-id', + '3bb5053b-7e5e-44c2-beaa-446e9a713358', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070943Z:3bb5053b-7e5e-44c2-beaa-446e9a713358', + 'Date', + 'Fri, 19 Nov 2021 07:09:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'acd09992-bf14-4b21-9283-bed42c128401', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11613', + 'x-ms-correlation-request-id', + '185678c1-9a88-45c8-a805-22f5b6fb13ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070943Z:185678c1-9a88-45c8-a805-22f5b6fb13ce', + 'Date', + 'Fri, 19 Nov 2021 07:09:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a7ca5100-efbe-4a80-84f0-a37f4d1d9301', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11612', + 'x-ms-correlation-request-id', + '47e70260-8052-48a9-bde0-8735a9cd7640', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070943Z:47e70260-8052-48a9-bde0-8735a9cd7640', + 'Date', + 'Fri, 19 Nov 2021 07:09:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aaecf38d-4f16-4115-a816-926b512d859d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11611', + 'x-ms-correlation-request-id', + '14f3fd60-8df4-41ca-8158-ffb32b611cbd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070944Z:14f3fd60-8df4-41ca-8158-ffb32b611cbd', + 'Date', + 'Fri, 19 Nov 2021 07:09:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd5891609-6650-4a62-8f30-d47e6a4356aa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11610', + 'x-ms-correlation-request-id', + '4b6b6a12-e041-461e-a9ac-ec9884252d60', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070944Z:4b6b6a12-e041-461e-a9ac-ec9884252d60', + 'Date', + 'Fri, 19 Nov 2021 07:09:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f2e278e3-f328-4e61-a667-e19aecd1d64f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11609', + 'x-ms-correlation-request-id', + 'e309fcf6-7abf-42da-aba1-9596241e6c94', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070944Z:e309fcf6-7abf-42da-aba1-9596241e6c94', + 'Date', + 'Fri, 19 Nov 2021 07:09:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '13f4d3b9-18be-44c7-93cf-e63385dc3f43', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11608', + 'x-ms-correlation-request-id', + '830b0f29-1d29-4474-a8d9-f3d6bbf7ac52', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070944Z:830b0f29-1d29-4474-a8d9-f3d6bbf7ac52', + 'Date', + 'Fri, 19 Nov 2021 07:09:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd4bf278f-9b32-4843-83a9-73d4f1473caf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11607', + 'x-ms-correlation-request-id', + '392495d5-8805-4756-9f6a-75ad379c629e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070945Z:392495d5-8805-4756-9f6a-75ad379c629e', + 'Date', + 'Fri, 19 Nov 2021 07:09:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c2a3a441-2620-476f-9043-bbc52b162d6e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11606', + 'x-ms-correlation-request-id', + '369fecb5-b1c8-44e8-a29b-a9bb5e4acbce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070945Z:369fecb5-b1c8-44e8-a29b-a9bb5e4acbce', + 'Date', + 'Fri, 19 Nov 2021 07:09:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '369d01cd-e631-4544-818c-693dff1a9753', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11605', + 'x-ms-correlation-request-id', + 'fbe2e81e-6b1d-47a1-834c-afa22680dc43', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070945Z:fbe2e81e-6b1d-47a1-834c-afa22680dc43', + 'Date', + 'Fri, 19 Nov 2021 07:09:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e40603a5-7463-4765-8796-8b159907dc7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11604', + 'x-ms-correlation-request-id', + 'e15d9c5c-14e1-4671-a14f-e30d7f984c86', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070946Z:e15d9c5c-14e1-4671-a14f-e30d7f984c86', + 'Date', + 'Fri, 19 Nov 2021 07:09:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3e316883-24e5-455f-9cbf-3ef3c141887f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11603', + 'x-ms-correlation-request-id', + '481ad00e-ef74-45c4-b18d-66fd108b11a2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070946Z:481ad00e-ef74-45c4-b18d-66fd108b11a2', + 'Date', + 'Fri, 19 Nov 2021 07:09:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e67469c3-65d3-4e2e-8ee5-8496a76d619a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11602', + 'x-ms-correlation-request-id', + '2cf18366-fdb1-49a3-8301-3cc4855c2ff5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070946Z:2cf18366-fdb1-49a3-8301-3cc4855c2ff5', + 'Date', + 'Fri, 19 Nov 2021 07:09:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c886b99a-110b-4b1e-ba28-51d6a55dc194', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11601', + 'x-ms-correlation-request-id', + '5517b77e-ccd3-4f53-84f3-d425d1e4c7a4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070947Z:5517b77e-ccd3-4f53-84f3-d425d1e4c7a4', + 'Date', + 'Fri, 19 Nov 2021 07:09:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3e7a3117-e69c-4587-8ed7-9cb0abaed382', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11600', + 'x-ms-correlation-request-id', + '307d1658-68a4-4b81-8d1b-43e4ac796e08', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070947Z:307d1658-68a4-4b81-8d1b-43e4ac796e08', + 'Date', + 'Fri, 19 Nov 2021 07:09:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e3a82123-d572-480d-812d-d62d124a5838', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11599', + 'x-ms-correlation-request-id', + '9ec17e0d-9479-4807-bfd9-c3154d07e0ed', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070947Z:9ec17e0d-9479-4807-bfd9-c3154d07e0ed', + 'Date', + 'Fri, 19 Nov 2021 07:09:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cba05c45-ee0a-478c-ad9a-8ff6c06851f9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11598', + 'x-ms-correlation-request-id', + '613ff3da-6811-4a7c-938e-b4358bd28977', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070947Z:613ff3da-6811-4a7c-938e-b4358bd28977', + 'Date', + 'Fri, 19 Nov 2021 07:09:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4e83c1be-fb36-4e4e-9fd2-8e14cb6a9207', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11597', + 'x-ms-correlation-request-id', + '57b0b728-f5bb-4c75-bc41-14df5de6c7b8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070948Z:57b0b728-f5bb-4c75-bc41-14df5de6c7b8', + 'Date', + 'Fri, 19 Nov 2021 07:09:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6b870f77-4bb4-49a8-8669-d630dbb8b31c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11596', + 'x-ms-correlation-request-id', + '50db178c-5f3b-4ec0-bc5f-0e9cb7f8c12d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070948Z:50db178c-5f3b-4ec0-bc5f-0e9cb7f8c12d', + 'Date', + 'Fri, 19 Nov 2021 07:09:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '98f631b5-c9a4-4cba-9afa-fc0ceddfcb83', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11595', + 'x-ms-correlation-request-id', + '8a1dfa34-3483-406a-89f3-bddb3b2cc0a6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070948Z:8a1dfa34-3483-406a-89f3-bddb3b2cc0a6', + 'Date', + 'Fri, 19 Nov 2021 07:09:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7b957ba0-ea84-4cff-b69a-5bebf0427008', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11594', + 'x-ms-correlation-request-id', + '977947b3-2ebd-4f84-bd85-22055ff993a8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070949Z:977947b3-2ebd-4f84-bd85-22055ff993a8', + 'Date', + 'Fri, 19 Nov 2021 07:09:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e283f074-dd42-457f-b69a-876b519e90e7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11593', + 'x-ms-correlation-request-id', + 'eae16104-e093-4b8a-be0c-6dae9161c38c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070949Z:eae16104-e093-4b8a-be0c-6dae9161c38c', + 'Date', + 'Fri, 19 Nov 2021 07:09:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '58b5a198-e41f-4199-9a47-cc4a4a47428e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11592', + 'x-ms-correlation-request-id', + 'dd734027-4814-442d-852b-0c62d95b82e9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070949Z:dd734027-4814-442d-852b-0c62d95b82e9', + 'Date', + 'Fri, 19 Nov 2021 07:09:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '59a9c8ac-91fb-4de2-856a-7c3261daa6c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11591', + 'x-ms-correlation-request-id', + '5459f406-1359-43ed-95a2-839b02ea623e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070950Z:5459f406-1359-43ed-95a2-839b02ea623e', + 'Date', + 'Fri, 19 Nov 2021 07:09:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '27d7880d-c272-474b-acb7-7f7015a997ff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11590', + 'x-ms-correlation-request-id', + 'a7caf6bd-c6ed-4514-8fa2-9eebbf72463e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070950Z:a7caf6bd-c6ed-4514-8fa2-9eebbf72463e', + 'Date', + 'Fri, 19 Nov 2021 07:09:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2161b5c8-32a6-4a57-a9a7-397359266a6f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11589', + 'x-ms-correlation-request-id', + '68df6370-e556-49c7-b5e7-902925d9bd3f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070950Z:68df6370-e556-49c7-b5e7-902925d9bd3f', + 'Date', + 'Fri, 19 Nov 2021 07:09:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '47672286-f9ca-431b-816e-0f225bbe8664', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11588', + 'x-ms-correlation-request-id', + 'feb7f013-df3c-4d15-ac77-ba3cc715e4bf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070950Z:feb7f013-df3c-4d15-ac77-ba3cc715e4bf', + 'Date', + 'Fri, 19 Nov 2021 07:09:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '330e029e-b0fc-4238-bbad-167e2619b0ca', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11587', + 'x-ms-correlation-request-id', + '70e8cb87-71f3-41e2-883c-956d31175ae4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070951Z:70e8cb87-71f3-41e2-883c-956d31175ae4', + 'Date', + 'Fri, 19 Nov 2021 07:09:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e26476d5-7e54-47af-bf63-15da84fe5816', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11586', + 'x-ms-correlation-request-id', + 'aa9239b0-d208-439a-9996-fcd4e14ca047', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070951Z:aa9239b0-d208-439a-9996-fcd4e14ca047', + 'Date', + 'Fri, 19 Nov 2021 07:09:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '78dc7edf-2cad-4037-953d-5a47a6282861', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11585', + 'x-ms-correlation-request-id', + '593c4a09-b337-47a7-924f-bfeebf05323b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070951Z:593c4a09-b337-47a7-924f-bfeebf05323b', + 'Date', + 'Fri, 19 Nov 2021 07:09:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4f32c94e-1d1d-42ef-9811-5ffec67b899d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11584', + 'x-ms-correlation-request-id', + '576e3d1c-3706-4d94-8592-7a296e1175ae', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070952Z:576e3d1c-3706-4d94-8592-7a296e1175ae', + 'Date', + 'Fri, 19 Nov 2021 07:09:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '34ca87a8-86e8-4da0-b71e-bff154090c41', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11583', + 'x-ms-correlation-request-id', + '3c27bcf3-cd12-4ea1-8ed9-dbc03a928835', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070952Z:3c27bcf3-cd12-4ea1-8ed9-dbc03a928835', + 'Date', + 'Fri, 19 Nov 2021 07:09:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91f572eb-d392-44bd-979f-049cc8899378', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11582', + 'x-ms-correlation-request-id', + '4da56c38-9d9c-4d9c-89df-e8c0bc97c60a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070952Z:4da56c38-9d9c-4d9c-89df-e8c0bc97c60a', + 'Date', + 'Fri, 19 Nov 2021 07:09:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '86624d57-8481-4b0e-8de9-3353614db731', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11581', + 'x-ms-correlation-request-id', + '737200b1-f54e-4c82-9204-6caa087a5156', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070953Z:737200b1-f54e-4c82-9204-6caa087a5156', + 'Date', + 'Fri, 19 Nov 2021 07:09:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '322453f5-157d-4a8f-9ce3-784d05cd99cf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11580', + 'x-ms-correlation-request-id', + 'bf6f3211-0d9a-442a-a7e7-095f213e3316', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070953Z:bf6f3211-0d9a-442a-a7e7-095f213e3316', + 'Date', + 'Fri, 19 Nov 2021 07:09:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '86d7b800-f3b1-4714-87c0-e7bdb4f4ca91', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11579', + 'x-ms-correlation-request-id', + '9d94eae0-6578-4a95-903c-d50e33496df2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070953Z:9d94eae0-6578-4a95-903c-d50e33496df2', + 'Date', + 'Fri, 19 Nov 2021 07:09:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ef120882-37ab-4a49-87e9-23835021dadb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11578', + 'x-ms-correlation-request-id', + 'd1757865-680b-42c4-94af-d4ef47e30f24', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070954Z:d1757865-680b-42c4-94af-d4ef47e30f24', + 'Date', + 'Fri, 19 Nov 2021 07:09:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3ad19da-3ca5-4fd4-93cf-ec3db447d20e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11577', + 'x-ms-correlation-request-id', + '590ca193-7983-4ab5-a557-8f1f94a10b44', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070954Z:590ca193-7983-4ab5-a557-8f1f94a10b44', + 'Date', + 'Fri, 19 Nov 2021 07:09:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '62f7b0e1-b7ac-4ad5-bc82-9f6439ff1b7e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11576', + 'x-ms-correlation-request-id', + 'b2e0867d-24af-4358-b6e3-5e80cc43d955', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070954Z:b2e0867d-24af-4358-b6e3-5e80cc43d955', + 'Date', + 'Fri, 19 Nov 2021 07:09:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '37131bde-6dfa-49f3-b10c-cf01c11016d1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11575', + 'x-ms-correlation-request-id', + 'd8327c84-1a6f-4124-b9ca-78ec924acfb6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070954Z:d8327c84-1a6f-4124-b9ca-78ec924acfb6', + 'Date', + 'Fri, 19 Nov 2021 07:09:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a558110f-aa68-4212-9cfe-223f72624aa8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11574', + 'x-ms-correlation-request-id', + 'def7df75-5059-4d66-9bf9-0ff3cf5fe897', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070955Z:def7df75-5059-4d66-9bf9-0ff3cf5fe897', + 'Date', + 'Fri, 19 Nov 2021 07:09:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0e7bb549-bce3-4f16-8fc6-4752bfb930f8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11573', + 'x-ms-correlation-request-id', + 'c2af4d9b-ee34-42e9-af0b-2ccab8590450', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070955Z:c2af4d9b-ee34-42e9-af0b-2ccab8590450', + 'Date', + 'Fri, 19 Nov 2021 07:09:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91d88544-e20b-4c67-b9ec-b565419460dd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11572', + 'x-ms-correlation-request-id', + 'e6d0f409-e3e8-4c49-9b01-58f915acf204', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070955Z:e6d0f409-e3e8-4c49-9b01-58f915acf204', + 'Date', + 'Fri, 19 Nov 2021 07:09:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'da582281-ce63-49a1-a05e-a4baf4b31549', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11571', + 'x-ms-correlation-request-id', + '7ea13d32-1f02-4ec5-910f-a3e851f3de73', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070956Z:7ea13d32-1f02-4ec5-910f-a3e851f3de73', + 'Date', + 'Fri, 19 Nov 2021 07:09:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7527900a-c02e-46c5-9ec7-d9fe45076d1d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11570', + 'x-ms-correlation-request-id', + 'd63c4694-a189-4313-b081-2c46c4102ebd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070956Z:d63c4694-a189-4313-b081-2c46c4102ebd', + 'Date', + 'Fri, 19 Nov 2021 07:09:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '676fdb04-525c-4418-b28d-4fd3fc021a6f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11569', + 'x-ms-correlation-request-id', + 'abc63e2a-0ff6-40a2-9d72-af14d0d85882', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070956Z:abc63e2a-0ff6-40a2-9d72-af14d0d85882', + 'Date', + 'Fri, 19 Nov 2021 07:09:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9bfecedd-1660-45ec-abd9-f77c5de96dc9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11568', + 'x-ms-correlation-request-id', + 'fcea1d60-e718-4900-86a1-da25272a2c5e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070957Z:fcea1d60-e718-4900-86a1-da25272a2c5e', + 'Date', + 'Fri, 19 Nov 2021 07:09:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fcf65730-2eee-47ad-9e99-796be830cf3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11567', + 'x-ms-correlation-request-id', + 'e3b96b70-9b47-4608-b785-2771d88a3ad6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070957Z:e3b96b70-9b47-4608-b785-2771d88a3ad6', + 'Date', + 'Fri, 19 Nov 2021 07:09:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b5fc4230-343c-4b3e-b5d7-bc61b48f3d46', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11566', + 'x-ms-correlation-request-id', + '5032f946-3b77-448c-88d7-92bf77cc2a46', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070957Z:5032f946-3b77-448c-88d7-92bf77cc2a46', + 'Date', + 'Fri, 19 Nov 2021 07:09:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3ab500c-f4c4-4060-9a66-9a5de1ea0025', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11565', + 'x-ms-correlation-request-id', + '36fc6f90-f12c-4985-a9db-fff915232fc8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070957Z:36fc6f90-f12c-4985-a9db-fff915232fc8', + 'Date', + 'Fri, 19 Nov 2021 07:09:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '32c4446a-3e4d-4094-8c61-544c935390f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11564', + 'x-ms-correlation-request-id', + '49eceb3b-b883-4f9d-bce5-18cc46bd8c06', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070958Z:49eceb3b-b883-4f9d-bce5-18cc46bd8c06', + 'Date', + 'Fri, 19 Nov 2021 07:09:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '689781be-f979-48e7-b4c7-c84b12043f0a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11563', + 'x-ms-correlation-request-id', + '27f7013b-5d42-4e83-b384-d10b667c561c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070958Z:27f7013b-5d42-4e83-b384-d10b667c561c', + 'Date', + 'Fri, 19 Nov 2021 07:09:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5fe6e477-0e1d-46ef-97a7-bc6b84c952d6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11562', + 'x-ms-correlation-request-id', + 'eab109bf-c583-434d-8d45-3488834a0c73', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070958Z:eab109bf-c583-434d-8d45-3488834a0c73', + 'Date', + 'Fri, 19 Nov 2021 07:09:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8b6dc57e-8ce3-4519-8b3a-c05bbd84141d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11561', + 'x-ms-correlation-request-id', + '3f5f2769-0a26-46ef-a69a-74d1e15ab518', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070959Z:3f5f2769-0a26-46ef-a69a-74d1e15ab518', + 'Date', + 'Fri, 19 Nov 2021 07:09:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5410c8a5-a69c-4e70-9802-2fc9214e3853', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11560', + 'x-ms-correlation-request-id', + 'd1b9efec-9607-4c07-80ba-78cc632d417d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070959Z:d1b9efec-9607-4c07-80ba-78cc632d417d', + 'Date', + 'Fri, 19 Nov 2021 07:09:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9a95f1c9-cd49-4d97-9107-836d454ce8de', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11559', + 'x-ms-correlation-request-id', + 'e67efc32-5804-4f1c-9fde-2c69dacf5ef5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070959Z:e67efc32-5804-4f1c-9fde-2c69dacf5ef5', + 'Date', + 'Fri, 19 Nov 2021 07:09:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a6bbfdea-1e49-4c1a-82fd-719d74401dcc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11559', + 'x-ms-correlation-request-id', + '762d89d7-1466-4560-ab96-7e717bb7c1bb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071000Z:762d89d7-1466-4560-ab96-7e717bb7c1bb', + 'Date', + 'Fri, 19 Nov 2021 07:09:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e7d40a91-5432-4ece-8fe5-d7c23122f2ec', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11558', + 'x-ms-correlation-request-id', + 'ea5008ad-560d-4161-9c3e-3f96361dbd69', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071000Z:ea5008ad-560d-4161-9c3e-3f96361dbd69', + 'Date', + 'Fri, 19 Nov 2021 07:10:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2011c9a7-1b09-4ac8-8d54-5ece9a15684c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11557', + 'x-ms-correlation-request-id', + '1ce7a3cc-ea74-4cb1-a34d-e665ade6bdc0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071000Z:1ce7a3cc-ea74-4cb1-a34d-e665ade6bdc0', + 'Date', + 'Fri, 19 Nov 2021 07:10:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9f6151b5-ac00-4be2-a774-7dacf61766ee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11556', + 'x-ms-correlation-request-id', + '634aa935-57f6-4bb9-b556-e14997e4773c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071000Z:634aa935-57f6-4bb9-b556-e14997e4773c', + 'Date', + 'Fri, 19 Nov 2021 07:10:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7836385b-24c1-415f-be6b-ad8df5faf8a7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11555', + 'x-ms-correlation-request-id', + '92fc07dd-507d-405f-a613-4cbb9512ed55', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071001Z:92fc07dd-507d-405f-a613-4cbb9512ed55', + 'Date', + 'Fri, 19 Nov 2021 07:10:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '66a9f71e-8887-42e6-99f4-8031ee65e74e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11554', + 'x-ms-correlation-request-id', + 'c89559b7-1a5d-4823-ae28-aaea19813662', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071001Z:c89559b7-1a5d-4823-ae28-aaea19813662', + 'Date', + 'Fri, 19 Nov 2021 07:10:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e6300d40-371b-449d-b187-766bc178ad02', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11553', + 'x-ms-correlation-request-id', + 'ca9929db-27cd-4a91-94ee-694ad0c9ee82', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071001Z:ca9929db-27cd-4a91-94ee-694ad0c9ee82', + 'Date', + 'Fri, 19 Nov 2021 07:10:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd2ee6753-0596-4262-9343-ee9b33bea0f6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11552', + 'x-ms-correlation-request-id', + '4c5795fe-3f08-40ce-82f9-fe6ae67feba4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071002Z:4c5795fe-3f08-40ce-82f9-fe6ae67feba4', + 'Date', + 'Fri, 19 Nov 2021 07:10:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0eb3c4d4-2bb6-4592-8c53-1dfe7217faed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11551', + 'x-ms-correlation-request-id', + '2763ede9-da03-4186-9523-8b2e3e0dba08', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071002Z:2763ede9-da03-4186-9523-8b2e3e0dba08', + 'Date', + 'Fri, 19 Nov 2021 07:10:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cebd1ef6-892d-4701-9b1c-518300eb8cdb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11550', + 'x-ms-correlation-request-id', + '182ba589-3229-4ff2-98fb-fcd97b6753f9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071002Z:182ba589-3229-4ff2-98fb-fcd97b6753f9', + 'Date', + 'Fri, 19 Nov 2021 07:10:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b85b834c-b669-411b-a851-160bdcaf53ee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11549', + 'x-ms-correlation-request-id', + '3d9bac2c-abf6-4bb3-aca4-49e1f1941018', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071003Z:3d9bac2c-abf6-4bb3-aca4-49e1f1941018', + 'Date', + 'Fri, 19 Nov 2021 07:10:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ae1d7401-8bc7-4c6d-9620-dd845c735451', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11548', + 'x-ms-correlation-request-id', + '2a648aa4-f3c4-48d5-a2cb-44eaae263e4f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071003Z:2a648aa4-f3c4-48d5-a2cb-44eaae263e4f', + 'Date', + 'Fri, 19 Nov 2021 07:10:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '17f69b59-9336-4787-9391-45dfa0d42f27', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11547', + 'x-ms-correlation-request-id', + '1f087723-7549-49cb-a2e9-33babb485d3a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071003Z:1f087723-7549-49cb-a2e9-33babb485d3a', + 'Date', + 'Fri, 19 Nov 2021 07:10:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e11b9ed0-ec9c-4373-8ca1-3602e2330d8a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11546', + 'x-ms-correlation-request-id', + '8de045e0-8b00-4648-8fd9-cd9d3a5c10fc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071003Z:8de045e0-8b00-4648-8fd9-cd9d3a5c10fc', + 'Date', + 'Fri, 19 Nov 2021 07:10:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c2ee6f30-a007-4478-8a69-8b15e7b26938', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11545', + 'x-ms-correlation-request-id', + 'dcb4a2c3-d791-4e4d-9fc5-3958cb356b96', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071004Z:dcb4a2c3-d791-4e4d-9fc5-3958cb356b96', + 'Date', + 'Fri, 19 Nov 2021 07:10:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '11857af3-7e1b-40a0-89fd-5f307b8abe35', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11544', + 'x-ms-correlation-request-id', + 'ab17407d-875c-47be-a0d7-58b7cd95fec5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071004Z:ab17407d-875c-47be-a0d7-58b7cd95fec5', + 'Date', + 'Fri, 19 Nov 2021 07:10:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '973089ff-754b-4510-a2c1-65f36200073c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11543', + 'x-ms-correlation-request-id', + '4bf74abf-fe80-4353-88f3-a9c3abfde59d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071004Z:4bf74abf-fe80-4353-88f3-a9c3abfde59d', + 'Date', + 'Fri, 19 Nov 2021 07:10:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9cbe065d-7321-4f84-8228-d65d7741dfbe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11542', + 'x-ms-correlation-request-id', + 'ebeee239-92cb-4901-90e0-8788b3d3d984', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071005Z:ebeee239-92cb-4901-90e0-8788b3d3d984', + 'Date', + 'Fri, 19 Nov 2021 07:10:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd75dd035-d8d2-4cdd-8174-fa5b22c52a63', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11541', + 'x-ms-correlation-request-id', + 'dd10cd4b-0359-4673-a761-37750da4a269', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071005Z:dd10cd4b-0359-4673-a761-37750da4a269', + 'Date', + 'Fri, 19 Nov 2021 07:10:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ca0b9d64-dea2-4bf7-a162-75117966a39c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11540', + 'x-ms-correlation-request-id', + '6ccff022-d5e5-41b9-8f5d-5312069aa293', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071005Z:6ccff022-d5e5-41b9-8f5d-5312069aa293', + 'Date', + 'Fri, 19 Nov 2021 07:10:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4615f457-ec03-47f8-8823-15df8dab7711', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11539', + 'x-ms-correlation-request-id', + '201e10f5-c162-4db2-88dc-9ba6b2bb3de2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071006Z:201e10f5-c162-4db2-88dc-9ba6b2bb3de2', + 'Date', + 'Fri, 19 Nov 2021 07:10:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4e86f632-ca88-49d3-b3cf-176fe84bbe6a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11538', + 'x-ms-correlation-request-id', + 'df5c0fb9-26c4-45ce-8e58-77b313847ade', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071006Z:df5c0fb9-26c4-45ce-8e58-77b313847ade', + 'Date', + 'Fri, 19 Nov 2021 07:10:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '466cad48-78ef-4bc5-9149-3f354d651965', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11537', + 'x-ms-correlation-request-id', + '2506eb96-64c7-4a9e-b724-7d771a28e9f0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071006Z:2506eb96-64c7-4a9e-b724-7d771a28e9f0', + 'Date', + 'Fri, 19 Nov 2021 07:10:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '505ac880-2657-44ec-bb25-23114f7a233d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11536', + 'x-ms-correlation-request-id', + '37c8e2b0-d657-409c-a5b7-e8c13d94eec2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071007Z:37c8e2b0-d657-409c-a5b7-e8c13d94eec2', + 'Date', + 'Fri, 19 Nov 2021 07:10:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '42f525af-0618-4f3a-ac3d-58a785765c42', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11535', + 'x-ms-correlation-request-id', + '80300ff8-3ed3-44ad-8244-9579bafd2ec1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071007Z:80300ff8-3ed3-44ad-8244-9579bafd2ec1', + 'Date', + 'Fri, 19 Nov 2021 07:10:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a6a66c91-f094-4b24-b92a-b5f00631418f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11534', + 'x-ms-correlation-request-id', + '2c71ac61-7ddb-46a7-b398-abd57d596f57', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071007Z:2c71ac61-7ddb-46a7-b398-abd57d596f57', + 'Date', + 'Fri, 19 Nov 2021 07:10:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cbce7d73-09ad-4843-8e69-95abde62a5fd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11533', + 'x-ms-correlation-request-id', + 'd3ecf00f-27da-4e95-94d3-3b9730f9512b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071007Z:d3ecf00f-27da-4e95-94d3-3b9730f9512b', + 'Date', + 'Fri, 19 Nov 2021 07:10:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cb1307eb-93e1-4f24-a608-a0ffd533db63', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11532', + 'x-ms-correlation-request-id', + 'fa59485e-c557-4504-a440-f6b369796949', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071008Z:fa59485e-c557-4504-a440-f6b369796949', + 'Date', + 'Fri, 19 Nov 2021 07:10:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2f1c021e-c2c4-4079-91ee-3ac9347af92c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11531', + 'x-ms-correlation-request-id', + 'f00734bc-11ab-46ed-9b86-a50c89cf4f04', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071008Z:f00734bc-11ab-46ed-9b86-a50c89cf4f04', + 'Date', + 'Fri, 19 Nov 2021 07:10:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '25ca6af6-20cb-44d7-88fe-f9c068677325', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11530', + 'x-ms-correlation-request-id', + 'fdd493d8-c12f-454b-bc87-e4aca0a7eb33', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071008Z:fdd493d8-c12f-454b-bc87-e4aca0a7eb33', + 'Date', + 'Fri, 19 Nov 2021 07:10:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6b2f9283-3297-4f53-9c0b-5daf0e7e330b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11529', + 'x-ms-correlation-request-id', + '5c6aecb8-8061-409b-a883-571dd047bb2f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071009Z:5c6aecb8-8061-409b-a883-571dd047bb2f', + 'Date', + 'Fri, 19 Nov 2021 07:10:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5a5537dc-8b85-48f6-bcfd-7d3661a19349', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11528', + 'x-ms-correlation-request-id', + 'a3d332d8-7c9f-4d1f-8087-0ce255de8615', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071009Z:a3d332d8-7c9f-4d1f-8087-0ce255de8615', + 'Date', + 'Fri, 19 Nov 2021 07:10:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5d4be7d1-721f-46bc-b101-782cab136f84', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11527', + 'x-ms-correlation-request-id', + '2b99c404-a442-493c-944f-fb3f5e9cd8cc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071009Z:2b99c404-a442-493c-944f-fb3f5e9cd8cc', + 'Date', + 'Fri, 19 Nov 2021 07:10:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fbf805c9-a422-45c2-9096-c8391c64a34a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11526', + 'x-ms-correlation-request-id', + 'dfb3d656-c3ce-4e9d-9e3b-84e34efb9bb1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071010Z:dfb3d656-c3ce-4e9d-9e3b-84e34efb9bb1', + 'Date', + 'Fri, 19 Nov 2021 07:10:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bc694804-6c3b-477d-8ada-eada7a9619df', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11525', + 'x-ms-correlation-request-id', + 'e214ef87-9f62-4b86-947c-b82a59976054', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071010Z:e214ef87-9f62-4b86-947c-b82a59976054', + 'Date', + 'Fri, 19 Nov 2021 07:10:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '97429443-0361-4c9e-b0e4-fc9829886ff3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11524', + 'x-ms-correlation-request-id', + '87e507d4-f642-4998-b564-eab85d3670c8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071010Z:87e507d4-f642-4998-b564-eab85d3670c8', + 'Date', + 'Fri, 19 Nov 2021 07:10:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c44a27fe-de90-4067-a85e-e685f59b085c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11523', + 'x-ms-correlation-request-id', + '12116b50-5351-4fee-98ed-73b040789a3e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071011Z:12116b50-5351-4fee-98ed-73b040789a3e', + 'Date', + 'Fri, 19 Nov 2021 07:10:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '465e0d86-7e6f-4670-85d3-af52f8e51b10', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11522', + 'x-ms-correlation-request-id', + 'd4fc4605-8100-4fbd-a77a-772ef3409cf7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071011Z:d4fc4605-8100-4fbd-a77a-772ef3409cf7', + 'Date', + 'Fri, 19 Nov 2021 07:10:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3fc154db-d55c-46ba-bc45-05bf692be630', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11521', + 'x-ms-correlation-request-id', + '026fd595-834a-44cd-8b59-b3e053f2a694', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071011Z:026fd595-834a-44cd-8b59-b3e053f2a694', + 'Date', + 'Fri, 19 Nov 2021 07:10:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8ba5c6e8-6efd-4349-a8f6-baabf01a3de1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11520', + 'x-ms-correlation-request-id', + 'ccf53de7-71e7-4ce3-9451-23b43157322b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071011Z:ccf53de7-71e7-4ce3-9451-23b43157322b', + 'Date', + 'Fri, 19 Nov 2021 07:10:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cadaa11b-579a-4e79-90c9-f354f5602432', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11519', + 'x-ms-correlation-request-id', + '4460d2e0-31fe-4ace-9e06-cc4922303472', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071012Z:4460d2e0-31fe-4ace-9e06-cc4922303472', + 'Date', + 'Fri, 19 Nov 2021 07:10:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f8a5ad2a-2ebd-4e0c-bc1b-7a0595b25b01', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11518', + 'x-ms-correlation-request-id', + 'd8610bf2-3acb-4d12-8023-caef30287cf2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071012Z:d8610bf2-3acb-4d12-8023-caef30287cf2', + 'Date', + 'Fri, 19 Nov 2021 07:10:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '18ea3a18-1849-42e8-be21-64143c7d1967', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11517', + 'x-ms-correlation-request-id', + '9a13fc41-8b2e-44a3-8d9b-9cadb74a3259', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071012Z:9a13fc41-8b2e-44a3-8d9b-9cadb74a3259', + 'Date', + 'Fri, 19 Nov 2021 07:10:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '75f6921f-59a9-4f0e-a516-ffe1e5966151', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11516', + 'x-ms-correlation-request-id', + '70bfe01b-e22e-4d2b-a7c7-2089e2891d99', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071013Z:70bfe01b-e22e-4d2b-a7c7-2089e2891d99', + 'Date', + 'Fri, 19 Nov 2021 07:10:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5a36d7f8-68db-4dd0-9bdc-66226d5b43a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11515', + 'x-ms-correlation-request-id', + '5cdf94ab-fae8-468b-b396-92f0227c54f2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071013Z:5cdf94ab-fae8-468b-b396-92f0227c54f2', + 'Date', + 'Fri, 19 Nov 2021 07:10:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4ef10603-1584-43a7-ab13-392e3f0170fe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11514', + 'x-ms-correlation-request-id', + 'bf907a27-57fe-46de-ae51-11c2641837d3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071013Z:bf907a27-57fe-46de-ae51-11c2641837d3', + 'Date', + 'Fri, 19 Nov 2021 07:10:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0061581d-bca8-48a5-a27a-a48e22894518', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11513', + 'x-ms-correlation-request-id', + 'ab3d7053-c46f-451d-81f1-a0f6de45cf59', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071014Z:ab3d7053-c46f-451d-81f1-a0f6de45cf59', + 'Date', + 'Fri, 19 Nov 2021 07:10:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '455ad775-d715-4da4-a090-0d4dd08fd686', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11512', + 'x-ms-correlation-request-id', + '012d8814-48da-4da9-8e18-eda62cb44d15', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071014Z:012d8814-48da-4da9-8e18-eda62cb44d15', + 'Date', + 'Fri, 19 Nov 2021 07:10:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a1c4e6c7-c909-4812-9f5d-5e506fe9d2ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11511', + 'x-ms-correlation-request-id', + 'f2f111a2-da1c-4b10-bf2c-314e0d475d7d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071014Z:f2f111a2-da1c-4b10-bf2c-314e0d475d7d', + 'Date', + 'Fri, 19 Nov 2021 07:10:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ae9a7c3b-8964-4289-a60f-446afb793098', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11510', + 'x-ms-correlation-request-id', + 'a018a32f-e322-405c-a022-bacc69c244e7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071014Z:a018a32f-e322-405c-a022-bacc69c244e7', + 'Date', + 'Fri, 19 Nov 2021 07:10:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1ca1d641-3780-46f4-a3ca-5e1b76a92598', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11509', + 'x-ms-correlation-request-id', + '85548db9-4bc6-43c1-91bb-11269d5731a4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071015Z:85548db9-4bc6-43c1-91bb-11269d5731a4', + 'Date', + 'Fri, 19 Nov 2021 07:10:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f04809e9-fe73-44e4-88e4-3c242f74d234', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11508', + 'x-ms-correlation-request-id', + '830dd1e0-cf1f-49bd-94c6-491c5d211c7e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071015Z:830dd1e0-cf1f-49bd-94c6-491c5d211c7e', + 'Date', + 'Fri, 19 Nov 2021 07:10:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a4032710-f717-4a5d-8238-361c4cb758ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11507', + 'x-ms-correlation-request-id', + '61185934-e3ec-40ae-98af-fd8e0af44412', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071015Z:61185934-e3ec-40ae-98af-fd8e0af44412', + 'Date', + 'Fri, 19 Nov 2021 07:10:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8032aa13-be59-4f14-9498-84daf3059684', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11506', + 'x-ms-correlation-request-id', + 'd2c5b5cd-ca6d-40f0-b721-6731a70f0b73', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071016Z:d2c5b5cd-ca6d-40f0-b721-6731a70f0b73', + 'Date', + 'Fri, 19 Nov 2021 07:10:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'da8c6848-d21c-4749-ae07-23fbe3838e61', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11505', + 'x-ms-correlation-request-id', + 'c2c2cc4f-aa25-48fc-b58d-a5761adf755c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071016Z:c2c2cc4f-aa25-48fc-b58d-a5761adf755c', + 'Date', + 'Fri, 19 Nov 2021 07:10:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b0bd9b7b-dd29-4fd3-b2d1-508e1ca12783', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11504', + 'x-ms-correlation-request-id', + '44bd2bac-1c91-41ba-930b-e1eb409c7a15', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071016Z:44bd2bac-1c91-41ba-930b-e1eb409c7a15', + 'Date', + 'Fri, 19 Nov 2021 07:10:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd6168b8e-c944-414e-b28d-45163b974cde', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11503', + 'x-ms-correlation-request-id', + 'f2b1677f-0329-4123-9ceb-8a2c5c2f7e2f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071017Z:f2b1677f-0329-4123-9ceb-8a2c5c2f7e2f', + 'Date', + 'Fri, 19 Nov 2021 07:10:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '25deec94-8f03-4abc-b3e6-cc6b1ffde650', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11502', + 'x-ms-correlation-request-id', + '9bf7913f-c955-4a0d-9a5b-1d59cdfd0d48', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071017Z:9bf7913f-c955-4a0d-9a5b-1d59cdfd0d48', + 'Date', + 'Fri, 19 Nov 2021 07:10:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f8326dc3-3142-4e20-8666-ad7e8a546924', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11501', + 'x-ms-correlation-request-id', + '6177a053-ff29-4f34-8d6f-8bc184598b8b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071017Z:6177a053-ff29-4f34-8d6f-8bc184598b8b', + 'Date', + 'Fri, 19 Nov 2021 07:10:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6a5fcab3-a899-450a-901b-42a84161f69d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11500', + 'x-ms-correlation-request-id', + 'aac0622c-fbf4-42f4-b508-c722df73561b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071018Z:aac0622c-fbf4-42f4-b508-c722df73561b', + 'Date', + 'Fri, 19 Nov 2021 07:10:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f562033e-b1a0-4819-9c89-9cbf24e3819b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11499', + 'x-ms-correlation-request-id', + '322e333b-b6fa-4fc8-a648-dbfafe82d23c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071018Z:322e333b-b6fa-4fc8-a648-dbfafe82d23c', + 'Date', + 'Fri, 19 Nov 2021 07:10:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2faff058-2c9c-42d9-b5d1-eb3ce0fe61cd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11498', + 'x-ms-correlation-request-id', + '8be77f2d-8d81-43d9-8c37-43f82d64b4ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071018Z:8be77f2d-8d81-43d9-8c37-43f82d64b4ca', + 'Date', + 'Fri, 19 Nov 2021 07:10:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '61b37d89-bd27-4c5b-a67a-4058e1505de9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11497', + 'x-ms-correlation-request-id', + '6d55e765-a724-4d87-8e5f-ca6ea476f7bb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071018Z:6d55e765-a724-4d87-8e5f-ca6ea476f7bb', + 'Date', + 'Fri, 19 Nov 2021 07:10:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2f590403-93a7-4949-8330-3da0455e33a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11496', + 'x-ms-correlation-request-id', + '39523979-ba0c-4b41-b147-4076e5f51776', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071019Z:39523979-ba0c-4b41-b147-4076e5f51776', + 'Date', + 'Fri, 19 Nov 2021 07:10:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0e589383-3b8e-4d58-b2b6-bc8f04bf1dc2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11495', + 'x-ms-correlation-request-id', + '0982eb45-edb9-4664-8bb5-c9f3cdddf4a5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071019Z:0982eb45-edb9-4664-8bb5-c9f3cdddf4a5', + 'Date', + 'Fri, 19 Nov 2021 07:10:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c0e3634b-b24a-4e37-8a55-1ae79ea399a6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11494', + 'x-ms-correlation-request-id', + '6e2fc2c6-6aec-4d96-a8b9-898ea5349fa3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071019Z:6e2fc2c6-6aec-4d96-a8b9-898ea5349fa3', + 'Date', + 'Fri, 19 Nov 2021 07:10:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ff159f75-a673-43fc-aee3-4167c4d9494a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11493', + 'x-ms-correlation-request-id', + '745b94a5-3732-4c49-9291-cb3a03ee06b2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071020Z:745b94a5-3732-4c49-9291-cb3a03ee06b2', + 'Date', + 'Fri, 19 Nov 2021 07:10:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ed094370-ed86-4051-9b84-97adde9676d4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11492', + 'x-ms-correlation-request-id', + 'c0a9ec2d-f931-4202-89d3-bff15beaed15', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071020Z:c0a9ec2d-f931-4202-89d3-bff15beaed15', + 'Date', + 'Fri, 19 Nov 2021 07:10:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a339f384-6664-4d15-be60-4f322b2baceb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11491', + 'x-ms-correlation-request-id', + '434b02d0-6cd2-4a9b-86ac-f73fe21bc8d6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071020Z:434b02d0-6cd2-4a9b-86ac-f73fe21bc8d6', + 'Date', + 'Fri, 19 Nov 2021 07:10:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8af5452b-1c8c-43cf-95e2-868e55dd06f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11490', + 'x-ms-correlation-request-id', + '54586468-7f95-4e7b-b726-7d53372367fa', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071021Z:54586468-7f95-4e7b-b726-7d53372367fa', + 'Date', + 'Fri, 19 Nov 2021 07:10:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fddc998d-ba6d-4709-a143-c01516116706', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11489', + 'x-ms-correlation-request-id', + '285a0294-5ff5-4535-814a-778aa0c4cbbb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071021Z:285a0294-5ff5-4535-814a-778aa0c4cbbb', + 'Date', + 'Fri, 19 Nov 2021 07:10:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '98365d23-8c31-4dd4-9b20-4829c3247f07', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11488', + 'x-ms-correlation-request-id', + '34c43278-1ebc-4181-b1f1-5dccf0f1cf66', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071021Z:34c43278-1ebc-4181-b1f1-5dccf0f1cf66', + 'Date', + 'Fri, 19 Nov 2021 07:10:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '23c39940-db19-4cb3-a7a1-0430b9038ab0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11487', + 'x-ms-correlation-request-id', + 'a155c72d-63e2-4f5d-bf72-340a2ae99ce5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071021Z:a155c72d-63e2-4f5d-bf72-340a2ae99ce5', + 'Date', + 'Fri, 19 Nov 2021 07:10:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2fe9db83-3b44-49ad-b5d3-f48e517415bb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11486', + 'x-ms-correlation-request-id', + 'bae1d760-c316-4353-b75a-9f785bb9fae5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071022Z:bae1d760-c316-4353-b75a-9f785bb9fae5', + 'Date', + 'Fri, 19 Nov 2021 07:10:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '65fd7287-9b42-4577-8075-139ba6845901', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11485', + 'x-ms-correlation-request-id', + '6a75c4a8-60a6-40ac-b7b6-baca7af40823', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071022Z:6a75c4a8-60a6-40ac-b7b6-baca7af40823', + 'Date', + 'Fri, 19 Nov 2021 07:10:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '359e671a-6970-47e5-8fcf-c474588b2ae2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11484', + 'x-ms-correlation-request-id', + 'd5431e22-4e4f-4bcf-b685-20bd046406e3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071022Z:d5431e22-4e4f-4bcf-b685-20bd046406e3', + 'Date', + 'Fri, 19 Nov 2021 07:10:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd1a04261-9323-42c4-81c8-1a0d3aec876e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11483', + 'x-ms-correlation-request-id', + '45b201e0-cdd3-417b-a04a-2e7f0f8fdb35', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071023Z:45b201e0-cdd3-417b-a04a-2e7f0f8fdb35', + 'Date', + 'Fri, 19 Nov 2021 07:10:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bcedb052-38a6-4b1d-91fc-5baabd5433f9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11482', + 'x-ms-correlation-request-id', + 'aa77937a-5059-4a14-af9f-a9b7222d4fc3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071023Z:aa77937a-5059-4a14-af9f-a9b7222d4fc3', + 'Date', + 'Fri, 19 Nov 2021 07:10:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'df27a238-dcc0-46b2-88ca-3c1469aa1bdd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11481', + 'x-ms-correlation-request-id', + '69ed68d9-436d-4cd6-befe-7e4f26602a59', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071023Z:69ed68d9-436d-4cd6-befe-7e4f26602a59', + 'Date', + 'Fri, 19 Nov 2021 07:10:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f02e5395-c5bc-4d52-a345-0590a4fb8086', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11480', + 'x-ms-correlation-request-id', + '81e98e53-1271-4d93-9f2e-6a4c3232ab87', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071024Z:81e98e53-1271-4d93-9f2e-6a4c3232ab87', + 'Date', + 'Fri, 19 Nov 2021 07:10:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8dbf069c-0054-4952-a982-1653e3c9fd5e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11479', + 'x-ms-correlation-request-id', + '2282c91d-1674-4eb7-849b-8aabd5a2bc18', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071024Z:2282c91d-1674-4eb7-849b-8aabd5a2bc18', + 'Date', + 'Fri, 19 Nov 2021 07:10:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '32929be2-9872-4ea7-8815-84dd42de7885', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11478', + 'x-ms-correlation-request-id', + 'c1276b05-7d76-4c85-bdc5-d124fd52d2f1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071024Z:c1276b05-7d76-4c85-bdc5-d124fd52d2f1', + 'Date', + 'Fri, 19 Nov 2021 07:10:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cc8a6a07-247f-4c9a-bd4c-460fef6c030a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11477', + 'x-ms-correlation-request-id', + 'ef36f192-4b29-4d1c-9cc3-9ed5725650f0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071024Z:ef36f192-4b29-4d1c-9cc3-9ed5725650f0', + 'Date', + 'Fri, 19 Nov 2021 07:10:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '33ab4fc8-6aaf-4a74-a3a4-109a50edcb4e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11476', + 'x-ms-correlation-request-id', + '48e73422-5549-4d73-8da6-9d2ce9c3c2f8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071025Z:48e73422-5549-4d73-8da6-9d2ce9c3c2f8', + 'Date', + 'Fri, 19 Nov 2021 07:10:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '838eb80d-7c0f-4d18-b5bc-49d4660165ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11475', + 'x-ms-correlation-request-id', + '5f60a019-2b68-4b7e-aa18-16c24c6294ed', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071025Z:5f60a019-2b68-4b7e-aa18-16c24c6294ed', + 'Date', + 'Fri, 19 Nov 2021 07:10:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8a5d4264-bae7-48cb-a970-44b34090deeb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11474', + 'x-ms-correlation-request-id', + '6a6bd790-bef2-4cab-829a-78e87cc2791d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071025Z:6a6bd790-bef2-4cab-829a-78e87cc2791d', + 'Date', + 'Fri, 19 Nov 2021 07:10:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6cd750f5-d17c-4277-afcb-402dc25aa8b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11473', + 'x-ms-correlation-request-id', + '1495c81a-773f-467d-afe7-252ab161c9b7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071026Z:1495c81a-773f-467d-afe7-252ab161c9b7', + 'Date', + 'Fri, 19 Nov 2021 07:10:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7e5085b4-22cc-4e2f-b484-690cf35f15fe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11472', + 'x-ms-correlation-request-id', + '9b4070e2-c08c-45de-8e04-13ef05085d9e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071026Z:9b4070e2-c08c-45de-8e04-13ef05085d9e', + 'Date', + 'Fri, 19 Nov 2021 07:10:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8822b72d-4c11-4749-8b73-03ef96f96a66', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11471', + 'x-ms-correlation-request-id', + '23b34f8e-11ac-4bc7-931e-52ea080c86a2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071026Z:23b34f8e-11ac-4bc7-931e-52ea080c86a2', + 'Date', + 'Fri, 19 Nov 2021 07:10:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '38c6922b-e791-42ea-a4ff-8db6549442eb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11470', + 'x-ms-correlation-request-id', + '5803f967-00dd-430c-9eeb-f36db7bacef2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071027Z:5803f967-00dd-430c-9eeb-f36db7bacef2', + 'Date', + 'Fri, 19 Nov 2021 07:10:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f1d1caa4-5a48-46f4-a110-53f9bced0eb7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11469', + 'x-ms-correlation-request-id', + '427d5bf0-4d42-4115-b16b-93eef2f6aa95', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071027Z:427d5bf0-4d42-4115-b16b-93eef2f6aa95', + 'Date', + 'Fri, 19 Nov 2021 07:10:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '836a99b9-73ca-4101-be4b-d665280a4001', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11468', + 'x-ms-correlation-request-id', + 'a9549c67-34f1-4b9a-828c-b41ab53663b4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071027Z:a9549c67-34f1-4b9a-828c-b41ab53663b4', + 'Date', + 'Fri, 19 Nov 2021 07:10:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '84f38800-080e-4dec-9137-df1da7262851', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11467', + 'x-ms-correlation-request-id', + '629a7aee-a1fb-4b50-97a7-3c3cea7feb0c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071027Z:629a7aee-a1fb-4b50-97a7-3c3cea7feb0c', + 'Date', + 'Fri, 19 Nov 2021 07:10:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6a6fd029-6000-416b-9559-0a2c9501ff78', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11466', + 'x-ms-correlation-request-id', + '8d44f07c-0b56-4e83-b3d8-f9f6e37730db', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071028Z:8d44f07c-0b56-4e83-b3d8-f9f6e37730db', + 'Date', + 'Fri, 19 Nov 2021 07:10:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e9831bf1-e832-4f75-843b-58009b68b5b1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11465', + 'x-ms-correlation-request-id', + 'b87121bd-d8f3-4c6f-9d50-91c6c6be5a92', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071028Z:b87121bd-d8f3-4c6f-9d50-91c6c6be5a92', + 'Date', + 'Fri, 19 Nov 2021 07:10:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '960d8799-91ca-43eb-a914-9865203bd996', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11464', + 'x-ms-correlation-request-id', + '8563931f-55d6-40fa-a2ce-31af901bcf3c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071028Z:8563931f-55d6-40fa-a2ce-31af901bcf3c', + 'Date', + 'Fri, 19 Nov 2021 07:10:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f87a534e-60f4-44e3-9c85-f244ced4fc1e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11463', + 'x-ms-correlation-request-id', + '466ded8e-6407-4071-80de-37afc1ada17b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071029Z:466ded8e-6407-4071-80de-37afc1ada17b', + 'Date', + 'Fri, 19 Nov 2021 07:10:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '830e9316-5f6a-4d95-9212-2cf497589c7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11462', + 'x-ms-correlation-request-id', + 'a83adf2c-ab10-4e09-8020-f9dd8d4cfa3b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071029Z:a83adf2c-ab10-4e09-8020-f9dd8d4cfa3b', + 'Date', + 'Fri, 19 Nov 2021 07:10:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '82ba324f-56a8-4312-a907-016cbe38dc14', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11461', + 'x-ms-correlation-request-id', + '22b33bec-6574-4218-a16e-e66a14c045e5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071029Z:22b33bec-6574-4218-a16e-e66a14c045e5', + 'Date', + 'Fri, 19 Nov 2021 07:10:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1e6ca5fb-1644-437f-a744-30e62d617d3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11460', + 'x-ms-correlation-request-id', + '0f7bfeed-0acd-49b8-9c89-ff53baad6c80', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071030Z:0f7bfeed-0acd-49b8-9c89-ff53baad6c80', + 'Date', + 'Fri, 19 Nov 2021 07:10:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '50f3dd16-91e6-4810-99a4-0d68082b05e5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11459', + 'x-ms-correlation-request-id', + 'c95acebe-9b4a-408e-b84e-c54eeeb397c1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071030Z:c95acebe-9b4a-408e-b84e-c54eeeb397c1', + 'Date', + 'Fri, 19 Nov 2021 07:10:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '90431a8c-bb48-417d-8d44-adede8a37181', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11458', + 'x-ms-correlation-request-id', + '8ef8447b-26cb-4bb4-b586-352be1b9f3c3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071030Z:8ef8447b-26cb-4bb4-b586-352be1b9f3c3', + 'Date', + 'Fri, 19 Nov 2021 07:10:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '15e3ca93-f0b1-4298-80b2-5d199efe0b1e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11457', + 'x-ms-correlation-request-id', + '03470038-2ebb-4737-af4f-3538309a227e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071030Z:03470038-2ebb-4737-af4f-3538309a227e', + 'Date', + 'Fri, 19 Nov 2021 07:10:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '929cc3a2-a2b9-4801-b048-aa69f71cd081', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11456', + 'x-ms-correlation-request-id', + '8ef73a44-660e-4b9b-9e44-db8c98e7f467', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071031Z:8ef73a44-660e-4b9b-9e44-db8c98e7f467', + 'Date', + 'Fri, 19 Nov 2021 07:10:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '25b0cda3-e92e-4be0-866a-b171f38cf2f6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11455', + 'x-ms-correlation-request-id', + 'cddc487f-47e2-4e5b-ad4e-c68ed6c5f8d4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071031Z:cddc487f-47e2-4e5b-ad4e-c68ed6c5f8d4', + 'Date', + 'Fri, 19 Nov 2021 07:10:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4ea92c80-7059-4892-a857-d3076da626a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11454', + 'x-ms-correlation-request-id', + 'f38aca86-4bcc-4d3a-87a5-0f7600c5ed8e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071031Z:f38aca86-4bcc-4d3a-87a5-0f7600c5ed8e', + 'Date', + 'Fri, 19 Nov 2021 07:10:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '336aa3e8-0870-47d3-939c-e98fce197f6b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11453', + 'x-ms-correlation-request-id', + '8f632fe3-2a22-4327-b5cd-2522a709c105', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071032Z:8f632fe3-2a22-4327-b5cd-2522a709c105', + 'Date', + 'Fri, 19 Nov 2021 07:10:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6ae2db6f-5bb7-4ddc-8f54-a5cec936a308', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11452', + 'x-ms-correlation-request-id', + '9a83d90a-ad16-4524-8aaa-45657043e387', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071032Z:9a83d90a-ad16-4524-8aaa-45657043e387', + 'Date', + 'Fri, 19 Nov 2021 07:10:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2dc679eb-89e7-4482-a067-1ef2f524844c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11451', + 'x-ms-correlation-request-id', + '6cff9953-1057-4591-9137-8e6ac06b2f87', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071032Z:6cff9953-1057-4591-9137-8e6ac06b2f87', + 'Date', + 'Fri, 19 Nov 2021 07:10:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5106d8db-4dd4-41ab-a73a-38b4ea457079', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11450', + 'x-ms-correlation-request-id', + 'b178b543-9fe4-44ba-b431-c850916f3896', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071033Z:b178b543-9fe4-44ba-b431-c850916f3896', + 'Date', + 'Fri, 19 Nov 2021 07:10:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '400d0665-8335-47d9-91ce-d6c7a34a5f2f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11449', + 'x-ms-correlation-request-id', + 'c6e910eb-f4fe-4f4f-9789-ba31e2962997', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071033Z:c6e910eb-f4fe-4f4f-9789-ba31e2962997', + 'Date', + 'Fri, 19 Nov 2021 07:10:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2be51ea5-e77a-42da-9567-7b2accd53ee1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11448', + 'x-ms-correlation-request-id', + '05e0f5ad-5228-4198-87f2-931031c3de97', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071033Z:05e0f5ad-5228-4198-87f2-931031c3de97', + 'Date', + 'Fri, 19 Nov 2021 07:10:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8573b672-7869-47a7-8a91-4c6b4374d24f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11447', + 'x-ms-correlation-request-id', + '448117c4-1bbb-4f5d-9ce0-043e1548a8d1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071034Z:448117c4-1bbb-4f5d-9ce0-043e1548a8d1', + 'Date', + 'Fri, 19 Nov 2021 07:10:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '981d138f-b6f9-4a98-993d-e58c1b5babc0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11446', + 'x-ms-correlation-request-id', + 'bb66a828-7bf6-4df2-af58-503de4a56709', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071034Z:bb66a828-7bf6-4df2-af58-503de4a56709', + 'Date', + 'Fri, 19 Nov 2021 07:10:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fdba7246-5d8b-49fa-9cc6-cdf84b482a0c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11445', + 'x-ms-correlation-request-id', + '6dd4ea0e-959f-4727-b7a0-f297db22989c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071034Z:6dd4ea0e-959f-4727-b7a0-f297db22989c', + 'Date', + 'Fri, 19 Nov 2021 07:10:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '725a8dc3-d6f6-43f5-8cfd-118550f43d32', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11444', + 'x-ms-correlation-request-id', + '4cd5e219-1935-4d50-b691-2b763e164939', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071034Z:4cd5e219-1935-4d50-b691-2b763e164939', + 'Date', + 'Fri, 19 Nov 2021 07:10:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'baedc910-0619-4f7b-93c9-bce665a75259', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11443', + 'x-ms-correlation-request-id', + '290485f2-7f1d-4523-a2d5-3cf081ec0621', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071035Z:290485f2-7f1d-4523-a2d5-3cf081ec0621', + 'Date', + 'Fri, 19 Nov 2021 07:10:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e5ad5e43-895f-4695-a98f-06f55440e505', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11442', + 'x-ms-correlation-request-id', + 'd833d53b-24ea-495e-8487-e4b2ae99b080', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071035Z:d833d53b-24ea-495e-8487-e4b2ae99b080', + 'Date', + 'Fri, 19 Nov 2021 07:10:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aad17691-d525-4528-bc29-a8f1c93ba0c3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11441', + 'x-ms-correlation-request-id', + 'c35d091f-89fa-4895-88bb-b42bfb7e168e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071035Z:c35d091f-89fa-4895-88bb-b42bfb7e168e', + 'Date', + 'Fri, 19 Nov 2021 07:10:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f6ded696-585a-4384-a5af-527627ebae62', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11440', + 'x-ms-correlation-request-id', + '3cf33cdd-6dac-4377-90f9-58da48eeeeae', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071036Z:3cf33cdd-6dac-4377-90f9-58da48eeeeae', + 'Date', + 'Fri, 19 Nov 2021 07:10:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a4235303-fb8d-43e4-a914-d06047bb2268', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11439', + 'x-ms-correlation-request-id', + '27c23672-073c-4791-881e-e351e67795c3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071036Z:27c23672-073c-4791-881e-e351e67795c3', + 'Date', + 'Fri, 19 Nov 2021 07:10:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '650fd184-6931-44d7-a253-f3a4b9344cef', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11438', + 'x-ms-correlation-request-id', + 'ba08c605-efe6-47c7-8e92-ee2929b6fd1d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071036Z:ba08c605-efe6-47c7-8e92-ee2929b6fd1d', + 'Date', + 'Fri, 19 Nov 2021 07:10:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '438cd269-1aa6-4b2a-8b6d-bd98fded8faa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11437', + 'x-ms-correlation-request-id', + 'ec23d332-2c22-445f-9ea5-4167167239c2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071037Z:ec23d332-2c22-445f-9ea5-4167167239c2', + 'Date', + 'Fri, 19 Nov 2021 07:10:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '650d1557-3ff6-4412-b44a-ca56a4993169', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11436', + 'x-ms-correlation-request-id', + '1b7760d9-e9ec-4900-a4b5-7e47f244625e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071037Z:1b7760d9-e9ec-4900-a4b5-7e47f244625e', + 'Date', + 'Fri, 19 Nov 2021 07:10:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9a45f506-1c60-4121-acb5-d9aa83def830', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11435', + 'x-ms-correlation-request-id', + '3dd368a9-8704-46d1-8bcb-8be267330ba4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071037Z:3dd368a9-8704-46d1-8bcb-8be267330ba4', + 'Date', + 'Fri, 19 Nov 2021 07:10:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '27ba7e8a-d5ef-4468-bfd4-bba73b6b23e5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11434', + 'x-ms-correlation-request-id', + '3402b2e1-6fb2-4df0-9202-2463dcd7107a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071037Z:3402b2e1-6fb2-4df0-9202-2463dcd7107a', + 'Date', + 'Fri, 19 Nov 2021 07:10:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2da20615-9428-4d65-a766-a0bf7f954817', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11433', + 'x-ms-correlation-request-id', + '1fedd85d-59a1-423b-8ec1-01fab25aa5a1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071038Z:1fedd85d-59a1-423b-8ec1-01fab25aa5a1', + 'Date', + 'Fri, 19 Nov 2021 07:10:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0ff105b3-eec6-40c8-85a5-93814802381a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11432', + 'x-ms-correlation-request-id', + '5f78bcef-4bf9-489c-9aeb-bf3526e1e4d5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071038Z:5f78bcef-4bf9-489c-9aeb-bf3526e1e4d5', + 'Date', + 'Fri, 19 Nov 2021 07:10:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '186b7439-689d-4612-9c8c-dc20a901e8b9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11431', + 'x-ms-correlation-request-id', + '41bdcf21-fbed-495c-abe0-496a90b3f102', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071038Z:41bdcf21-fbed-495c-abe0-496a90b3f102', + 'Date', + 'Fri, 19 Nov 2021 07:10:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9d26343c-48c5-4bdf-9cf7-88b510a1048f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11430', + 'x-ms-correlation-request-id', + '58e30cea-d8ef-41c6-b0e9-e212eaa39734', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071039Z:58e30cea-d8ef-41c6-b0e9-e212eaa39734', + 'Date', + 'Fri, 19 Nov 2021 07:10:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2b9133bb-afbc-4b01-a52f-503b5f8a8ea5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11429', + 'x-ms-correlation-request-id', + 'cc47323a-db9c-4fa8-84a9-86bcb0e49e4a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071039Z:cc47323a-db9c-4fa8-84a9-86bcb0e49e4a', + 'Date', + 'Fri, 19 Nov 2021 07:10:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fa55faa6-cb06-41a6-b3a6-29e2a614d72d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11428', + 'x-ms-correlation-request-id', + '7c8a28fb-b96e-4ef1-8d32-b00a02d1a595', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071039Z:7c8a28fb-b96e-4ef1-8d32-b00a02d1a595', + 'Date', + 'Fri, 19 Nov 2021 07:10:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0cf24f78-3492-4816-8e4b-aaf2e7d71aa3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11427', + 'x-ms-correlation-request-id', + '09440a15-f4b4-44a2-a677-e0ae79e8b537', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071040Z:09440a15-f4b4-44a2-a677-e0ae79e8b537', + 'Date', + 'Fri, 19 Nov 2021 07:10:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd08919e4-b856-4c16-9f6e-e17989a9349d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11426', + 'x-ms-correlation-request-id', + '2d2599fa-dfcb-459b-a665-f1e86715ee86', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071040Z:2d2599fa-dfcb-459b-a665-f1e86715ee86', + 'Date', + 'Fri, 19 Nov 2021 07:10:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '396c2be8-2945-4494-933b-61a82272cf01', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11425', + 'x-ms-correlation-request-id', + '39f97965-4c99-4e24-8fcf-f5960dbe873d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071040Z:39f97965-4c99-4e24-8fcf-f5960dbe873d', + 'Date', + 'Fri, 19 Nov 2021 07:10:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c552bd5f-86d5-49c1-ae4b-0fc6aa2f9786', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11424', + 'x-ms-correlation-request-id', + '5f6481db-2760-487f-adf6-5d3a24cb4a97', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071040Z:5f6481db-2760-487f-adf6-5d3a24cb4a97', + 'Date', + 'Fri, 19 Nov 2021 07:10:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1009504e-f37c-4ebc-8463-1e8ab9833839', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11423', + 'x-ms-correlation-request-id', + '8339427d-cb4f-4191-881a-9f3b0c01eb15', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071041Z:8339427d-cb4f-4191-881a-9f3b0c01eb15', + 'Date', + 'Fri, 19 Nov 2021 07:10:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '214d4991-ecc9-4d9b-a06c-984f6fc617a0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11422', + 'x-ms-correlation-request-id', + '33453dc5-6100-4148-9375-83df64261891', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071041Z:33453dc5-6100-4148-9375-83df64261891', + 'Date', + 'Fri, 19 Nov 2021 07:10:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'df7bf52f-34ba-46cc-a902-a52fe9532bfa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11421', + 'x-ms-correlation-request-id', + 'a36065f1-53ac-436b-a289-7c5a8ff0c8eb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071041Z:a36065f1-53ac-436b-a289-7c5a8ff0c8eb', + 'Date', + 'Fri, 19 Nov 2021 07:10:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b67e95ca-da25-4ee2-806d-a16b95ec7f8e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11420', + 'x-ms-correlation-request-id', + '45759870-5868-41b9-99c3-e21e2a454e99', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071042Z:45759870-5868-41b9-99c3-e21e2a454e99', + 'Date', + 'Fri, 19 Nov 2021 07:10:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '43e32ea0-be9e-49d5-92ed-4131ce708b73', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11419', + 'x-ms-correlation-request-id', + 'b25e412f-0e2a-4b99-9bd0-ebc06650db74', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071042Z:b25e412f-0e2a-4b99-9bd0-ebc06650db74', + 'Date', + 'Fri, 19 Nov 2021 07:10:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e01ec008-9157-4878-a520-e202d63edb71', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11418', + 'x-ms-correlation-request-id', + '48a265ef-9268-4ca4-a9ea-e08b2b6d5c1c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071042Z:48a265ef-9268-4ca4-a9ea-e08b2b6d5c1c', + 'Date', + 'Fri, 19 Nov 2021 07:10:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd11ed460-b7a5-4e19-930c-6d38ad4f1ab7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11417', + 'x-ms-correlation-request-id', + '8674d71d-d2ff-4691-9030-68817aa40f3c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071043Z:8674d71d-d2ff-4691-9030-68817aa40f3c', + 'Date', + 'Fri, 19 Nov 2021 07:10:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3092145a-b472-45a1-84c3-82cf063bcc44', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11416', + 'x-ms-correlation-request-id', + 'bf6ffbf9-81be-46d6-8030-911ed59d5ff2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071043Z:bf6ffbf9-81be-46d6-8030-911ed59d5ff2', + 'Date', + 'Fri, 19 Nov 2021 07:10:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8bea72d0-3ecf-4450-8c94-50026a0ee15d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11415', + 'x-ms-correlation-request-id', + '76e87eb7-b217-4be9-8c92-6e2c0fdcd656', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071043Z:76e87eb7-b217-4be9-8c92-6e2c0fdcd656', + 'Date', + 'Fri, 19 Nov 2021 07:10:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e765bd2a-56ab-47df-b097-eb99818777aa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11414', + 'x-ms-correlation-request-id', + '10f5b887-a672-406e-94a9-698b66d2bd07', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071043Z:10f5b887-a672-406e-94a9-698b66d2bd07', + 'Date', + 'Fri, 19 Nov 2021 07:10:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dcb9f2b0-cc7c-4799-9b3e-4b37abd0c784', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11413', + 'x-ms-correlation-request-id', + 'b89031b0-246f-49ac-9a4a-f44da5db9d93', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071044Z:b89031b0-246f-49ac-9a4a-f44da5db9d93', + 'Date', + 'Fri, 19 Nov 2021 07:10:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6939b415-4eef-4f97-9fbb-e9717208d2e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11412', + 'x-ms-correlation-request-id', + '0cb72e9e-0b0d-4716-9a49-710ff801e08b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071044Z:0cb72e9e-0b0d-4716-9a49-710ff801e08b', + 'Date', + 'Fri, 19 Nov 2021 07:10:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9f99271a-16a3-41c2-8893-1c57a28b625e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11411', + 'x-ms-correlation-request-id', + '1bf6cef1-48bd-4dd2-8a2a-35b4833fa0f2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071044Z:1bf6cef1-48bd-4dd2-8a2a-35b4833fa0f2', + 'Date', + 'Fri, 19 Nov 2021 07:10:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c1a5bbab-00f4-415b-b847-9ec1f574fbac', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11410', + 'x-ms-correlation-request-id', + '6fbfa30b-961d-4b58-a56c-8028711e7d63', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071045Z:6fbfa30b-961d-4b58-a56c-8028711e7d63', + 'Date', + 'Fri, 19 Nov 2021 07:10:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8f4bc8c6-e48b-4614-a34b-73e365071b78', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11409', + 'x-ms-correlation-request-id', + 'd22d1ffa-d306-4ed0-877a-4c617fe5fe89', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071045Z:d22d1ffa-d306-4ed0-877a-4c617fe5fe89', + 'Date', + 'Fri, 19 Nov 2021 07:10:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c03fc702-5ee6-4ee3-b90e-89036a6b3d20', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11408', + 'x-ms-correlation-request-id', + '066eb82e-27c8-4f0f-a9c5-cc4ed03ad752', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071045Z:066eb82e-27c8-4f0f-a9c5-cc4ed03ad752', + 'Date', + 'Fri, 19 Nov 2021 07:10:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a548de01-9ca8-4a00-bd11-f8e9618ec69b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11407', + 'x-ms-correlation-request-id', + '722e4ae4-90be-4d42-b15f-1eef84a4fce2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071046Z:722e4ae4-90be-4d42-b15f-1eef84a4fce2', + 'Date', + 'Fri, 19 Nov 2021 07:10:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '245fc212-28a8-42e2-990c-78f28f003b23', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11406', + 'x-ms-correlation-request-id', + '789bbd89-35c6-4aec-92f7-d700b6057d1a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071046Z:789bbd89-35c6-4aec-92f7-d700b6057d1a', + 'Date', + 'Fri, 19 Nov 2021 07:10:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '24194e23-30c7-4423-a351-d22ca2f55f27', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11405', + 'x-ms-correlation-request-id', + 'f2609223-3909-4e7a-b71b-362be0b07648', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071046Z:f2609223-3909-4e7a-b71b-362be0b07648', + 'Date', + 'Fri, 19 Nov 2021 07:10:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '71e05da6-c8b0-462c-9a96-068dccff304c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11404', + 'x-ms-correlation-request-id', + '00517a06-98ca-4e8f-aeb5-755d560983a7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071047Z:00517a06-98ca-4e8f-aeb5-755d560983a7', + 'Date', + 'Fri, 19 Nov 2021 07:10:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a801a8d4-868a-491a-90f7-0c7476a80048', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11403', + 'x-ms-correlation-request-id', + 'b9694913-eaa0-4571-b615-8805ba703c0a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071047Z:b9694913-eaa0-4571-b615-8805ba703c0a', + 'Date', + 'Fri, 19 Nov 2021 07:10:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5226019c-4a73-4b0b-8af4-6e4859632294', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11402', + 'x-ms-correlation-request-id', + 'b4479aee-ca92-42a4-ab79-722599e9d263', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071047Z:b4479aee-ca92-42a4-ab79-722599e9d263', + 'Date', + 'Fri, 19 Nov 2021 07:10:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0dd0023a-6725-46b3-b9c9-b83f9a01962e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11401', + 'x-ms-correlation-request-id', + '20c66c88-6116-45cc-aaa2-bb6ab07dfe5d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071048Z:20c66c88-6116-45cc-aaa2-bb6ab07dfe5d', + 'Date', + 'Fri, 19 Nov 2021 07:10:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8feb046a-a88a-4203-9d3c-6e5964a4ce9f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11400', + 'x-ms-correlation-request-id', + 'b5837b01-a442-4392-a4da-7eb494a5b357', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071048Z:b5837b01-a442-4392-a4da-7eb494a5b357', + 'Date', + 'Fri, 19 Nov 2021 07:10:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1447e737-b819-493d-97aa-4e358b83428c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11399', + 'x-ms-correlation-request-id', + '2801ee24-77ca-4e60-a85e-1f2094b6a31f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071048Z:2801ee24-77ca-4e60-a85e-1f2094b6a31f', + 'Date', + 'Fri, 19 Nov 2021 07:10:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1d64efc2-79c1-43c0-9478-b68e59400a84', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11398', + 'x-ms-correlation-request-id', + '9e3f1bfc-1f83-4d54-b036-ee9ac4cda29e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071048Z:9e3f1bfc-1f83-4d54-b036-ee9ac4cda29e', + 'Date', + 'Fri, 19 Nov 2021 07:10:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4265b1cb-86dd-4167-a711-b899952d2d17', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11397', + 'x-ms-correlation-request-id', + '667cf47a-0585-4f5f-9527-6ffafe295745', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071049Z:667cf47a-0585-4f5f-9527-6ffafe295745', + 'Date', + 'Fri, 19 Nov 2021 07:10:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2ad3fc1b-f70e-447b-9465-a19152a0024c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11396', + 'x-ms-correlation-request-id', + '768d2486-71da-4b53-9d82-3022e5409644', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071049Z:768d2486-71da-4b53-9d82-3022e5409644', + 'Date', + 'Fri, 19 Nov 2021 07:10:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e509d0a6-f24d-42b2-b5da-c1c564780e74', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11395', + 'x-ms-correlation-request-id', + '5baca856-763f-4fdd-bb2d-5666de6afd37', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071049Z:5baca856-763f-4fdd-bb2d-5666de6afd37', + 'Date', + 'Fri, 19 Nov 2021 07:10:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'de773682-d49b-4bab-b728-51bdacbd4b3b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11394', + 'x-ms-correlation-request-id', + '94af227b-657b-48ed-a1e9-737bbe599b00', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071050Z:94af227b-657b-48ed-a1e9-737bbe599b00', + 'Date', + 'Fri, 19 Nov 2021 07:10:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '70e49ad3-c6cd-4d46-b26a-42b3bcb02d31', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11393', + 'x-ms-correlation-request-id', + '79a1c892-e43c-4ca6-8acd-91eac82c6b92', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071050Z:79a1c892-e43c-4ca6-8acd-91eac82c6b92', + 'Date', + 'Fri, 19 Nov 2021 07:10:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '92482ba4-329b-4eb7-928c-6c5f5631977f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11392', + 'x-ms-correlation-request-id', + '36b1eced-ad28-48f3-868c-d28a8c20a005', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071050Z:36b1eced-ad28-48f3-868c-d28a8c20a005', + 'Date', + 'Fri, 19 Nov 2021 07:10:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '576e2a2b-1e4d-41d7-aa6a-cb02ad777eac', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11391', + 'x-ms-correlation-request-id', + 'cfe6806f-1241-4a2f-8fd6-892703d0c952', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071051Z:cfe6806f-1241-4a2f-8fd6-892703d0c952', + 'Date', + 'Fri, 19 Nov 2021 07:10:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '24f47013-703d-4069-91fc-ff4bf8c65056', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11390', + 'x-ms-correlation-request-id', + '3c7d45a7-88ab-4744-8952-4b391f0473e1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071051Z:3c7d45a7-88ab-4744-8952-4b391f0473e1', + 'Date', + 'Fri, 19 Nov 2021 07:10:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '15632627-e384-40cc-94a5-baeb4dc94c23', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11389', + 'x-ms-correlation-request-id', + '709f812e-5670-4b65-a442-a2c7696d4b51', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071051Z:709f812e-5670-4b65-a442-a2c7696d4b51', + 'Date', + 'Fri, 19 Nov 2021 07:10:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e2a0a040-9099-4e0b-8581-3981595f1075', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11388', + 'x-ms-correlation-request-id', + 'd31e2724-8882-4809-856f-98adb45e31d7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071051Z:d31e2724-8882-4809-856f-98adb45e31d7', + 'Date', + 'Fri, 19 Nov 2021 07:10:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '612456a6-3b35-4414-a385-1dc33ec5788c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11387', + 'x-ms-correlation-request-id', + '0dfa124a-2b79-41a3-9278-4dff01e90ec1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071052Z:0dfa124a-2b79-41a3-9278-4dff01e90ec1', + 'Date', + 'Fri, 19 Nov 2021 07:10:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9cb53229-d95e-4440-8d71-fb688d2929de', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11386', + 'x-ms-correlation-request-id', + 'f2cbd569-9c26-43fd-9d29-fdd6650f08d4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071052Z:f2cbd569-9c26-43fd-9d29-fdd6650f08d4', + 'Date', + 'Fri, 19 Nov 2021 07:10:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '600493cf-27c8-4732-a917-7549e4861d73', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11385', + 'x-ms-correlation-request-id', + '018ae132-39ae-45a2-be7e-c85ff25398f5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071052Z:018ae132-39ae-45a2-be7e-c85ff25398f5', + 'Date', + 'Fri, 19 Nov 2021 07:10:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '85b1e973-02ca-4dc6-8646-978ae5451e49', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11384', + 'x-ms-correlation-request-id', + 'f2b0a950-896d-47d7-845e-3d7c479352f1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071053Z:f2b0a950-896d-47d7-845e-3d7c479352f1', + 'Date', + 'Fri, 19 Nov 2021 07:10:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3ea5d3e8-8808-4c6e-9d3a-c3d063e9c0e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11383', + 'x-ms-correlation-request-id', + '9e3af0ec-cbea-426b-8d07-9bd9fd6622cc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071053Z:9e3af0ec-cbea-426b-8d07-9bd9fd6622cc', + 'Date', + 'Fri, 19 Nov 2021 07:10:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6bd783c4-9062-436a-834d-dccd506e2062', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11382', + 'x-ms-correlation-request-id', + 'f44309a0-a8de-42d9-8f1c-627a566fa7c7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071053Z:f44309a0-a8de-42d9-8f1c-627a566fa7c7', + 'Date', + 'Fri, 19 Nov 2021 07:10:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '89c7a1b1-6013-4358-90da-f9887d12cb95', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11381', + 'x-ms-correlation-request-id', + 'e389b4aa-d508-4025-9ff0-67051e6be37f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071054Z:e389b4aa-d508-4025-9ff0-67051e6be37f', + 'Date', + 'Fri, 19 Nov 2021 07:10:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5c0be426-c06e-4f4c-a5f4-6e27e55f050f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11380', + 'x-ms-correlation-request-id', + 'c5e83d04-f40e-4ea4-8f5f-dec56040c20a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071054Z:c5e83d04-f40e-4ea4-8f5f-dec56040c20a', + 'Date', + 'Fri, 19 Nov 2021 07:10:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9d63d574-7b22-46e1-8fcf-e732f80e6570', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11379', + 'x-ms-correlation-request-id', + 'ac247781-e2cd-4bbc-9eb1-6f523fd1c4dc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071054Z:ac247781-e2cd-4bbc-9eb1-6f523fd1c4dc', + 'Date', + 'Fri, 19 Nov 2021 07:10:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'edf9e192-759e-46ba-a759-79659bc06824', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11378', + 'x-ms-correlation-request-id', + '003c57f9-abe8-4148-b186-8d92f419295c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071054Z:003c57f9-abe8-4148-b186-8d92f419295c', + 'Date', + 'Fri, 19 Nov 2021 07:10:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd4264ee5-74a7-49a9-9b05-4d9d3365e82f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11377', + 'x-ms-correlation-request-id', + 'cda1b564-e530-4e77-ba90-5dbdfc9780bf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071055Z:cda1b564-e530-4e77-ba90-5dbdfc9780bf', + 'Date', + 'Fri, 19 Nov 2021 07:10:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '30760bde-43e8-46d0-ad37-c48b185138fc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11376', + 'x-ms-correlation-request-id', + 'fca60b40-a592-435a-b5cb-f54e64d6cac7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071055Z:fca60b40-a592-435a-b5cb-f54e64d6cac7', + 'Date', + 'Fri, 19 Nov 2021 07:10:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1cf1ec33-0d5b-4d82-8c41-33ce26601d77', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11375', + 'x-ms-correlation-request-id', + 'fdf44514-bbbd-44a1-8c27-54e3789edc1e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071055Z:fdf44514-bbbd-44a1-8c27-54e3789edc1e', + 'Date', + 'Fri, 19 Nov 2021 07:10:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c6526e1d-c33d-4ceb-980f-2cfbb12e6538', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11374', + 'x-ms-correlation-request-id', + 'ba7e59ab-cc55-4a6e-9ac4-3c01504e851b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071056Z:ba7e59ab-cc55-4a6e-9ac4-3c01504e851b', + 'Date', + 'Fri, 19 Nov 2021 07:10:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2993ae76-d766-44c8-9d52-22d272eb54fd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11373', + 'x-ms-correlation-request-id', + 'ab6dd428-c4a8-4efa-9c00-a19d0329378e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071056Z:ab6dd428-c4a8-4efa-9c00-a19d0329378e', + 'Date', + 'Fri, 19 Nov 2021 07:10:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2b776aa4-2ea4-4d42-9b43-577e36431db4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11372', + 'x-ms-correlation-request-id', + 'c1d5e17a-ce8f-407c-b745-70f7dc406f5d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071056Z:c1d5e17a-ce8f-407c-b745-70f7dc406f5d', + 'Date', + 'Fri, 19 Nov 2021 07:10:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '31244b87-ac15-496d-8a54-27bdb15aff6b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11371', + 'x-ms-correlation-request-id', + '45dcb0a2-86c4-4537-87c0-be51f2ae751c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071057Z:45dcb0a2-86c4-4537-87c0-be51f2ae751c', + 'Date', + 'Fri, 19 Nov 2021 07:10:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f0ec9976-e0bc-45f7-948e-1ade41c5ca49', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11370', + 'x-ms-correlation-request-id', + 'e0dda69a-64be-4166-885e-453dfe2e5c62', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071057Z:e0dda69a-64be-4166-885e-453dfe2e5c62', + 'Date', + 'Fri, 19 Nov 2021 07:10:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '772e1ff9-9925-4a5c-b8a8-02ff34925dff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11369', + 'x-ms-correlation-request-id', + '8bcb4761-c5fd-4418-83e4-256c4be11c9d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071057Z:8bcb4761-c5fd-4418-83e4-256c4be11c9d', + 'Date', + 'Fri, 19 Nov 2021 07:10:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2009e7fa-6e45-44de-895e-76a9892e9b09', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11368', + 'x-ms-correlation-request-id', + 'f69c0dad-d26e-4bfd-9da5-8bc4ab163bbd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071058Z:f69c0dad-d26e-4bfd-9da5-8bc4ab163bbd', + 'Date', + 'Fri, 19 Nov 2021 07:10:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1ef0b364-87e7-4c21-aa9a-0b50b69e0660', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11367', + 'x-ms-correlation-request-id', + 'abd53a4c-c8f3-4c40-920c-62ea49547559', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071058Z:abd53a4c-c8f3-4c40-920c-62ea49547559', + 'Date', + 'Fri, 19 Nov 2021 07:10:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '978a20bc-2342-4597-8d9f-46e6e615cec4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11366', + 'x-ms-correlation-request-id', + '57c2034c-06f5-477c-8db3-fc2a2409790a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071058Z:57c2034c-06f5-477c-8db3-fc2a2409790a', + 'Date', + 'Fri, 19 Nov 2021 07:10:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '85f2eaa8-cf86-4536-85da-d603d22d20ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11365', + 'x-ms-correlation-request-id', + '30b96343-1604-4271-b7c7-6ac1478368eb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071059Z:30b96343-1604-4271-b7c7-6ac1478368eb', + 'Date', + 'Fri, 19 Nov 2021 07:10:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '29d1e549-dd42-4c5c-9fa2-b7e7de88d366', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11364', + 'x-ms-correlation-request-id', + '33e87e9b-1ff4-427e-92a6-4d035c47b901', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071059Z:33e87e9b-1ff4-427e-92a6-4d035c47b901', + 'Date', + 'Fri, 19 Nov 2021 07:10:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6582254d-0a2d-4bbd-8b6e-fbe8f439d214', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11363', + 'x-ms-correlation-request-id', + '9f780265-98e6-4b1a-873d-2ffa7a9ecd9e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071059Z:9f780265-98e6-4b1a-873d-2ffa7a9ecd9e', + 'Date', + 'Fri, 19 Nov 2021 07:10:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd41988a1-abc5-4c16-b601-8ae8e880c020', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11362', + 'x-ms-correlation-request-id', + '2f4eb94e-5d6c-4f5d-8ea5-8d3f90eda237', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071100Z:2f4eb94e-5d6c-4f5d-8ea5-8d3f90eda237', + 'Date', + 'Fri, 19 Nov 2021 07:10:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '90bf38d7-55be-497e-82c6-0ffd7ea75cff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11361', + 'x-ms-correlation-request-id', + 'affb307a-6fec-483f-bab4-4afa34a97dfc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071100Z:affb307a-6fec-483f-bab4-4afa34a97dfc', + 'Date', + 'Fri, 19 Nov 2021 07:10:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd7bff320-daee-46eb-aa6f-87224fe9af80', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11360', + 'x-ms-correlation-request-id', + 'cbb73bd7-fe14-4ee4-88c4-fffd54eef05b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071100Z:cbb73bd7-fe14-4ee4-88c4-fffd54eef05b', + 'Date', + 'Fri, 19 Nov 2021 07:10:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd28d50f0-9093-46a6-9e37-8238eaf62444', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11359', + 'x-ms-correlation-request-id', + 'ec442175-57ef-4fde-a271-02a9780896e5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071100Z:ec442175-57ef-4fde-a271-02a9780896e5', + 'Date', + 'Fri, 19 Nov 2021 07:11:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cfd64ed7-016a-43db-a488-3be9d7230821', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11358', + 'x-ms-correlation-request-id', + 'fe1bc15e-e07b-45a1-a48c-ae6133235002', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071101Z:fe1bc15e-e07b-45a1-a48c-ae6133235002', + 'Date', + 'Fri, 19 Nov 2021 07:11:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '38ad92e9-f52f-41d4-94ee-561e08419671', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11357', + 'x-ms-correlation-request-id', + '18e1e415-2944-4b77-94c6-d29f1600c7a9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071101Z:18e1e415-2944-4b77-94c6-d29f1600c7a9', + 'Date', + 'Fri, 19 Nov 2021 07:11:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '32a099d5-475a-46af-96a6-0c86a6a06da8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11356', + 'x-ms-correlation-request-id', + '57968a36-8f26-4e6a-94cf-123535dab4a2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071101Z:57968a36-8f26-4e6a-94cf-123535dab4a2', + 'Date', + 'Fri, 19 Nov 2021 07:11:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7d83559e-67bb-445d-b22c-03f2942904c0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11355', + 'x-ms-correlation-request-id', + '12a836af-52cd-49c2-9ce8-aa21be8a7df8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071102Z:12a836af-52cd-49c2-9ce8-aa21be8a7df8', + 'Date', + 'Fri, 19 Nov 2021 07:11:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7acf576f-ea97-4252-9212-13c52ff14fd2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11354', + 'x-ms-correlation-request-id', + '1bf10e58-37d7-45d1-a07a-d46b47b2e039', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071102Z:1bf10e58-37d7-45d1-a07a-d46b47b2e039', + 'Date', + 'Fri, 19 Nov 2021 07:11:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '16907069-46de-455c-b18d-413b0e3b45b6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11353', + 'x-ms-correlation-request-id', + 'a6a129e5-8c64-421f-b36e-8d3c21e9b2d8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071102Z:a6a129e5-8c64-421f-b36e-8d3c21e9b2d8', + 'Date', + 'Fri, 19 Nov 2021 07:11:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cc03bdf9-d07d-4bf1-b39e-767e53285cbe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11352', + 'x-ms-correlation-request-id', + '42929286-c3ea-4faa-9301-be7b985384e8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071103Z:42929286-c3ea-4faa-9301-be7b985384e8', + 'Date', + 'Fri, 19 Nov 2021 07:11:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd64acbf7-5654-460f-aad2-6a862bf6ad89', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11351', + 'x-ms-correlation-request-id', + '9297aad2-e2a0-4c68-b83e-3d8e11b22823', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071103Z:9297aad2-e2a0-4c68-b83e-3d8e11b22823', + 'Date', + 'Fri, 19 Nov 2021 07:11:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b287d9f6-3cf3-4b90-a4cf-8ceba786dcbf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11350', + 'x-ms-correlation-request-id', + '67563466-e518-4ba2-a377-1f4c78543bc6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071103Z:67563466-e518-4ba2-a377-1f4c78543bc6', + 'Date', + 'Fri, 19 Nov 2021 07:11:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b012d55e-8e3d-48f5-b719-32cb1158e5ec', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11349', + 'x-ms-correlation-request-id', + 'dd8733fb-67d5-4938-89b1-883f35cd09d7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071104Z:dd8733fb-67d5-4938-89b1-883f35cd09d7', + 'Date', + 'Fri, 19 Nov 2021 07:11:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd734e681-e81a-4c75-8d51-fded823496c3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11348', + 'x-ms-correlation-request-id', + 'debfe435-851e-470d-8b48-6172a907416e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071104Z:debfe435-851e-470d-8b48-6172a907416e', + 'Date', + 'Fri, 19 Nov 2021 07:11:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4c508ed1-5ca4-44cb-94ee-80e42f72bef2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11347', + 'x-ms-correlation-request-id', + '9ea14ed3-de2e-4f8c-a07d-defaadcd880c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071104Z:9ea14ed3-de2e-4f8c-a07d-defaadcd880c', + 'Date', + 'Fri, 19 Nov 2021 07:11:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b598eafb-0856-45d9-9b56-e4b06a240bd6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11346', + 'x-ms-correlation-request-id', + 'f72ce377-020d-45fe-a82f-639c1e283599', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071104Z:f72ce377-020d-45fe-a82f-639c1e283599', + 'Date', + 'Fri, 19 Nov 2021 07:11:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e94f8a21-6885-4fca-83fa-025fd605141e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11345', + 'x-ms-correlation-request-id', + '7314a134-4faf-463c-b511-46ac9591d397', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071105Z:7314a134-4faf-463c-b511-46ac9591d397', + 'Date', + 'Fri, 19 Nov 2021 07:11:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2d06286f-52dd-4cfc-b8da-a93775f65c94', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11344', + 'x-ms-correlation-request-id', + 'fbf8a27f-c385-4b83-bafb-3846cc711dc5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071105Z:fbf8a27f-c385-4b83-bafb-3846cc711dc5', + 'Date', + 'Fri, 19 Nov 2021 07:11:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '92652292-1b78-4c01-8064-3a7dcf4fd308', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11343', + 'x-ms-correlation-request-id', + '60b7f597-8a72-4d57-85be-9ebbc406252f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071105Z:60b7f597-8a72-4d57-85be-9ebbc406252f', + 'Date', + 'Fri, 19 Nov 2021 07:11:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '315de2fe-a261-4adf-a8d1-d05bf4a6334d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11342', + 'x-ms-correlation-request-id', + 'dd332397-9520-4682-9618-7a97ec6c3004', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071106Z:dd332397-9520-4682-9618-7a97ec6c3004', + 'Date', + 'Fri, 19 Nov 2021 07:11:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '67031477-b650-4851-bb02-949bf5edadb6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11341', + 'x-ms-correlation-request-id', + 'afc135b9-6fa3-4893-8a9d-57fa686aa317', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071106Z:afc135b9-6fa3-4893-8a9d-57fa686aa317', + 'Date', + 'Fri, 19 Nov 2021 07:11:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ac71ba7d-4ce3-4820-a0d3-46fde6cf4f1f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11340', + 'x-ms-correlation-request-id', + '081eb07b-6c8f-4bff-baac-06bae109d67f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071106Z:081eb07b-6c8f-4bff-baac-06bae109d67f', + 'Date', + 'Fri, 19 Nov 2021 07:11:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91a64d5f-4a6a-4cd4-8132-604bb8d6e00a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11339', + 'x-ms-correlation-request-id', + '2fa56e4c-15d9-4916-9b0d-719399ae261b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071107Z:2fa56e4c-15d9-4916-9b0d-719399ae261b', + 'Date', + 'Fri, 19 Nov 2021 07:11:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dce3aec4-8a7e-4b2a-b5a0-b33199fcc68b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11338', + 'x-ms-correlation-request-id', + '17ffda20-5573-4c14-9a51-0d9249ca1b8f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071107Z:17ffda20-5573-4c14-9a51-0d9249ca1b8f', + 'Date', + 'Fri, 19 Nov 2021 07:11:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3f027196-8005-4ccb-8781-f8246a43e2c6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11337', + 'x-ms-correlation-request-id', + '8e03dba4-791c-4d87-b74c-2112d8659595', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071107Z:8e03dba4-791c-4d87-b74c-2112d8659595', + 'Date', + 'Fri, 19 Nov 2021 07:11:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5ca908bd-5a29-4b36-9074-0d207d584493', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11336', + 'x-ms-correlation-request-id', + 'b71ed20c-3615-43b8-af4f-6d6f44a12164', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071107Z:b71ed20c-3615-43b8-af4f-6d6f44a12164', + 'Date', + 'Fri, 19 Nov 2021 07:11:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c263afc9-1cd3-4864-b715-92d391933312', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11335', + 'x-ms-correlation-request-id', + 'e77b7478-5f2c-46b8-b4ec-e8db91477c0a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071108Z:e77b7478-5f2c-46b8-b4ec-e8db91477c0a', + 'Date', + 'Fri, 19 Nov 2021 07:11:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ab7928c3-a6fa-4586-a212-ac6564fa2dad', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11334', + 'x-ms-correlation-request-id', + 'f7e72d65-36e3-4707-9db3-5184515b5ad3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071108Z:f7e72d65-36e3-4707-9db3-5184515b5ad3', + 'Date', + 'Fri, 19 Nov 2021 07:11:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd089eac3-ed85-4d00-add2-8a1e2cc9d2af', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11333', + 'x-ms-correlation-request-id', + '86d74f64-53b1-4e6b-a90b-911054c36378', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071108Z:86d74f64-53b1-4e6b-a90b-911054c36378', + 'Date', + 'Fri, 19 Nov 2021 07:11:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0f4159bb-eac1-4147-8d27-9e90b26ae909', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11332', + 'x-ms-correlation-request-id', + '5142bc6c-e467-44c1-ab2e-49c73fc67a49', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071109Z:5142bc6c-e467-44c1-ab2e-49c73fc67a49', + 'Date', + 'Fri, 19 Nov 2021 07:11:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '056a8073-432c-4810-80ed-e46ba6fe956c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11331', + 'x-ms-correlation-request-id', + 'ae337a5b-e649-4acb-b50f-d2b0aa12bf09', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071109Z:ae337a5b-e649-4acb-b50f-d2b0aa12bf09', + 'Date', + 'Fri, 19 Nov 2021 07:11:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cf719907-81d8-4a06-b16d-cb817b48bc8b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11330', + 'x-ms-correlation-request-id', + '86138ee2-4f54-4dea-8954-a423fc6ae89e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071109Z:86138ee2-4f54-4dea-8954-a423fc6ae89e', + 'Date', + 'Fri, 19 Nov 2021 07:11:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '56fe94ec-f3d0-4d9c-84af-bb0b605ccf44', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11329', + 'x-ms-correlation-request-id', + '41b333c6-0855-4e82-a13e-ede00508b9e7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071110Z:41b333c6-0855-4e82-a13e-ede00508b9e7', + 'Date', + 'Fri, 19 Nov 2021 07:11:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd11e05cc-3947-4bd3-a1a8-47802f134b0e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11328', + 'x-ms-correlation-request-id', + '91698108-bae5-4a63-a5bd-526a530dd089', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071110Z:91698108-bae5-4a63-a5bd-526a530dd089', + 'Date', + 'Fri, 19 Nov 2021 07:11:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ef12ccf2-2159-4351-89fa-a6b47f8a0a4b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11327', + 'x-ms-correlation-request-id', + '0b9f278a-6f4d-4ec8-96a6-88134b3d835e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071110Z:0b9f278a-6f4d-4ec8-96a6-88134b3d835e', + 'Date', + 'Fri, 19 Nov 2021 07:11:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4853dd69-8b4d-4f7f-afed-e507d687bf1e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11326', + 'x-ms-correlation-request-id', + '453ef56f-2a68-46a9-bc63-71746b7052ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071110Z:453ef56f-2a68-46a9-bc63-71746b7052ca', + 'Date', + 'Fri, 19 Nov 2021 07:11:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e7d7be7f-2dff-4b8d-b921-b77247475cff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11325', + 'x-ms-correlation-request-id', + 'd3bb58f7-a6f7-490c-aa4b-fb54c35fb5a0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071111Z:d3bb58f7-a6f7-490c-aa4b-fb54c35fb5a0', + 'Date', + 'Fri, 19 Nov 2021 07:11:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0bae64ac-ffa2-4dcc-b244-26b102c2de4d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11324', + 'x-ms-correlation-request-id', + 'e2c40da2-bc38-4603-85db-814a3d57d9ef', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071111Z:e2c40da2-bc38-4603-85db-814a3d57d9ef', + 'Date', + 'Fri, 19 Nov 2021 07:11:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0ef3008b-02be-468b-9866-4e0506db570a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11323', + 'x-ms-correlation-request-id', + '3f6be49f-8127-498d-90a3-0e7c54a3d076', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071111Z:3f6be49f-8127-498d-90a3-0e7c54a3d076', + 'Date', + 'Fri, 19 Nov 2021 07:11:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8cae6197-08ac-4930-81a0-2701c300bc98', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11322', + 'x-ms-correlation-request-id', + 'c74c8570-b928-4abd-802f-b4f5996c98fb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071112Z:c74c8570-b928-4abd-802f-b4f5996c98fb', + 'Date', + 'Fri, 19 Nov 2021 07:11:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '95d80588-1c3e-4b12-a40f-fe1cc89082e3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11321', + 'x-ms-correlation-request-id', + '33307778-8c57-4a77-8a08-bcae0f9202a4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071112Z:33307778-8c57-4a77-8a08-bcae0f9202a4', + 'Date', + 'Fri, 19 Nov 2021 07:11:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2e88f420-f53b-4ad9-9307-781dc042858b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11320', + 'x-ms-correlation-request-id', + 'df4719d7-917d-456e-9275-5cec521e2805', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071112Z:df4719d7-917d-456e-9275-5cec521e2805', + 'Date', + 'Fri, 19 Nov 2021 07:11:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '470cd55d-a71d-48fe-8536-7ba331211d04', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11319', + 'x-ms-correlation-request-id', + '5c05b51b-6bff-44ee-ab08-96e4e9699d78', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071113Z:5c05b51b-6bff-44ee-ab08-96e4e9699d78', + 'Date', + 'Fri, 19 Nov 2021 07:11:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91a2f08b-ac93-4cbb-9b2d-ad0caa5e3c32', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11318', + 'x-ms-correlation-request-id', + '2099b2a5-836f-48f6-adb2-e900208a274c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071113Z:2099b2a5-836f-48f6-adb2-e900208a274c', + 'Date', + 'Fri, 19 Nov 2021 07:11:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '68f70c5b-2cf8-41ee-9b63-c040545621b0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11317', + 'x-ms-correlation-request-id', + 'df69b59e-b87b-4151-b412-c76cc4902fa4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071113Z:df69b59e-b87b-4151-b412-c76cc4902fa4', + 'Date', + 'Fri, 19 Nov 2021 07:11:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9e9316d0-120c-451f-92e8-e3fca0fadf90', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11316', + 'x-ms-correlation-request-id', + '414b35d2-e579-4702-9173-38ba7464c3f9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071113Z:414b35d2-e579-4702-9173-38ba7464c3f9', + 'Date', + 'Fri, 19 Nov 2021 07:11:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9dc3b9fd-ef42-4d62-a134-40b475a8049d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11315', + 'x-ms-correlation-request-id', + 'd5acbec8-88fa-4c75-9a80-ac7776c78b13', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071114Z:d5acbec8-88fa-4c75-9a80-ac7776c78b13', + 'Date', + 'Fri, 19 Nov 2021 07:11:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5a2f9785-286f-48fd-a10b-81baefcee3eb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11314', + 'x-ms-correlation-request-id', + '794c2bf1-d525-4dc5-84a2-03d29887b8b7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071114Z:794c2bf1-d525-4dc5-84a2-03d29887b8b7', + 'Date', + 'Fri, 19 Nov 2021 07:11:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b67117c6-f372-48f6-bd5d-9290ee147e92', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11313', + 'x-ms-correlation-request-id', + '7bf90ebe-4dee-40f8-90c1-b9947a877884', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071114Z:7bf90ebe-4dee-40f8-90c1-b9947a877884', + 'Date', + 'Fri, 19 Nov 2021 07:11:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ea8da1c9-59b0-41b2-9501-e06c11e1eda5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11312', + 'x-ms-correlation-request-id', + '383b0431-2d77-4db6-bbd2-e1f7b5b19fbf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071115Z:383b0431-2d77-4db6-bbd2-e1f7b5b19fbf', + 'Date', + 'Fri, 19 Nov 2021 07:11:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f64f20f6-36ae-44f8-8302-f2409a52cfb8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11311', + 'x-ms-correlation-request-id', + 'a2a07187-c708-428c-86f8-8d004dc61953', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071115Z:a2a07187-c708-428c-86f8-8d004dc61953', + 'Date', + 'Fri, 19 Nov 2021 07:11:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '82879383-7634-4bca-b5e0-fa9a428b8ee9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11310', + 'x-ms-correlation-request-id', + '3ba67cb8-ff55-4c73-a192-be17041ca81d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071115Z:3ba67cb8-ff55-4c73-a192-be17041ca81d', + 'Date', + 'Fri, 19 Nov 2021 07:11:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '60642ba5-d72e-4a2e-9911-22d26e5e92ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11309', + 'x-ms-correlation-request-id', + '49bc0a22-c549-499d-b53e-7c0ad6a7b3f0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071116Z:49bc0a22-c549-499d-b53e-7c0ad6a7b3f0', + 'Date', + 'Fri, 19 Nov 2021 07:11:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0ac77ba8-9654-48de-969f-5c03ebb4382c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11308', + 'x-ms-correlation-request-id', + 'b8a4e275-0014-415f-a79e-ee92798ee6c6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071116Z:b8a4e275-0014-415f-a79e-ee92798ee6c6', + 'Date', + 'Fri, 19 Nov 2021 07:11:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '48617417-1dfc-4d76-83eb-7d7a5c747a63', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11307', + 'x-ms-correlation-request-id', + '321c64c4-0ccb-45b6-a883-16faebfbc1ab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071116Z:321c64c4-0ccb-45b6-a883-16faebfbc1ab', + 'Date', + 'Fri, 19 Nov 2021 07:11:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '63147562-4108-4e8d-a0ad-8b3ea741e5ef', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11306', + 'x-ms-correlation-request-id', + '52c63cbf-9d63-4b7f-8efe-26152b7dcf36', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071116Z:52c63cbf-9d63-4b7f-8efe-26152b7dcf36', + 'Date', + 'Fri, 19 Nov 2021 07:11:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b9964ade-76b7-4e52-ab7d-f38cd87d3966', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11305', + 'x-ms-correlation-request-id', + 'a30c170d-0037-4663-bf73-d044708842ac', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071117Z:a30c170d-0037-4663-bf73-d044708842ac', + 'Date', + 'Fri, 19 Nov 2021 07:11:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '10b597a0-0017-44be-b06a-bf72a3e91782', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11304', + 'x-ms-correlation-request-id', + 'd83fa64c-9772-496d-9f55-91d2c458b183', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071117Z:d83fa64c-9772-496d-9f55-91d2c458b183', + 'Date', + 'Fri, 19 Nov 2021 07:11:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '89d8a9f0-fc0d-4ce4-849e-0dfc8d14fae8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11303', + 'x-ms-correlation-request-id', + '36b81cfe-5c7a-42cc-964e-ba42b4c85d5e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071117Z:36b81cfe-5c7a-42cc-964e-ba42b4c85d5e', + 'Date', + 'Fri, 19 Nov 2021 07:11:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eebbc199-e960-4715-95ea-ad521bcab606', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11302', + 'x-ms-correlation-request-id', + '091aea49-31f2-4129-b9a5-49095a3adb1a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071118Z:091aea49-31f2-4129-b9a5-49095a3adb1a', + 'Date', + 'Fri, 19 Nov 2021 07:11:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6a7b9648-6567-46d6-a549-013bb4073d95', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11301', + 'x-ms-correlation-request-id', + 'a7a73dc2-dbde-458e-b9e5-7aa53931b106', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071118Z:a7a73dc2-dbde-458e-b9e5-7aa53931b106', + 'Date', + 'Fri, 19 Nov 2021 07:11:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c7e1e41c-e4c4-49d7-a0ef-21d506b32f7b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11300', + 'x-ms-correlation-request-id', + 'd7c7029f-1344-4f9c-9fe4-481016233217', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071118Z:d7c7029f-1344-4f9c-9fe4-481016233217', + 'Date', + 'Fri, 19 Nov 2021 07:11:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4643d9a9-4fd0-4365-b4b9-7cf9c1cb161f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11299', + 'x-ms-correlation-request-id', + '1e9003fc-bd15-4f61-941d-48f507c31576', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071119Z:1e9003fc-bd15-4f61-941d-48f507c31576', + 'Date', + 'Fri, 19 Nov 2021 07:11:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c6dd73a3-d27a-490a-8420-6464099e9041', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11298', + 'x-ms-correlation-request-id', + 'b1bf5be8-3780-4c4c-9cd0-78afc286d5e0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071119Z:b1bf5be8-3780-4c4c-9cd0-78afc286d5e0', + 'Date', + 'Fri, 19 Nov 2021 07:11:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd3b93c8c-e31c-4436-9a7e-f97ab8a3dd13', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11297', + 'x-ms-correlation-request-id', + '45e08171-ab6c-4f29-a18c-9e724c6d7005', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071119Z:45e08171-ab6c-4f29-a18c-9e724c6d7005', + 'Date', + 'Fri, 19 Nov 2021 07:11:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7288ed46-67a1-454d-be11-c19c72f3d5e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11296', + 'x-ms-correlation-request-id', + '09986450-3336-4e9d-9f5a-eddd78413cb1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071119Z:09986450-3336-4e9d-9f5a-eddd78413cb1', + 'Date', + 'Fri, 19 Nov 2021 07:11:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '11b15697-732a-4073-9f9a-82b3f4b5da8e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11295', + 'x-ms-correlation-request-id', + '899844ce-acb9-4372-90fd-b63841c326d8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071120Z:899844ce-acb9-4372-90fd-b63841c326d8', + 'Date', + 'Fri, 19 Nov 2021 07:11:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7155ac50-dd3f-49b5-b0f3-9f4acd6c5de5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11294', + 'x-ms-correlation-request-id', + '38457f64-11a3-483f-81b7-b582dea82499', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071120Z:38457f64-11a3-483f-81b7-b582dea82499', + 'Date', + 'Fri, 19 Nov 2021 07:11:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4f804a48-1530-4856-a57b-c411dbcaa078', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11293', + 'x-ms-correlation-request-id', + 'c0e69c71-e9fb-43f3-864d-69021ce79cb4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071120Z:c0e69c71-e9fb-43f3-864d-69021ce79cb4', + 'Date', + 'Fri, 19 Nov 2021 07:11:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '04ced24b-8a67-4e81-be7e-a4ae0b8126e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11292', + 'x-ms-correlation-request-id', + '0ed1751f-839c-4b88-aea6-ce1c065114b9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071121Z:0ed1751f-839c-4b88-aea6-ce1c065114b9', + 'Date', + 'Fri, 19 Nov 2021 07:11:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '344063a8-2b15-4247-a53a-b67abe564030', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11291', + 'x-ms-correlation-request-id', + 'b02ae076-65e1-4adf-9404-2afc84e6e012', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071121Z:b02ae076-65e1-4adf-9404-2afc84e6e012', + 'Date', + 'Fri, 19 Nov 2021 07:11:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7a049e3b-d913-4388-8f1e-7d59fe9d5ba2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11290', + 'x-ms-correlation-request-id', + 'f9bcf263-4a88-4769-8593-4f9198f18693', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071121Z:f9bcf263-4a88-4769-8593-4f9198f18693', + 'Date', + 'Fri, 19 Nov 2021 07:11:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '578bb8a5-ec38-430a-b2af-ac9d5b172071', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11289', + 'x-ms-correlation-request-id', + '2bfadb03-43b3-4548-b634-9cc14624621a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071122Z:2bfadb03-43b3-4548-b634-9cc14624621a', + 'Date', + 'Fri, 19 Nov 2021 07:11:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ec454523-551c-4719-b5be-8e1e8feace3b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11288', + 'x-ms-correlation-request-id', + '6d79bfae-72dd-49b9-b6e5-7e0aa78e87f8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071122Z:6d79bfae-72dd-49b9-b6e5-7e0aa78e87f8', + 'Date', + 'Fri, 19 Nov 2021 07:11:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3831ff0-8a39-469e-9763-00b1302f31db', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11287', + 'x-ms-correlation-request-id', + 'af0dd23e-bed9-489c-ab8a-0e7fca4290ab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071122Z:af0dd23e-bed9-489c-ab8a-0e7fca4290ab', + 'Date', + 'Fri, 19 Nov 2021 07:11:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e986efc1-8cb5-493f-8da8-82cc5168d741', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11286', + 'x-ms-correlation-request-id', + '98bf6892-6226-4adb-a4c8-0ff98e7a7e98', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071123Z:98bf6892-6226-4adb-a4c8-0ff98e7a7e98', + 'Date', + 'Fri, 19 Nov 2021 07:11:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e417bda0-a483-4843-bce9-c2d6f0befb26', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11285', + 'x-ms-correlation-request-id', + 'cdef7348-3a03-44bb-a61f-8088b076d1b1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071123Z:cdef7348-3a03-44bb-a61f-8088b076d1b1', + 'Date', + 'Fri, 19 Nov 2021 07:11:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '05b33168-18f5-4f8d-84f4-0f625d1b9f0c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11284', + 'x-ms-correlation-request-id', + '170050fe-720f-4115-aed0-79ce1e048588', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071123Z:170050fe-720f-4115-aed0-79ce1e048588', + 'Date', + 'Fri, 19 Nov 2021 07:11:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1404e0b2-f006-405a-b984-2bd3085fb54b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11283', + 'x-ms-correlation-request-id', + '920202da-e152-4324-9671-84391d36215e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071123Z:920202da-e152-4324-9671-84391d36215e', + 'Date', + 'Fri, 19 Nov 2021 07:11:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c03eb994-14b6-4d57-ae43-7f243af35e0b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11282', + 'x-ms-correlation-request-id', + 'b08ff8c3-ce24-4392-a8df-9e72d744bf81', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071124Z:b08ff8c3-ce24-4392-a8df-9e72d744bf81', + 'Date', + 'Fri, 19 Nov 2021 07:11:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4ec92b6d-ae9f-419d-b0ce-106dbb3d5d72', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11281', + 'x-ms-correlation-request-id', + '18179d21-048c-457a-b330-25387824ae1c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071124Z:18179d21-048c-457a-b330-25387824ae1c', + 'Date', + 'Fri, 19 Nov 2021 07:11:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '046120ff-fdef-4090-8251-5ab7722870cf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11280', + 'x-ms-correlation-request-id', + 'f4a4d16a-9657-4dec-903a-f6e52e87e95f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071124Z:f4a4d16a-9657-4dec-903a-f6e52e87e95f', + 'Date', + 'Fri, 19 Nov 2021 07:11:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'be28153d-8e9f-4aba-875c-f3a97a24966b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11279', + 'x-ms-correlation-request-id', + '8c317b09-9ea1-4e71-bfe0-016b5b480d93', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071125Z:8c317b09-9ea1-4e71-bfe0-016b5b480d93', + 'Date', + 'Fri, 19 Nov 2021 07:11:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '343710f4-e8f2-4787-b891-c52b7eadfe91', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11278', + 'x-ms-correlation-request-id', + '69b45476-c54f-441b-bf5c-571178ead7ff', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071125Z:69b45476-c54f-441b-bf5c-571178ead7ff', + 'Date', + 'Fri, 19 Nov 2021 07:11:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '395d16de-21d2-4bfd-8ab3-9aabc8726fac', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11277', + 'x-ms-correlation-request-id', + 'd111bda7-a4ae-4fad-97e3-1e320b8fdb77', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071125Z:d111bda7-a4ae-4fad-97e3-1e320b8fdb77', + 'Date', + 'Fri, 19 Nov 2021 07:11:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '57d39e09-a082-4fef-b831-653b7eab2848', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11276', + 'x-ms-correlation-request-id', + '86ae2074-e7a4-4e47-ac4c-69c2787d6167', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071125Z:86ae2074-e7a4-4e47-ac4c-69c2787d6167', + 'Date', + 'Fri, 19 Nov 2021 07:11:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e6f20c13-4afc-4018-a4d8-ac21384b2595', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11275', + 'x-ms-correlation-request-id', + 'e122544e-d32d-4525-b3d1-508934f8fc44', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071126Z:e122544e-d32d-4525-b3d1-508934f8fc44', + 'Date', + 'Fri, 19 Nov 2021 07:11:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c1b9ebdf-8a46-41fd-b066-e810f5f551c5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11274', + 'x-ms-correlation-request-id', + 'ca5c89fc-05b0-490d-b94d-6f333ff6e064', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071126Z:ca5c89fc-05b0-490d-b94d-6f333ff6e064', + 'Date', + 'Fri, 19 Nov 2021 07:11:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3dd36c1-03bf-4720-9d28-405246c25d0f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11273', + 'x-ms-correlation-request-id', + '2d665e8f-8e29-4ce1-bb9a-5d642db7f601', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071126Z:2d665e8f-8e29-4ce1-bb9a-5d642db7f601', + 'Date', + 'Fri, 19 Nov 2021 07:11:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '438119e4-c184-4683-8f77-0d262a94325a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11272', + 'x-ms-correlation-request-id', + '04cccdee-c0c9-45c1-9d58-3bd1b7436b5f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071127Z:04cccdee-c0c9-45c1-9d58-3bd1b7436b5f', + 'Date', + 'Fri, 19 Nov 2021 07:11:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '05429db9-8e15-4aff-9d89-95ce72d66b65', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11271', + 'x-ms-correlation-request-id', + 'b49a1e68-7521-4532-b088-341d1426f177', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071127Z:b49a1e68-7521-4532-b088-341d1426f177', + 'Date', + 'Fri, 19 Nov 2021 07:11:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e815adc2-1771-4fce-89f7-5a4043ddddcf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11270', + 'x-ms-correlation-request-id', + '62e54f14-08d3-454f-89e9-02fd4e7aa2c2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071127Z:62e54f14-08d3-454f-89e9-02fd4e7aa2c2', + 'Date', + 'Fri, 19 Nov 2021 07:11:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '02734df8-f65b-4249-bda6-a43304d65932', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11269', + 'x-ms-correlation-request-id', + 'b75ddd3d-a346-4697-b313-5c05610e4d81', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071128Z:b75ddd3d-a346-4697-b313-5c05610e4d81', + 'Date', + 'Fri, 19 Nov 2021 07:11:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '93409b7f-f678-47c4-8b65-efd81ee1e371', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11268', + 'x-ms-correlation-request-id', + 'e8125431-3b1c-480c-ab7a-123d1ad856c5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071128Z:e8125431-3b1c-480c-ab7a-123d1ad856c5', + 'Date', + 'Fri, 19 Nov 2021 07:11:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '05a0209d-0cff-4afc-873e-253550a8eae9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11267', + 'x-ms-correlation-request-id', + '1384051c-f439-4f55-8534-c05c619395aa', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071128Z:1384051c-f439-4f55-8534-c05c619395aa', + 'Date', + 'Fri, 19 Nov 2021 07:11:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e608bc51-0614-43b3-b394-f79e57a32022', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11266', + 'x-ms-correlation-request-id', + 'fec8aeaa-5f54-4c7b-a945-a362b61b46af', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071129Z:fec8aeaa-5f54-4c7b-a945-a362b61b46af', + 'Date', + 'Fri, 19 Nov 2021 07:11:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '08e443a2-8d97-4f90-98c6-3b2ae016ae00', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11265', + 'x-ms-correlation-request-id', + '68869a26-a5dd-467a-b620-435a8dc0b347', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071129Z:68869a26-a5dd-467a-b620-435a8dc0b347', + 'Date', + 'Fri, 19 Nov 2021 07:11:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b4263d4b-e145-4d7f-b371-3569d6bbdcf5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11264', + 'x-ms-correlation-request-id', + 'b4b55992-1237-421d-baa5-95e1d8895b36', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071129Z:b4b55992-1237-421d-baa5-95e1d8895b36', + 'Date', + 'Fri, 19 Nov 2021 07:11:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c01721f3-cfbc-4637-9fbf-1e36eea4764b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11263', + 'x-ms-correlation-request-id', + 'd5cc4830-da12-49b5-aa4f-9a0d67822ab9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071130Z:d5cc4830-da12-49b5-aa4f-9a0d67822ab9', + 'Date', + 'Fri, 19 Nov 2021 07:11:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '69d08b30-772e-4256-898f-cce7155c7190', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11262', + 'x-ms-correlation-request-id', + 'a685aa5f-3ec6-4bc3-990e-bc71f0c5cd6c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071130Z:a685aa5f-3ec6-4bc3-990e-bc71f0c5cd6c', + 'Date', + 'Fri, 19 Nov 2021 07:11:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '28e59242-724f-46cc-99c7-499792e64201', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11261', + 'x-ms-correlation-request-id', + 'a649e95e-626f-4b6e-bc7b-c2a1456ad264', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071130Z:a649e95e-626f-4b6e-bc7b-c2a1456ad264', + 'Date', + 'Fri, 19 Nov 2021 07:11:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'da939e58-c0a4-4d38-a56c-4efadf595ecc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11260', + 'x-ms-correlation-request-id', + '083ed9db-271d-44a4-8d2a-99bc507d2ad2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071131Z:083ed9db-271d-44a4-8d2a-99bc507d2ad2', + 'Date', + 'Fri, 19 Nov 2021 07:11:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '72eb9d3e-afc1-4e9d-9ec6-9f5181f84332', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11259', + 'x-ms-correlation-request-id', + '38b1fa5f-46e8-4d7f-a92f-9aca5c869ac1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071131Z:38b1fa5f-46e8-4d7f-a92f-9aca5c869ac1', + 'Date', + 'Fri, 19 Nov 2021 07:11:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e28bf8cd-6264-4778-8c3a-65274b880872', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11258', + 'x-ms-correlation-request-id', + '7e41a177-face-4fea-a5c9-3d6d9ee6185a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071131Z:7e41a177-face-4fea-a5c9-3d6d9ee6185a', + 'Date', + 'Fri, 19 Nov 2021 07:11:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b7ac3960-104a-45c7-8b30-4e0c1db99e26', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11257', + 'x-ms-correlation-request-id', + '84c1a945-012e-4215-bb27-f253d85ebe3d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071131Z:84c1a945-012e-4215-bb27-f253d85ebe3d', + 'Date', + 'Fri, 19 Nov 2021 07:11:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6b3e438a-18af-409f-bcdc-811f7b55c5b8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11256', + 'x-ms-correlation-request-id', + '240f8980-9492-4bd1-b3a9-30132af702da', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071132Z:240f8980-9492-4bd1-b3a9-30132af702da', + 'Date', + 'Fri, 19 Nov 2021 07:11:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c7847625-f709-4feb-bf24-81b521399eda', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11255', + 'x-ms-correlation-request-id', + '06953e31-7f97-4780-8c52-0f8b37e5eb5c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071132Z:06953e31-7f97-4780-8c52-0f8b37e5eb5c', + 'Date', + 'Fri, 19 Nov 2021 07:11:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bf774f61-d71a-4138-99df-925a95d1d761', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11254', + 'x-ms-correlation-request-id', + 'ded41a75-bf21-4b59-8b93-aae788d3eca1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071132Z:ded41a75-bf21-4b59-8b93-aae788d3eca1', + 'Date', + 'Fri, 19 Nov 2021 07:11:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '58600892-e96c-4b93-acce-aa88df2e212f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11253', + 'x-ms-correlation-request-id', + '7e804f0c-805a-4049-aa89-876b16a93159', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071133Z:7e804f0c-805a-4049-aa89-876b16a93159', + 'Date', + 'Fri, 19 Nov 2021 07:11:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b1b68237-74c5-42ce-b254-6a9a41d03b50', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11252', + 'x-ms-correlation-request-id', + '9bf35485-4b77-474c-bbde-21fff81cda5d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071133Z:9bf35485-4b77-474c-bbde-21fff81cda5d', + 'Date', + 'Fri, 19 Nov 2021 07:11:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0b34ead5-ff47-4a23-b06f-4aa0812c20b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11251', + 'x-ms-correlation-request-id', + '16830af0-e071-4e12-8cb0-61061ea8136b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071133Z:16830af0-e071-4e12-8cb0-61061ea8136b', + 'Date', + 'Fri, 19 Nov 2021 07:11:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0e65babf-ce4b-4650-a543-c31552535983', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11250', + 'x-ms-correlation-request-id', + 'f1e25bed-f7bd-4f47-bf67-3f14e28d8fb0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071133Z:f1e25bed-f7bd-4f47-bf67-3f14e28d8fb0', + 'Date', + 'Fri, 19 Nov 2021 07:11:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5d460dbc-e18b-43a5-a111-a481010188de', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11249', + 'x-ms-correlation-request-id', + '6546a173-2bd8-4704-ae6a-147c89bfc039', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071134Z:6546a173-2bd8-4704-ae6a-147c89bfc039', + 'Date', + 'Fri, 19 Nov 2021 07:11:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '13336fac-8d92-478d-b5ed-42fe638b1713', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11248', + 'x-ms-correlation-request-id', + '7c39845d-4b1e-45a1-85cd-74a5f0e54c04', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071134Z:7c39845d-4b1e-45a1-85cd-74a5f0e54c04', + 'Date', + 'Fri, 19 Nov 2021 07:11:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1e72efad-66c3-4554-ab94-10bdcbe1f414', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11247', + 'x-ms-correlation-request-id', + '3b4655d5-a359-450e-82cd-1be569e12fe3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071134Z:3b4655d5-a359-450e-82cd-1be569e12fe3', + 'Date', + 'Fri, 19 Nov 2021 07:11:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b57f5bb6-3057-48ff-940c-0502a122dbb5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11246', + 'x-ms-correlation-request-id', + '90b06b5c-7b6b-45a5-bc57-93100dfdfdbb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071135Z:90b06b5c-7b6b-45a5-bc57-93100dfdfdbb', + 'Date', + 'Fri, 19 Nov 2021 07:11:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fabcdda5-7132-4dd2-ab7d-c8e93d20ca35', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11245', + 'x-ms-correlation-request-id', + 'e393af87-c179-4971-82f0-be1f9afbdaf2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071135Z:e393af87-c179-4971-82f0-be1f9afbdaf2', + 'Date', + 'Fri, 19 Nov 2021 07:11:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0073d839-62d9-48bb-8c21-4af8dda7ea38', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11244', + 'x-ms-correlation-request-id', + '710ed879-c362-4413-b7a0-7452efb0049e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071135Z:710ed879-c362-4413-b7a0-7452efb0049e', + 'Date', + 'Fri, 19 Nov 2021 07:11:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4355f765-fc98-44a4-b7ce-e88d1436da21', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11243', + 'x-ms-correlation-request-id', + '637f6f5e-c5ab-41c7-a534-fefada667c17', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071136Z:637f6f5e-c5ab-41c7-a534-fefada667c17', + 'Date', + 'Fri, 19 Nov 2021 07:11:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4b717cdb-297a-4476-8edf-cb09b5027af3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11242', + 'x-ms-correlation-request-id', + 'dd9d183d-8699-462e-b961-b07f7f2e571d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071136Z:dd9d183d-8699-462e-b961-b07f7f2e571d', + 'Date', + 'Fri, 19 Nov 2021 07:11:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '34b3b007-dddb-45c2-8988-92484baec86e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11241', + 'x-ms-correlation-request-id', + 'b1fa6e23-3dc3-4003-afec-8ee5959e3eeb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071136Z:b1fa6e23-3dc3-4003-afec-8ee5959e3eeb', + 'Date', + 'Fri, 19 Nov 2021 07:11:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aed50ad6-7e09-4f38-b8ea-467679395a0e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11240', + 'x-ms-correlation-request-id', + 'ac6888db-f4c3-4cff-8d1d-29c8981c9b7a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071137Z:ac6888db-f4c3-4cff-8d1d-29c8981c9b7a', + 'Date', + 'Fri, 19 Nov 2021 07:11:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3243dfac-49ca-4ba9-a148-97f3f3ead155', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11239', + 'x-ms-correlation-request-id', + '9ea72992-714b-4a66-87a1-af098be3da3a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071137Z:9ea72992-714b-4a66-87a1-af098be3da3a', + 'Date', + 'Fri, 19 Nov 2021 07:11:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '874cf16d-7de0-4377-a20a-72069c800068', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11238', + 'x-ms-correlation-request-id', + '05a97f28-3e9d-4bb5-87b4-7ec8a55afb68', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071137Z:05a97f28-3e9d-4bb5-87b4-7ec8a55afb68', + 'Date', + 'Fri, 19 Nov 2021 07:11:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b5272425-1c6f-4cba-acc2-3f39940f8611', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11237', + 'x-ms-correlation-request-id', + '40924f00-66d0-48a2-9cd1-b4b06c3a8293', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071137Z:40924f00-66d0-48a2-9cd1-b4b06c3a8293', + 'Date', + 'Fri, 19 Nov 2021 07:11:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c6f5926a-876c-4a02-9bdb-1ff61a7fdc36', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11236', + 'x-ms-correlation-request-id', + 'a828858e-2f61-45dd-9e61-5238f9e6afbf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071138Z:a828858e-2f61-45dd-9e61-5238f9e6afbf', + 'Date', + 'Fri, 19 Nov 2021 07:11:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '730e62fa-e7c8-4bbe-a70e-40573e77c6a9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11235', + 'x-ms-correlation-request-id', + '35f9d595-71f4-428d-8854-15edf3573e21', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071138Z:35f9d595-71f4-428d-8854-15edf3573e21', + 'Date', + 'Fri, 19 Nov 2021 07:11:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4433294b-384d-4d3e-afe6-8d9be6f1d46b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11234', + 'x-ms-correlation-request-id', + '7bea98b4-c8e4-4712-96bd-1a3bf82d5a8d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071138Z:7bea98b4-c8e4-4712-96bd-1a3bf82d5a8d', + 'Date', + 'Fri, 19 Nov 2021 07:11:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '39604cd2-373a-49f1-a35e-c4a8ca9e0776', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11233', + 'x-ms-correlation-request-id', + 'b6f7fc16-3181-44a8-968d-c1641291f613', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071139Z:b6f7fc16-3181-44a8-968d-c1641291f613', + 'Date', + 'Fri, 19 Nov 2021 07:11:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f6a6ba34-d163-4588-8526-1ee2ca36f8ff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11232', + 'x-ms-correlation-request-id', + '3964f7e6-d54b-4622-b82c-de756aeab779', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071139Z:3964f7e6-d54b-4622-b82c-de756aeab779', + 'Date', + 'Fri, 19 Nov 2021 07:11:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c32a87ce-9752-47f7-91ca-02d7130c9b9c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11231', + 'x-ms-correlation-request-id', + '161c41a6-a97a-4191-85bd-39840daa980f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071139Z:161c41a6-a97a-4191-85bd-39840daa980f', + 'Date', + 'Fri, 19 Nov 2021 07:11:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2c5bd369-fef3-43f5-a821-5d56c6a0bb12', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11230', + 'x-ms-correlation-request-id', + 'da878145-5e37-4c19-a247-331e4aaaf3d8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071139Z:da878145-5e37-4c19-a247-331e4aaaf3d8', + 'Date', + 'Fri, 19 Nov 2021 07:11:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'feb91885-d76d-4c05-b8a8-6e6472e70a01', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11229', + 'x-ms-correlation-request-id', + '225b1584-7a68-4387-9380-94f81c50b561', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071140Z:225b1584-7a68-4387-9380-94f81c50b561', + 'Date', + 'Fri, 19 Nov 2021 07:11:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '65005cc3-70c3-4773-b77b-beb1cf783c0e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11228', + 'x-ms-correlation-request-id', + '70f316c6-e485-4fab-b44f-11772f564c86', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071140Z:70f316c6-e485-4fab-b44f-11772f564c86', + 'Date', + 'Fri, 19 Nov 2021 07:11:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e064fd7a-2aef-414e-b20f-6d5ac3ecb42c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11227', + 'x-ms-correlation-request-id', + 'dc68bdd9-5c18-4de5-8f78-c0afccd2a624', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071140Z:dc68bdd9-5c18-4de5-8f78-c0afccd2a624', + 'Date', + 'Fri, 19 Nov 2021 07:11:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '24c9e2b0-a30f-434c-af49-3d1585b38294', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11226', + 'x-ms-correlation-request-id', + '6b6ead68-9618-4eb7-a30d-a037f23ff22f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071141Z:6b6ead68-9618-4eb7-a30d-a037f23ff22f', + 'Date', + 'Fri, 19 Nov 2021 07:11:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0c7e1a49-78fd-4ff4-a395-b6abf25ef9d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11225', + 'x-ms-correlation-request-id', + '4f1aebe3-9b7b-47be-99be-09daa379ebe9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071141Z:4f1aebe3-9b7b-47be-99be-09daa379ebe9', + 'Date', + 'Fri, 19 Nov 2021 07:11:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '57b0f816-f7ae-4e7a-a1e7-60b6678760d6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11224', + 'x-ms-correlation-request-id', + '299f4de3-ecc3-49f5-be1c-2d4227cb63f9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071141Z:299f4de3-ecc3-49f5-be1c-2d4227cb63f9', + 'Date', + 'Fri, 19 Nov 2021 07:11:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cd6724d7-8889-414d-9d1b-baf8daff930f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11223', + 'x-ms-correlation-request-id', + '97ad98c3-ae80-452a-a797-ba68e570e831', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071142Z:97ad98c3-ae80-452a-a797-ba68e570e831', + 'Date', + 'Fri, 19 Nov 2021 07:11:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a69b7a7d-95a3-4a54-8396-d0e76aa36a41', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11222', + 'x-ms-correlation-request-id', + 'd3fa0f2e-b8bb-4403-9f74-0e04760c17b7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071142Z:d3fa0f2e-b8bb-4403-9f74-0e04760c17b7', + 'Date', + 'Fri, 19 Nov 2021 07:11:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b195671c-eaea-43dd-a4f1-29afc658a881', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11221', + 'x-ms-correlation-request-id', + '57caa1f3-6b3c-4ebe-abd7-5350eb234ff7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071142Z:57caa1f3-6b3c-4ebe-abd7-5350eb234ff7', + 'Date', + 'Fri, 19 Nov 2021 07:11:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2d685fc8-d13d-43f1-b9ce-65e0d2175c05', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11220', + 'x-ms-correlation-request-id', + 'e8388b9b-d9ba-4863-bb50-569ddbfc7b6b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071143Z:e8388b9b-d9ba-4863-bb50-569ddbfc7b6b', + 'Date', + 'Fri, 19 Nov 2021 07:11:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9b39818a-3e7b-45d0-9fa2-26e6d124401e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11219', + 'x-ms-correlation-request-id', + 'bc081c5d-0ef1-4560-b7c5-f963bd2feb39', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071143Z:bc081c5d-0ef1-4560-b7c5-f963bd2feb39', + 'Date', + 'Fri, 19 Nov 2021 07:11:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6f8d615a-94d9-4134-986b-ad86934f5902', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11218', + 'x-ms-correlation-request-id', + '59d45e15-4820-4603-9a41-aae0e509fb81', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071143Z:59d45e15-4820-4603-9a41-aae0e509fb81', + 'Date', + 'Fri, 19 Nov 2021 07:11:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '71aca1c1-e133-4f0c-9941-a2f700838f62', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11217', + 'x-ms-correlation-request-id', + 'bd223d09-63f2-4035-bdc9-da981d8a9bd6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071143Z:bd223d09-63f2-4035-bdc9-da981d8a9bd6', + 'Date', + 'Fri, 19 Nov 2021 07:11:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd02b3817-3137-41e7-a082-efc925b1df7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11216', + 'x-ms-correlation-request-id', + 'b47b5ffe-99ac-4197-b516-27a6bbb6196a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071144Z:b47b5ffe-99ac-4197-b516-27a6bbb6196a', + 'Date', + 'Fri, 19 Nov 2021 07:11:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd2465839-a7d5-4e27-ac24-5f759e92fd0f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11215', + 'x-ms-correlation-request-id', + '0461849f-6405-42fe-a252-89104242e3ac', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071144Z:0461849f-6405-42fe-a252-89104242e3ac', + 'Date', + 'Fri, 19 Nov 2021 07:11:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6e3761a7-4817-4619-881c-d91714a4abd7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11214', + 'x-ms-correlation-request-id', + '8d21687b-20bc-4090-ae6a-b19c90fcdf63', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071144Z:8d21687b-20bc-4090-ae6a-b19c90fcdf63', + 'Date', + 'Fri, 19 Nov 2021 07:11:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f16e60b0-59fa-493c-b743-6b559a3b170c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11213', + 'x-ms-correlation-request-id', + 'a9044344-fa9a-4787-b5e7-3f4b8d0284a0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071145Z:a9044344-fa9a-4787-b5e7-3f4b8d0284a0', + 'Date', + 'Fri, 19 Nov 2021 07:11:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cf69bbf5-3ef2-4b26-8fe6-7261579ce98d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11212', + 'x-ms-correlation-request-id', + 'c358cb20-975e-417b-9ef5-5769f53124c6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071145Z:c358cb20-975e-417b-9ef5-5769f53124c6', + 'Date', + 'Fri, 19 Nov 2021 07:11:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ba97396e-3957-4094-a4f4-80e743200fa1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11211', + 'x-ms-correlation-request-id', + 'be949f79-96a6-4781-9d99-2f2febf75212', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071145Z:be949f79-96a6-4781-9d99-2f2febf75212', + 'Date', + 'Fri, 19 Nov 2021 07:11:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c03c6224-4d3a-4f9a-b034-bd47e568a151', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11210', + 'x-ms-correlation-request-id', + 'c3a5c919-c721-4392-b1c3-448ff747f320', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071146Z:c3a5c919-c721-4392-b1c3-448ff747f320', + 'Date', + 'Fri, 19 Nov 2021 07:11:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6c29afbe-6d1c-4f43-9995-844b71a0fa1d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11209', + 'x-ms-correlation-request-id', + 'cd0fdb75-90e9-4a02-ad45-5682ab841afb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071146Z:cd0fdb75-90e9-4a02-ad45-5682ab841afb', + 'Date', + 'Fri, 19 Nov 2021 07:11:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f5791aaf-5f40-4f91-a089-7236fa1f6cf2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11208', + 'x-ms-correlation-request-id', + '5db9fc5b-3079-4f1e-8403-ca06d26e84f6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071146Z:5db9fc5b-3079-4f1e-8403-ca06d26e84f6', + 'Date', + 'Fri, 19 Nov 2021 07:11:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'abeed8e9-f79e-4c67-99b7-de657bdc7400', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11207', + 'x-ms-correlation-request-id', + 'ec6645e8-3df8-469b-9a10-1dfc35a976ac', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071146Z:ec6645e8-3df8-469b-9a10-1dfc35a976ac', + 'Date', + 'Fri, 19 Nov 2021 07:11:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '09491d96-a84f-4210-a9c2-6f48ea0c4090', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11206', + 'x-ms-correlation-request-id', + '29596899-2a83-48fc-ad51-acb0dd435e65', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071147Z:29596899-2a83-48fc-ad51-acb0dd435e65', + 'Date', + 'Fri, 19 Nov 2021 07:11:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd0c4a032-fee4-47df-b8a2-0fa08be602dc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11205', + 'x-ms-correlation-request-id', + 'c1de0d26-3b13-4b26-8a31-4cfe8264e1bf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071147Z:c1de0d26-3b13-4b26-8a31-4cfe8264e1bf', + 'Date', + 'Fri, 19 Nov 2021 07:11:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2aa85fe5-d66b-4c66-a5f5-ed271ca0a151', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11204', + 'x-ms-correlation-request-id', + '91818117-3be4-41f7-ba80-717ef20f8453', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071147Z:91818117-3be4-41f7-ba80-717ef20f8453', + 'Date', + 'Fri, 19 Nov 2021 07:11:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1e7ce8f5-b464-46f1-a97b-305b2fe33c7b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11203', + 'x-ms-correlation-request-id', + 'c3971879-f865-4b45-ab57-54a5f723751c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071148Z:c3971879-f865-4b45-ab57-54a5f723751c', + 'Date', + 'Fri, 19 Nov 2021 07:11:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0f325789-e8a6-4ff2-8bbf-23f4b5b03675', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11202', + 'x-ms-correlation-request-id', + '5c65b4b8-11a3-4bb0-b11c-bd51296b2082', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071148Z:5c65b4b8-11a3-4bb0-b11c-bd51296b2082', + 'Date', + 'Fri, 19 Nov 2021 07:11:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '606f3577-e000-43cc-839d-a7679c1bb417', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11201', + 'x-ms-correlation-request-id', + 'e9cbb629-b8d6-4ad8-806a-1870766bfbbb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071148Z:e9cbb629-b8d6-4ad8-806a-1870766bfbbb', + 'Date', + 'Fri, 19 Nov 2021 07:11:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bef73853-d2a6-4eb3-98b1-23d06c8dc987', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11200', + 'x-ms-correlation-request-id', + 'b5fc94a6-aa8c-4cf3-8be3-e9428e81fe8b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071149Z:b5fc94a6-aa8c-4cf3-8be3-e9428e81fe8b', + 'Date', + 'Fri, 19 Nov 2021 07:11:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1c39d084-f734-46cf-b116-e06aaba8f4ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11199', + 'x-ms-correlation-request-id', + '8a82e92d-1f75-4c0e-81a9-cf57097b1fc2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071149Z:8a82e92d-1f75-4c0e-81a9-cf57097b1fc2', + 'Date', + 'Fri, 19 Nov 2021 07:11:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'af8d8dff-fdd4-4c03-ba87-bfdf5010abf8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11198', + 'x-ms-correlation-request-id', + '729bc389-afff-4f42-b90d-c4eb366d105f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071149Z:729bc389-afff-4f42-b90d-c4eb366d105f', + 'Date', + 'Fri, 19 Nov 2021 07:11:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '68ef94f0-e610-4b0f-b678-50775d354f6d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11197', + 'x-ms-correlation-request-id', + '4ba7985c-3895-4f28-b6a2-389c820956f8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071149Z:4ba7985c-3895-4f28-b6a2-389c820956f8', + 'Date', + 'Fri, 19 Nov 2021 07:11:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0b03cbb8-8ece-4207-a0c7-487d6b6e067e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11196', + 'x-ms-correlation-request-id', + 'ece55011-3783-40b2-9492-ea087e4493a0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071150Z:ece55011-3783-40b2-9492-ea087e4493a0', + 'Date', + 'Fri, 19 Nov 2021 07:11:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '132d7a71-1244-4606-a6ae-003aea2032ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11195', + 'x-ms-correlation-request-id', + '2eb4d172-3c19-4579-8edd-211a4b9e0a82', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071150Z:2eb4d172-3c19-4579-8edd-211a4b9e0a82', + 'Date', + 'Fri, 19 Nov 2021 07:11:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '36acaded-9cd8-4198-9274-c262da3a1bec', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11194', + 'x-ms-correlation-request-id', + '14267166-29ed-45d7-ac80-f82b38c9de0a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071150Z:14267166-29ed-45d7-ac80-f82b38c9de0a', + 'Date', + 'Fri, 19 Nov 2021 07:11:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7fb5f0dc-a04c-4bca-bf15-0e57c8573372', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11193', + 'x-ms-correlation-request-id', + '3d396229-9655-4f16-933d-29f53d4d85ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071151Z:3d396229-9655-4f16-933d-29f53d4d85ce', + 'Date', + 'Fri, 19 Nov 2021 07:11:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3ae98de8-bff1-4e87-a9ae-0c412cb6b647', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11192', + 'x-ms-correlation-request-id', + '914841e5-c415-4352-85a3-4e047b0e5883', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071151Z:914841e5-c415-4352-85a3-4e047b0e5883', + 'Date', + 'Fri, 19 Nov 2021 07:11:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '57c11c7d-a8e0-46a3-b4ba-0e115dfe3033', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11191', + 'x-ms-correlation-request-id', + 'd750dad6-3c31-46ef-97bd-1d10b84b18da', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071151Z:d750dad6-3c31-46ef-97bd-1d10b84b18da', + 'Date', + 'Fri, 19 Nov 2021 07:11:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6b9523bf-be7f-41e8-ad69-d8e0d393ad32', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11190', + 'x-ms-correlation-request-id', + '8d724e6d-f4a8-4d00-b9c0-f16c22d29d78', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071152Z:8d724e6d-f4a8-4d00-b9c0-f16c22d29d78', + 'Date', + 'Fri, 19 Nov 2021 07:11:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cae683a6-6c23-44c0-9172-f24ed72ccbde', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11189', + 'x-ms-correlation-request-id', + 'daa7859a-e2ba-4974-9b45-1d434680de8d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071152Z:daa7859a-e2ba-4974-9b45-1d434680de8d', + 'Date', + 'Fri, 19 Nov 2021 07:11:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fe958c3c-1ade-4fdb-8d31-9602dd346725', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11188', + 'x-ms-correlation-request-id', + '6dff6d77-9505-4600-8f0a-a75bb534a49e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071152Z:6dff6d77-9505-4600-8f0a-a75bb534a49e', + 'Date', + 'Fri, 19 Nov 2021 07:11:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '970e39fd-bd3d-4f9f-b543-284dfa820a7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11187', + 'x-ms-correlation-request-id', + '09a2f1a4-32eb-49dd-b6dd-bfc243359c5b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071152Z:09a2f1a4-32eb-49dd-b6dd-bfc243359c5b', + 'Date', + 'Fri, 19 Nov 2021 07:11:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3ea61741-16c8-4e7c-bb25-8c942a8ee2dd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11186', + 'x-ms-correlation-request-id', + '996a50ec-d99a-41b3-ab41-62c6d3b04695', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071153Z:996a50ec-d99a-41b3-ab41-62c6d3b04695', + 'Date', + 'Fri, 19 Nov 2021 07:11:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e35c1ba6-e026-404b-9af0-b9e0328f6181', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11185', + 'x-ms-correlation-request-id', + 'fe722ba4-1b5d-47b8-8133-94c29f27f573', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071153Z:fe722ba4-1b5d-47b8-8133-94c29f27f573', + 'Date', + 'Fri, 19 Nov 2021 07:11:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'efbae354-9f28-4671-982e-2040332d3bcc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11184', + 'x-ms-correlation-request-id', + '6261e44a-aa3f-4e1c-b456-8e7f7c207806', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071153Z:6261e44a-aa3f-4e1c-b456-8e7f7c207806', + 'Date', + 'Fri, 19 Nov 2021 07:11:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '56674033-a29c-4a3e-911b-f858e4236673', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11183', + 'x-ms-correlation-request-id', + '919b0573-8e1d-4443-8ce2-97af70d069fb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071154Z:919b0573-8e1d-4443-8ce2-97af70d069fb', + 'Date', + 'Fri, 19 Nov 2021 07:11:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '39904504-36d5-460a-871a-4839d3c2405e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11182', + 'x-ms-correlation-request-id', + 'fbe110c7-48b7-4348-967e-5ddf2edde2d0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071154Z:fbe110c7-48b7-4348-967e-5ddf2edde2d0', + 'Date', + 'Fri, 19 Nov 2021 07:11:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6776973f-da87-4c65-8569-87edc72b67af', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11181', + 'x-ms-correlation-request-id', + 'd8ca2fd7-4f0c-49d3-849e-471204544260', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071154Z:d8ca2fd7-4f0c-49d3-849e-471204544260', + 'Date', + 'Fri, 19 Nov 2021 07:11:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '342d4edb-cc83-4296-92e8-895c978e438d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11180', + 'x-ms-correlation-request-id', + '1f1bcc37-cc3a-470c-bf97-538a79feaf1e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071155Z:1f1bcc37-cc3a-470c-bf97-538a79feaf1e', + 'Date', + 'Fri, 19 Nov 2021 07:11:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b021392d-4e2e-4341-a975-6ca2c67a7fcd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11179', + 'x-ms-correlation-request-id', + 'f197cb90-3779-4795-9a63-4747c4bd8f15', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071155Z:f197cb90-3779-4795-9a63-4747c4bd8f15', + 'Date', + 'Fri, 19 Nov 2021 07:11:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0045357f-9216-413b-94e0-df08311c61e2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11178', + 'x-ms-correlation-request-id', + 'f8556f29-f7f2-4864-b923-81c2f2823853', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071155Z:f8556f29-f7f2-4864-b923-81c2f2823853', + 'Date', + 'Fri, 19 Nov 2021 07:11:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '13de80a0-1e91-4822-bc21-838af6877a4a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11177', + 'x-ms-correlation-request-id', + '85c7c263-a476-46b3-95bf-0a8807d49a9c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071155Z:85c7c263-a476-46b3-95bf-0a8807d49a9c', + 'Date', + 'Fri, 19 Nov 2021 07:11:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '02a5d40e-1fd5-47e3-8866-0d64cf4df88e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11176', + 'x-ms-correlation-request-id', + 'e6d138d2-c13a-43c7-aef2-457ad2c69e3d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071156Z:e6d138d2-c13a-43c7-aef2-457ad2c69e3d', + 'Date', + 'Fri, 19 Nov 2021 07:11:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '714374fb-5709-48cf-b7fe-75c91f9dd651', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11175', + 'x-ms-correlation-request-id', + '3f1c1fc5-c13b-4c91-8e17-c17b22dae3f4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071156Z:3f1c1fc5-c13b-4c91-8e17-c17b22dae3f4', + 'Date', + 'Fri, 19 Nov 2021 07:11:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7dbc8c09-a96f-4ca9-85e5-a229b4f82025', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11174', + 'x-ms-correlation-request-id', + 'bee2cef6-0fa0-4ed5-a313-d2f2b44477c7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071156Z:bee2cef6-0fa0-4ed5-a313-d2f2b44477c7', + 'Date', + 'Fri, 19 Nov 2021 07:11:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bbc81245-8bd6-4511-8893-b3e15110e2b6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11173', + 'x-ms-correlation-request-id', + '25180d10-3272-4496-8021-2e3b021e8a7b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071157Z:25180d10-3272-4496-8021-2e3b021e8a7b', + 'Date', + 'Fri, 19 Nov 2021 07:11:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7c8a0cae-131e-40d7-b6d4-867cac37d7f5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11172', + 'x-ms-correlation-request-id', + 'aca858bd-c193-4500-a6b7-e6b35ea8938a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071157Z:aca858bd-c193-4500-a6b7-e6b35ea8938a', + 'Date', + 'Fri, 19 Nov 2021 07:11:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fa6cffc9-d70e-4c8c-a8cd-279596526f84', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11171', + 'x-ms-correlation-request-id', + 'd43623cf-33a5-46d5-ab7a-17e778dca546', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071157Z:d43623cf-33a5-46d5-ab7a-17e778dca546', + 'Date', + 'Fri, 19 Nov 2021 07:11:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '66148bd1-f0dc-419d-9ade-c5fe16d9fd40', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11170', + 'x-ms-correlation-request-id', + '0d1f6d56-030c-4021-8d11-5a71f736b5e5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071158Z:0d1f6d56-030c-4021-8d11-5a71f736b5e5', + 'Date', + 'Fri, 19 Nov 2021 07:11:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f5e9e83f-960e-4396-9346-9bb70ca2a163', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11169', + 'x-ms-correlation-request-id', + '6f503931-aa00-4d7f-b755-ddbd02103671', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071158Z:6f503931-aa00-4d7f-b755-ddbd02103671', + 'Date', + 'Fri, 19 Nov 2021 07:11:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b0e9fc95-092b-4251-a82c-cc1eea656915', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11168', + 'x-ms-correlation-request-id', + '793c4537-47b6-419d-b1bc-f8389151c83a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071158Z:793c4537-47b6-419d-b1bc-f8389151c83a', + 'Date', + 'Fri, 19 Nov 2021 07:11:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e0fede49-2e86-4826-ac6c-08cdb8d22c77', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11167', + 'x-ms-correlation-request-id', + '13176348-7a9f-43a3-bd72-486d291f81b9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071158Z:13176348-7a9f-43a3-bd72-486d291f81b9', + 'Date', + 'Fri, 19 Nov 2021 07:11:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '416c093a-5d2e-4eb0-94b2-23716c2c5482', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11166', + 'x-ms-correlation-request-id', + 'a74aaaf6-9eff-456b-b9ae-6abee152ee01', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071159Z:a74aaaf6-9eff-456b-b9ae-6abee152ee01', + 'Date', + 'Fri, 19 Nov 2021 07:11:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c85a09cb-d08c-43ad-9ced-b3283f242571', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11165', + 'x-ms-correlation-request-id', + 'afb8f69c-f8c4-4096-b3f7-b7a00ec8b531', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071159Z:afb8f69c-f8c4-4096-b3f7-b7a00ec8b531', + 'Date', + 'Fri, 19 Nov 2021 07:11:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f519babb-0cbe-4016-843a-975b7a0aefa3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11164', + 'x-ms-correlation-request-id', + '6a737578-3486-45b8-b54f-98221ae9c3e5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071159Z:6a737578-3486-45b8-b54f-98221ae9c3e5', + 'Date', + 'Fri, 19 Nov 2021 07:11:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a5e43b43-c091-4f6f-94af-75ee2322c3da', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11163', + 'x-ms-correlation-request-id', + 'f7b3260e-5bba-4240-8753-6d9374b5fb0b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071200Z:f7b3260e-5bba-4240-8753-6d9374b5fb0b', + 'Date', + 'Fri, 19 Nov 2021 07:11:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8de38b42-bc8a-4993-b1ff-8cdf271e1dc2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11162', + 'x-ms-correlation-request-id', + '86e2fff9-1e77-4f8e-ba0e-938a366def84', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071200Z:86e2fff9-1e77-4f8e-ba0e-938a366def84', + 'Date', + 'Fri, 19 Nov 2021 07:11:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '918685ff-a747-4135-86ca-b655c83d88d9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11161', + 'x-ms-correlation-request-id', + '33bf4232-b3ea-4811-ae72-0e5fa1dabde6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071200Z:33bf4232-b3ea-4811-ae72-0e5fa1dabde6', + 'Date', + 'Fri, 19 Nov 2021 07:11:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cccc295a-10fe-4e71-863d-6cc153e6ebc3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11160', + 'x-ms-correlation-request-id', + '93ca7827-cfe4-41cb-b9d2-d3b13be8ab24', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071201Z:93ca7827-cfe4-41cb-b9d2-d3b13be8ab24', + 'Date', + 'Fri, 19 Nov 2021 07:12:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f8072d29-926b-4a6e-b291-066670d0d743', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11159', + 'x-ms-correlation-request-id', + 'cc18585b-563f-47bb-aff9-927fb870621e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071201Z:cc18585b-563f-47bb-aff9-927fb870621e', + 'Date', + 'Fri, 19 Nov 2021 07:12:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '331ea41e-5748-4921-9707-fc3168fe8487', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11158', + 'x-ms-correlation-request-id', + '506d9f75-0a18-43c1-9a4f-1683af81d942', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071201Z:506d9f75-0a18-43c1-9a4f-1683af81d942', + 'Date', + 'Fri, 19 Nov 2021 07:12:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7a4e7917-46ea-4c75-9909-167f418e96d3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11157', + 'x-ms-correlation-request-id', + '44339377-1c5c-4f9e-9f00-98faf99ed438', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071201Z:44339377-1c5c-4f9e-9f00-98faf99ed438', + 'Date', + 'Fri, 19 Nov 2021 07:12:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '151a4d9f-1de0-4d18-8884-42b143ea3422', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11156', + 'x-ms-correlation-request-id', + '3d50ea30-fd5d-4b5e-804d-cc516435ab02', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071202Z:3d50ea30-fd5d-4b5e-804d-cc516435ab02', + 'Date', + 'Fri, 19 Nov 2021 07:12:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '69d38912-5a7b-4a88-ab5f-7de02513c288', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11155', + 'x-ms-correlation-request-id', + '8eddb071-f267-442d-8748-f842c9e50464', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071202Z:8eddb071-f267-442d-8748-f842c9e50464', + 'Date', + 'Fri, 19 Nov 2021 07:12:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0e052e85-65e5-4bf1-bb11-3c5d7d03f323', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11154', + 'x-ms-correlation-request-id', + '690aad2d-197b-4356-8ec8-51a8d927fe0b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071202Z:690aad2d-197b-4356-8ec8-51a8d927fe0b', + 'Date', + 'Fri, 19 Nov 2021 07:12:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '01d5a61c-0e11-485b-b055-a9073fdbadb2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11153', + 'x-ms-correlation-request-id', + 'c63512ba-447d-4f7b-b82d-cbd5e98161da', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071203Z:c63512ba-447d-4f7b-b82d-cbd5e98161da', + 'Date', + 'Fri, 19 Nov 2021 07:12:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7bedb8ce-568d-4d40-b9b2-d45a7f7d0880', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11152', + 'x-ms-correlation-request-id', + '49ac8c78-e2ca-446f-a801-6f9cbee0a0bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071203Z:49ac8c78-e2ca-446f-a801-6f9cbee0a0bc', + 'Date', + 'Fri, 19 Nov 2021 07:12:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dbdf03da-1f76-4783-8914-adf5d4345f37', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11151', + 'x-ms-correlation-request-id', + '4a0d740d-e531-428d-9dca-bfe273bee7aa', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071203Z:4a0d740d-e531-428d-9dca-bfe273bee7aa', + 'Date', + 'Fri, 19 Nov 2021 07:12:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2bfc7c06-dbf5-46a9-90c0-4285d1c34d8f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11150', + 'x-ms-correlation-request-id', + 'f52c2d7f-ff2b-47dc-b16f-13cc25eafbde', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071204Z:f52c2d7f-ff2b-47dc-b16f-13cc25eafbde', + 'Date', + 'Fri, 19 Nov 2021 07:12:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a92fe825-f8fa-4ddb-a4f3-2353871445c7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11149', + 'x-ms-correlation-request-id', + '1b30096c-913d-4417-8e5b-c197fc8cd11e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071204Z:1b30096c-913d-4417-8e5b-c197fc8cd11e', + 'Date', + 'Fri, 19 Nov 2021 07:12:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '507e0d2e-e71e-4a0f-ab8d-4bc9a4b18ab0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11148', + 'x-ms-correlation-request-id', + '33be24c7-4a7a-4e88-8110-a3507923ec83', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071204Z:33be24c7-4a7a-4e88-8110-a3507923ec83', + 'Date', + 'Fri, 19 Nov 2021 07:12:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5e8ebece-c23a-4e74-95e8-b55fb0110b44', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11147', + 'x-ms-correlation-request-id', + '6c486c9b-7036-4b6c-8523-1b880e265d6c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071204Z:6c486c9b-7036-4b6c-8523-1b880e265d6c', + 'Date', + 'Fri, 19 Nov 2021 07:12:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5e89037a-25ce-45b5-ad43-54309f4e7703', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11146', + 'x-ms-correlation-request-id', + '79b5f373-76ac-4575-a570-df36fe8a0503', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071205Z:79b5f373-76ac-4575-a570-df36fe8a0503', + 'Date', + 'Fri, 19 Nov 2021 07:12:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2789584e-80f2-4ec0-b68f-28e509fb9dca', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11145', + 'x-ms-correlation-request-id', + '1157d1c3-96be-43b9-bd82-1534c678f752', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071205Z:1157d1c3-96be-43b9-bd82-1534c678f752', + 'Date', + 'Fri, 19 Nov 2021 07:12:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4abc9aa5-b511-4be1-a3e2-bbd3ccd72e5d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11144', + 'x-ms-correlation-request-id', + '2b26ce62-cc74-4443-ae98-910c7283f4f4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071205Z:2b26ce62-cc74-4443-ae98-910c7283f4f4', + 'Date', + 'Fri, 19 Nov 2021 07:12:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '72f4f73b-b7eb-4ffb-a39f-76268f21782b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11143', + 'x-ms-correlation-request-id', + 'cb71c9d8-5802-4748-93c0-6418826ecc78', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071206Z:cb71c9d8-5802-4748-93c0-6418826ecc78', + 'Date', + 'Fri, 19 Nov 2021 07:12:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1b977449-ee4d-474b-be6e-80aadb64d265', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11142', + 'x-ms-correlation-request-id', + 'c7f15d9d-0e7a-49e0-9f4a-b8e151900832', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071206Z:c7f15d9d-0e7a-49e0-9f4a-b8e151900832', + 'Date', + 'Fri, 19 Nov 2021 07:12:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8cc312b8-6155-4e21-a015-f27165875ae6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11141', + 'x-ms-correlation-request-id', + '821b32c7-036c-46ce-8578-b0e0cc32ddcb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071206Z:821b32c7-036c-46ce-8578-b0e0cc32ddcb', + 'Date', + 'Fri, 19 Nov 2021 07:12:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0c9f378e-8bea-4c73-b595-07c98476c4b6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11140', + 'x-ms-correlation-request-id', + 'd27cdf64-2a93-4d56-b14c-58940d4f239c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071207Z:d27cdf64-2a93-4d56-b14c-58940d4f239c', + 'Date', + 'Fri, 19 Nov 2021 07:12:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5f200695-e593-42a9-ba5f-0cc7cf1b15e6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11139', + 'x-ms-correlation-request-id', + '66f83330-e015-4109-8aed-c1e7886614c4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071207Z:66f83330-e015-4109-8aed-c1e7886614c4', + 'Date', + 'Fri, 19 Nov 2021 07:12:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2ca12f97-e9f9-4271-a25a-90c18b79f7a1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11138', + 'x-ms-correlation-request-id', + '5802c217-7f3b-4d50-9d4d-31cb342c1f6a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071207Z:5802c217-7f3b-4d50-9d4d-31cb342c1f6a', + 'Date', + 'Fri, 19 Nov 2021 07:12:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c5111fbe-7289-4529-a43c-da33b54fde36', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11137', + 'x-ms-correlation-request-id', + 'aac4315f-367b-4ba9-aadd-fa3de41f1896', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071207Z:aac4315f-367b-4ba9-aadd-fa3de41f1896', + 'Date', + 'Fri, 19 Nov 2021 07:12:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9ce9149c-97ee-4319-8319-6c953e1a01ca', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11136', + 'x-ms-correlation-request-id', + '1bd98da2-38e7-4edc-b279-1983c82f2208', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071208Z:1bd98da2-38e7-4edc-b279-1983c82f2208', + 'Date', + 'Fri, 19 Nov 2021 07:12:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '405b9188-21f9-44fd-8499-cd2a699f7c52', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11135', + 'x-ms-correlation-request-id', + '46f173c5-b466-46a9-b540-744c537d2fe1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071208Z:46f173c5-b466-46a9-b540-744c537d2fe1', + 'Date', + 'Fri, 19 Nov 2021 07:12:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2db78ceb-10d6-457f-b6f7-7e951cbad343', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11134', + 'x-ms-correlation-request-id', + 'f8467552-8606-4e53-9b91-d891e3500f53', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071208Z:f8467552-8606-4e53-9b91-d891e3500f53', + 'Date', + 'Fri, 19 Nov 2021 07:12:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6d84c364-ddd3-4dff-b76c-c186a37ad151', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11133', + 'x-ms-correlation-request-id', + '42a59fe6-506b-4aac-a92f-0067d21c096a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071209Z:42a59fe6-506b-4aac-a92f-0067d21c096a', + 'Date', + 'Fri, 19 Nov 2021 07:12:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '42887bdd-bd6c-4de9-8ea0-0f3287e0e858', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11132', + 'x-ms-correlation-request-id', + '3724f9ce-ac75-4ef2-be61-a766c01a505b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071209Z:3724f9ce-ac75-4ef2-be61-a766c01a505b', + 'Date', + 'Fri, 19 Nov 2021 07:12:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '62b12399-d99b-42e8-a68b-871f4fee76bd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11131', + 'x-ms-correlation-request-id', + 'bc7a9dc3-ca6a-4d13-bc77-5b711dabf4cf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071209Z:bc7a9dc3-ca6a-4d13-bc77-5b711dabf4cf', + 'Date', + 'Fri, 19 Nov 2021 07:12:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0f41b9be-4249-48a0-aa43-2eaa885d25a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11130', + 'x-ms-correlation-request-id', + '368f423e-bd13-4edb-8647-876a08465d5f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071210Z:368f423e-bd13-4edb-8647-876a08465d5f', + 'Date', + 'Fri, 19 Nov 2021 07:12:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ae0405c4-7e7a-4085-91d3-ed02416f40a3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11129', + 'x-ms-correlation-request-id', + '260a32b6-60d0-4ef0-b985-445071639cb0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071210Z:260a32b6-60d0-4ef0-b985-445071639cb0', + 'Date', + 'Fri, 19 Nov 2021 07:12:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1e53e46c-d4fd-414e-9834-0a8cb2a11f1b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11128', + 'x-ms-correlation-request-id', + '46e76d8b-c42e-49dc-b9d6-e721d5b411da', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071210Z:46e76d8b-c42e-49dc-b9d6-e721d5b411da', + 'Date', + 'Fri, 19 Nov 2021 07:12:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '580cbf9d-fad1-466d-aff9-5a18d120a781', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11127', + 'x-ms-correlation-request-id', + '9fa79bf1-f24b-450e-9a0f-73dd07471268', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071210Z:9fa79bf1-f24b-450e-9a0f-73dd07471268', + 'Date', + 'Fri, 19 Nov 2021 07:12:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6b97efec-9703-44db-990a-65800e15bd22', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11126', + 'x-ms-correlation-request-id', + 'cfa12e84-ad86-4ce1-88a6-4c8d078e6682', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071211Z:cfa12e84-ad86-4ce1-88a6-4c8d078e6682', + 'Date', + 'Fri, 19 Nov 2021 07:12:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7a59a81c-905f-4b02-9c79-ca74b3c1112f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11125', + 'x-ms-correlation-request-id', + '5884a82e-2aea-4963-ab8a-b5f84f783bf1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071211Z:5884a82e-2aea-4963-ab8a-b5f84f783bf1', + 'Date', + 'Fri, 19 Nov 2021 07:12:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5d981477-91fa-47b4-84bd-905e4f98fb7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11124', + 'x-ms-correlation-request-id', + '49e9005d-2a8d-4304-8ccd-33000fddca4f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071211Z:49e9005d-2a8d-4304-8ccd-33000fddca4f', + 'Date', + 'Fri, 19 Nov 2021 07:12:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4572d878-8421-4385-bef5-06947c6b2175', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11123', + 'x-ms-correlation-request-id', + '37537a48-3343-4cd5-b678-206e557013ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071212Z:37537a48-3343-4cd5-b678-206e557013ce', + 'Date', + 'Fri, 19 Nov 2021 07:12:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5c0e17e5-f238-4297-9dfa-4317b9e7bee9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11122', + 'x-ms-correlation-request-id', + '540ec343-c581-4a31-b932-717607c964f5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071212Z:540ec343-c581-4a31-b932-717607c964f5', + 'Date', + 'Fri, 19 Nov 2021 07:12:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '95e6424b-1563-4f4e-8023-14a162036d9b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11121', + 'x-ms-correlation-request-id', + '685eb155-ebc0-414d-8241-6fbebdbbff55', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071212Z:685eb155-ebc0-414d-8241-6fbebdbbff55', + 'Date', + 'Fri, 19 Nov 2021 07:12:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a66eaacb-fcef-410f-9cf8-4ecca94bbb8d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11120', + 'x-ms-correlation-request-id', + '580b86f0-d493-472f-8a0d-a575e456fbe7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071213Z:580b86f0-d493-472f-8a0d-a575e456fbe7', + 'Date', + 'Fri, 19 Nov 2021 07:12:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '419ce6f1-f5eb-40f5-9b09-3db978a03668', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11119', + 'x-ms-correlation-request-id', + '5ab6be89-4814-4691-9fb1-4a63db491713', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071213Z:5ab6be89-4814-4691-9fb1-4a63db491713', + 'Date', + 'Fri, 19 Nov 2021 07:12:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7c652b20-b835-4c7a-aded-8b07a5dd2764', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11118', + 'x-ms-correlation-request-id', + '31c1123b-470b-442b-a3f3-de6138e5c152', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071213Z:31c1123b-470b-442b-a3f3-de6138e5c152', + 'Date', + 'Fri, 19 Nov 2021 07:12:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e32c4ee5-8090-41bd-b593-e60ee8cf9437', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11117', + 'x-ms-correlation-request-id', + '0b7d0f51-8112-4a57-a0ec-1134f126f912', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071214Z:0b7d0f51-8112-4a57-a0ec-1134f126f912', + 'Date', + 'Fri, 19 Nov 2021 07:12:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '80aeb077-1cd1-4a02-8ad3-8516aea389e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11116', + 'x-ms-correlation-request-id', + '1d101ed3-966e-452d-a372-a893288dabf9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071214Z:1d101ed3-966e-452d-a372-a893288dabf9', + 'Date', + 'Fri, 19 Nov 2021 07:12:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '027b43b6-cb5c-4f8d-94a6-e4c60ddd2053', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11115', + 'x-ms-correlation-request-id', + '0849c446-f7ef-4f3f-9add-c0380cb1e524', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071214Z:0849c446-f7ef-4f3f-9add-c0380cb1e524', + 'Date', + 'Fri, 19 Nov 2021 07:12:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8f350aff-c027-43a1-b9ea-b7cfd904f1d5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11114', + 'x-ms-correlation-request-id', + 'd3004d5a-e7cb-4c46-9f9d-9c79b1d90901', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071214Z:d3004d5a-e7cb-4c46-9f9d-9c79b1d90901', + 'Date', + 'Fri, 19 Nov 2021 07:12:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3579dff5-7123-4653-bbda-8f5fe3fe827c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11113', + 'x-ms-correlation-request-id', + '9382bdb0-75b2-4f18-9785-552a7002ec59', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071215Z:9382bdb0-75b2-4f18-9785-552a7002ec59', + 'Date', + 'Fri, 19 Nov 2021 07:12:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7ef66d74-3b87-4a0e-8bff-25c7477dc2fc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11112', + 'x-ms-correlation-request-id', + '127a76e3-8580-4368-8a17-290e38cfb183', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071215Z:127a76e3-8580-4368-8a17-290e38cfb183', + 'Date', + 'Fri, 19 Nov 2021 07:12:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'def923ba-6e1e-4c63-bf46-3b835d4f4ede', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11111', + 'x-ms-correlation-request-id', + '1cdaba44-b8ca-4e56-89cf-5226ce122c70', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071215Z:1cdaba44-b8ca-4e56-89cf-5226ce122c70', + 'Date', + 'Fri, 19 Nov 2021 07:12:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3bd1631a-c7a1-41f6-9479-357dcd3e60e1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11110', + 'x-ms-correlation-request-id', + 'bdc0d703-480e-46f3-8205-8ed085f5341c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071216Z:bdc0d703-480e-46f3-8205-8ed085f5341c', + 'Date', + 'Fri, 19 Nov 2021 07:12:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd92d4d5a-86ab-42f6-96b9-fdec5a73e1f1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11109', + 'x-ms-correlation-request-id', + 'afc1ac38-f919-44af-895e-4445b2820bc6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071216Z:afc1ac38-f919-44af-895e-4445b2820bc6', + 'Date', + 'Fri, 19 Nov 2021 07:12:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0038795d-252c-4603-b06a-fa91cacfd5a0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11108', + 'x-ms-correlation-request-id', + 'e5097f17-ed78-429f-bf1e-dc33f240bb86', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071216Z:e5097f17-ed78-429f-bf1e-dc33f240bb86', + 'Date', + 'Fri, 19 Nov 2021 07:12:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0c64108c-6d9e-4bd7-afe5-6d7a829fbc3c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11107', + 'x-ms-correlation-request-id', + 'a6acf052-d623-46f6-a12c-54ddedc6082f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071217Z:a6acf052-d623-46f6-a12c-54ddedc6082f', + 'Date', + 'Fri, 19 Nov 2021 07:12:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0c090383-0843-4d67-9c55-a998323c8d24', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11106', + 'x-ms-correlation-request-id', + 'ef6269f5-fe60-4238-925e-aa0b53281433', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071217Z:ef6269f5-fe60-4238-925e-aa0b53281433', + 'Date', + 'Fri, 19 Nov 2021 07:12:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ec386da4-6fef-4c8c-8c61-01db743ea0fc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11105', + 'x-ms-correlation-request-id', + 'ce71dcab-73d6-40f0-98ac-a2b2a9bc65e2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071217Z:ce71dcab-73d6-40f0-98ac-a2b2a9bc65e2', + 'Date', + 'Fri, 19 Nov 2021 07:12:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bd93e256-22d1-4997-bcc3-a2ae4d8c0615', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11104', + 'x-ms-correlation-request-id', + '29c8d4e5-404f-4314-96c3-6e646edbf44f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071217Z:29c8d4e5-404f-4314-96c3-6e646edbf44f', + 'Date', + 'Fri, 19 Nov 2021 07:12:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e94286b9-5fa6-4a2c-b804-4d5b64cac0d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11103', + 'x-ms-correlation-request-id', + '6059c5fc-14a5-4b26-928d-1b49ec15d7b7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071218Z:6059c5fc-14a5-4b26-928d-1b49ec15d7b7', + 'Date', + 'Fri, 19 Nov 2021 07:12:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ee7923bb-155e-4573-a323-48542c9c2346', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11102', + 'x-ms-correlation-request-id', + '8fcd04db-4bad-4d8e-8864-b143f38f1960', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071218Z:8fcd04db-4bad-4d8e-8864-b143f38f1960', + 'Date', + 'Fri, 19 Nov 2021 07:12:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3705055d-ce78-4fe5-97a5-69052c57acb7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11101', + 'x-ms-correlation-request-id', + 'c76765f7-3e9b-4259-b3ee-d4613c2ee54c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071218Z:c76765f7-3e9b-4259-b3ee-d4613c2ee54c', + 'Date', + 'Fri, 19 Nov 2021 07:12:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2381d6d7-3af6-4077-9b6c-905d7d3c90ea', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11100', + 'x-ms-correlation-request-id', + '9f277cc0-c546-42f9-85a5-6f6060e300ad', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071219Z:9f277cc0-c546-42f9-85a5-6f6060e300ad', + 'Date', + 'Fri, 19 Nov 2021 07:12:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5e799cb6-7fa5-4052-9db8-66375063e8af', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11099', + 'x-ms-correlation-request-id', + '579400d7-ed75-4534-861a-9681b9e16ad3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071219Z:579400d7-ed75-4534-861a-9681b9e16ad3', + 'Date', + 'Fri, 19 Nov 2021 07:12:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '308db6bd-34a8-409c-9c50-c44a4c072e3a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11098', + 'x-ms-correlation-request-id', + 'c51fd7ee-3016-4892-995b-b9e40d6ff426', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071219Z:c51fd7ee-3016-4892-995b-b9e40d6ff426', + 'Date', + 'Fri, 19 Nov 2021 07:12:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3ef34721-fe2a-4242-be96-f23d8812c58e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11097', + 'x-ms-correlation-request-id', + '31a49c85-b31d-472b-b1f0-e655ab256cd2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071220Z:31a49c85-b31d-472b-b1f0-e655ab256cd2', + 'Date', + 'Fri, 19 Nov 2021 07:12:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '054baff9-ffa2-4270-ba95-e3a3a5c49ff2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11096', + 'x-ms-correlation-request-id', + '38e53442-9e7a-4713-b640-d97a4d14df25', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071220Z:38e53442-9e7a-4713-b640-d97a4d14df25', + 'Date', + 'Fri, 19 Nov 2021 07:12:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91d80d25-5265-447b-8b59-fcb522b4f924', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11095', + 'x-ms-correlation-request-id', + 'bd7a6810-0163-43ae-9652-9da86756281b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071220Z:bd7a6810-0163-43ae-9652-9da86756281b', + 'Date', + 'Fri, 19 Nov 2021 07:12:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c95b500e-2cb2-4114-b1f5-933a7c1324be', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11094', + 'x-ms-correlation-request-id', + '120f7ba5-acef-450c-9555-3f2dfb1eb250', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071220Z:120f7ba5-acef-450c-9555-3f2dfb1eb250', + 'Date', + 'Fri, 19 Nov 2021 07:12:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1de43d61-3a18-4122-9aac-b84005b93e16', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11093', + 'x-ms-correlation-request-id', + '650916fd-2d47-451c-8faa-9137206bd4c5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071221Z:650916fd-2d47-451c-8faa-9137206bd4c5', + 'Date', + 'Fri, 19 Nov 2021 07:12:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4f02064b-f0f1-4688-9fc1-f7a7fdf40f6a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11092', + 'x-ms-correlation-request-id', + '637d29f5-3443-49e1-8306-f3538a614c7e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071221Z:637d29f5-3443-49e1-8306-f3538a614c7e', + 'Date', + 'Fri, 19 Nov 2021 07:12:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9f85a699-1a6d-4119-b261-c8f3a5a70028', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11091', + 'x-ms-correlation-request-id', + 'a79eddc5-86f5-4ce1-9185-dc47a3807737', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071221Z:a79eddc5-86f5-4ce1-9185-dc47a3807737', + 'Date', + 'Fri, 19 Nov 2021 07:12:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3d477815-6df4-463a-837d-f9892515433e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11090', + 'x-ms-correlation-request-id', + 'cc8546d5-664e-443c-ac06-0f896685d1c7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071222Z:cc8546d5-664e-443c-ac06-0f896685d1c7', + 'Date', + 'Fri, 19 Nov 2021 07:12:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f2e88765-dc15-4bcd-9b8b-199ec143824e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11089', + 'x-ms-correlation-request-id', + '35756c93-e66b-44da-8a1e-8c9eb21fd862', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071222Z:35756c93-e66b-44da-8a1e-8c9eb21fd862', + 'Date', + 'Fri, 19 Nov 2021 07:12:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4e4f496d-5b5d-442d-879b-4f7cc6ac1c9e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11088', + 'x-ms-correlation-request-id', + 'ebae9ff7-fce9-442a-8cbd-085ca7c2e8ee', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071222Z:ebae9ff7-fce9-442a-8cbd-085ca7c2e8ee', + 'Date', + 'Fri, 19 Nov 2021 07:12:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '083de5d1-4cd6-4194-88fe-454d43b733d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11087', + 'x-ms-correlation-request-id', + 'edceb654-a0ec-4aee-a8a6-2f6ebd6bd744', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071223Z:edceb654-a0ec-4aee-a8a6-2f6ebd6bd744', + 'Date', + 'Fri, 19 Nov 2021 07:12:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bde54780-8453-4f41-8c2a-4159e59021a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11086', + 'x-ms-correlation-request-id', + 'de69decb-f9c5-40e7-9af9-cd03d90f71c3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071223Z:de69decb-f9c5-40e7-9af9-cd03d90f71c3', + 'Date', + 'Fri, 19 Nov 2021 07:12:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eb167b66-a5e4-4084-af96-c5235e216b6f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11085', + 'x-ms-correlation-request-id', + 'cd1879eb-a1bc-46f3-91ad-d48a39335885', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071223Z:cd1879eb-a1bc-46f3-91ad-d48a39335885', + 'Date', + 'Fri, 19 Nov 2021 07:12:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '85737818-090a-4622-848f-7479985afb70', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11084', + 'x-ms-correlation-request-id', + '14aed451-d2d1-4d4b-abfb-d6ef9f865a26', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071223Z:14aed451-d2d1-4d4b-abfb-d6ef9f865a26', + 'Date', + 'Fri, 19 Nov 2021 07:12:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '11deb89f-60cb-40db-b382-3aea07e62dbe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11083', + 'x-ms-correlation-request-id', + 'c407d956-a90b-4349-a340-0c9913643633', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071224Z:c407d956-a90b-4349-a340-0c9913643633', + 'Date', + 'Fri, 19 Nov 2021 07:12:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c07e6477-75f4-46f2-a627-e98b52de30a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11082', + 'x-ms-correlation-request-id', + '150c02d1-16ec-4905-88d3-22afc0bb7405', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071224Z:150c02d1-16ec-4905-88d3-22afc0bb7405', + 'Date', + 'Fri, 19 Nov 2021 07:12:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ac027e0c-1c0b-4734-8287-0b04a4187530', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11081', + 'x-ms-correlation-request-id', + 'a4e8f9ec-36d6-45ec-b0c5-59a8720c8028', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071224Z:a4e8f9ec-36d6-45ec-b0c5-59a8720c8028', + 'Date', + 'Fri, 19 Nov 2021 07:12:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '64762bae-e59a-415d-8e6c-ce3b59749afe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11080', + 'x-ms-correlation-request-id', + '4025adf3-3a10-45f7-9396-58e62f85d08a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071225Z:4025adf3-3a10-45f7-9396-58e62f85d08a', + 'Date', + 'Fri, 19 Nov 2021 07:12:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '172611ac-00f2-4776-a115-0f7e24fce44b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11079', + 'x-ms-correlation-request-id', + 'dfd4425b-0456-41cf-b008-df60f6659fda', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071225Z:dfd4425b-0456-41cf-b008-df60f6659fda', + 'Date', + 'Fri, 19 Nov 2021 07:12:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '39b986ec-9124-442b-acf5-d2c67aa606c3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11078', + 'x-ms-correlation-request-id', + '17e061aa-976e-471c-ba68-7538d1fbd0bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071225Z:17e061aa-976e-471c-ba68-7538d1fbd0bc', + 'Date', + 'Fri, 19 Nov 2021 07:12:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e3bd06c8-c5ca-4a68-8516-4a671a3ec595', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11077', + 'x-ms-correlation-request-id', + 'bfd1d1df-9497-4b61-836d-a6a97adf29ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071226Z:bfd1d1df-9497-4b61-836d-a6a97adf29ca', + 'Date', + 'Fri, 19 Nov 2021 07:12:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '02cf13f5-8b3b-438e-bce8-98404a3df802', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11076', + 'x-ms-correlation-request-id', + '7c0f32f4-9057-422d-8dd6-3d8c90f51b3d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071226Z:7c0f32f4-9057-422d-8dd6-3d8c90f51b3d', + 'Date', + 'Fri, 19 Nov 2021 07:12:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bafac993-bca1-4bdd-9b03-b76956b44641', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11075', + 'x-ms-correlation-request-id', + '3084aa00-a6c7-4d13-ac5d-b8ef73f3e7a0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071226Z:3084aa00-a6c7-4d13-ac5d-b8ef73f3e7a0', + 'Date', + 'Fri, 19 Nov 2021 07:12:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '587b0968-bbf6-4e80-a208-0818f3a51359', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11074', + 'x-ms-correlation-request-id', + '2ef13a11-5eee-4e06-becb-569b9122a862', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071226Z:2ef13a11-5eee-4e06-becb-569b9122a862', + 'Date', + 'Fri, 19 Nov 2021 07:12:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ca75817e-af47-492b-a134-7479ed3dd919', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11073', + 'x-ms-correlation-request-id', + '10cd212c-3af9-4409-9c86-81a3f8f97348', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071227Z:10cd212c-3af9-4409-9c86-81a3f8f97348', + 'Date', + 'Fri, 19 Nov 2021 07:12:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '67ed99e6-0a91-4c16-83da-724961f7816c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11072', + 'x-ms-correlation-request-id', + 'c915f08d-4c4b-4a44-8df9-ed17042c10ea', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071227Z:c915f08d-4c4b-4a44-8df9-ed17042c10ea', + 'Date', + 'Fri, 19 Nov 2021 07:12:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fd3bfe24-9105-4261-af64-67c152f0ce15', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11071', + 'x-ms-correlation-request-id', + '76bc5b2c-1bdf-40fc-b315-6fcf64a88e95', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071227Z:76bc5b2c-1bdf-40fc-b315-6fcf64a88e95', + 'Date', + 'Fri, 19 Nov 2021 07:12:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '44f10762-9e9e-4c40-8b5a-0904df0c9141', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11070', + 'x-ms-correlation-request-id', + 'de894fc8-bb71-4be1-8910-78670f46115d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071228Z:de894fc8-bb71-4be1-8910-78670f46115d', + 'Date', + 'Fri, 19 Nov 2021 07:12:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '694941cd-d0de-4f8a-96e3-4bf5b64a9b0d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11069', + 'x-ms-correlation-request-id', + '2fc98cba-5369-4f97-bee0-adbe2f4f3d92', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071228Z:2fc98cba-5369-4f97-bee0-adbe2f4f3d92', + 'Date', + 'Fri, 19 Nov 2021 07:12:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0140716f-cabc-4ad8-864b-4a5f84485e10', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11068', + 'x-ms-correlation-request-id', + '35ca4558-e8a9-4aae-9d46-1d985d7e5a18', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071228Z:35ca4558-e8a9-4aae-9d46-1d985d7e5a18', + 'Date', + 'Fri, 19 Nov 2021 07:12:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ecc10467-250a-4287-bdfb-ff16ef54bfd7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11067', + 'x-ms-correlation-request-id', + '1bd9e975-d9f6-49d8-ab07-1ef6df89df49', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071229Z:1bd9e975-d9f6-49d8-ab07-1ef6df89df49', + 'Date', + 'Fri, 19 Nov 2021 07:12:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6e401ecb-34e6-43c7-8ad8-89d33dbf44e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11066', + 'x-ms-correlation-request-id', + 'b73cb19a-cb88-42c5-9ed5-24c521ae563c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071229Z:b73cb19a-cb88-42c5-9ed5-24c521ae563c', + 'Date', + 'Fri, 19 Nov 2021 07:12:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a2814a9a-8960-49f0-88f8-95c22dc05412', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11065', + 'x-ms-correlation-request-id', + '966bfe61-e7ec-40da-992b-8fc811252d59', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071229Z:966bfe61-e7ec-40da-992b-8fc811252d59', + 'Date', + 'Fri, 19 Nov 2021 07:12:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9ce52054-1d41-466a-8974-764cb381415f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11064', + 'x-ms-correlation-request-id', + 'a3abb14a-8513-4011-81ea-64a095800f2f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071229Z:a3abb14a-8513-4011-81ea-64a095800f2f', + 'Date', + 'Fri, 19 Nov 2021 07:12:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f3aa2758-60ac-4bd7-a960-da107ade6586', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11063', + 'x-ms-correlation-request-id', + '8cbcec9d-2741-4b9d-a13b-e1c5d499cae8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071230Z:8cbcec9d-2741-4b9d-a13b-e1c5d499cae8', + 'Date', + 'Fri, 19 Nov 2021 07:12:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0dfe1772-a384-49ea-92d4-43988b012325', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11062', + 'x-ms-correlation-request-id', + 'a4bd754d-d792-449b-a4e2-6a1d75ed5727', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071230Z:a4bd754d-d792-449b-a4e2-6a1d75ed5727', + 'Date', + 'Fri, 19 Nov 2021 07:12:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9b5c5d41-9a94-44b3-ab26-adcac4897bbb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11061', + 'x-ms-correlation-request-id', + '3dafcd4d-d30b-4808-9c8e-9bd51525489d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071230Z:3dafcd4d-d30b-4808-9c8e-9bd51525489d', + 'Date', + 'Fri, 19 Nov 2021 07:12:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '20dfda53-2319-48ea-a2fc-4afa592e022e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11060', + 'x-ms-correlation-request-id', + 'bd688747-20fa-469f-903c-b98e68b374b1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071231Z:bd688747-20fa-469f-903c-b98e68b374b1', + 'Date', + 'Fri, 19 Nov 2021 07:12:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '15909d4f-01d4-4d4f-8d48-741e267de16b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11059', + 'x-ms-correlation-request-id', + 'f8001405-0e02-4801-b55f-029f90e5bd6c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071231Z:f8001405-0e02-4801-b55f-029f90e5bd6c', + 'Date', + 'Fri, 19 Nov 2021 07:12:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5f98627d-7b55-4710-aeb2-e55199c4cbc1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11058', + 'x-ms-correlation-request-id', + '60928ba3-d1e5-41e2-bb0a-e84d05ba4cea', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071231Z:60928ba3-d1e5-41e2-bb0a-e84d05ba4cea', + 'Date', + 'Fri, 19 Nov 2021 07:12:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5ed2eb1b-4806-4688-9947-19583cffea5d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11057', + 'x-ms-correlation-request-id', + '875d3773-7bc2-4eee-b884-c0d85d1d38f7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071232Z:875d3773-7bc2-4eee-b884-c0d85d1d38f7', + 'Date', + 'Fri, 19 Nov 2021 07:12:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ebb66e77-1ad1-4e34-8704-660814326b9b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11056', + 'x-ms-correlation-request-id', + '363da359-7143-469f-96ca-e44fd6dacef6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071232Z:363da359-7143-469f-96ca-e44fd6dacef6', + 'Date', + 'Fri, 19 Nov 2021 07:12:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ef9da360-47dd-41f4-ac6a-8075e1605d03', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11055', + 'x-ms-correlation-request-id', + '41c225ce-f081-4373-9c51-891d15e944e3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071233Z:41c225ce-f081-4373-9c51-891d15e944e3', + 'Date', + 'Fri, 19 Nov 2021 07:12:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ac40a553-c7e3-476b-ad64-8764cc7e91c4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11054', + 'x-ms-correlation-request-id', + 'e3be5ac5-3dfa-4f47-aa48-5542eb4e6fc0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071233Z:e3be5ac5-3dfa-4f47-aa48-5542eb4e6fc0', + 'Date', + 'Fri, 19 Nov 2021 07:12:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '30f2d1af-17b5-4c1e-bf47-d9c230091a3e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11053', + 'x-ms-correlation-request-id', + 'a20e0c40-42ed-4143-869f-7702ef1c18ab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071233Z:a20e0c40-42ed-4143-869f-7702ef1c18ab', + 'Date', + 'Fri, 19 Nov 2021 07:12:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bd33c5e5-c664-4092-9fec-405d5d4ceadd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11052', + 'x-ms-correlation-request-id', + '744e9da9-35e5-4124-9556-2bcb3b040e1a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071234Z:744e9da9-35e5-4124-9556-2bcb3b040e1a', + 'Date', + 'Fri, 19 Nov 2021 07:12:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3256ad24-ee28-44c2-8edb-0d035f90350c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11051', + 'x-ms-correlation-request-id', + '6a4144cf-f68e-4620-9d82-80c6e8d557b8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071234Z:6a4144cf-f68e-4620-9d82-80c6e8d557b8', + 'Date', + 'Fri, 19 Nov 2021 07:12:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ed556bfa-b88b-4f0c-addd-2b1f5f786b60', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11050', + 'x-ms-correlation-request-id', + '18cf8791-256f-4572-a0e4-2ac0687584aa', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071234Z:18cf8791-256f-4572-a0e4-2ac0687584aa', + 'Date', + 'Fri, 19 Nov 2021 07:12:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0225a55d-f258-4850-ad5c-805ad69e07f0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11049', + 'x-ms-correlation-request-id', + '638c2da9-4c9e-4591-bf9f-e8922ded7327', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071235Z:638c2da9-4c9e-4591-bf9f-e8922ded7327', + 'Date', + 'Fri, 19 Nov 2021 07:12:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '71fbe129-7c48-471d-8b83-8dc7df33c2b4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11048', + 'x-ms-correlation-request-id', + 'd376eb74-ef5f-40fb-869d-ac4dd517fb4a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071235Z:d376eb74-ef5f-40fb-869d-ac4dd517fb4a', + 'Date', + 'Fri, 19 Nov 2021 07:12:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f61a02d2-a9b5-4a19-a952-3be920eb748c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11047', + 'x-ms-correlation-request-id', + 'b10091d1-538e-4c3f-a558-dca7ac4ed6da', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071235Z:b10091d1-538e-4c3f-a558-dca7ac4ed6da', + 'Date', + 'Fri, 19 Nov 2021 07:12:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '21496f53-718b-4a7d-9875-68e1012cf7c3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11046', + 'x-ms-correlation-request-id', + '461a830b-fc39-4eaa-95b2-968d00143c7f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071236Z:461a830b-fc39-4eaa-95b2-968d00143c7f', + 'Date', + 'Fri, 19 Nov 2021 07:12:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '07b084ed-16bc-44ea-b7dd-e1754e8b4ee8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11045', + 'x-ms-correlation-request-id', + '51bb2783-b9d1-4c55-ac01-171447d9c366', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071236Z:51bb2783-b9d1-4c55-ac01-171447d9c366', + 'Date', + 'Fri, 19 Nov 2021 07:12:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3e367cdd-7229-4a5f-9dde-ba48466ba66f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11044', + 'x-ms-correlation-request-id', + '41c4dd06-baba-420a-b739-2b48115cfcea', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071236Z:41c4dd06-baba-420a-b739-2b48115cfcea', + 'Date', + 'Fri, 19 Nov 2021 07:12:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8e8c6e5b-08f8-48ad-a6e8-0907e9f10dab', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11043', + 'x-ms-correlation-request-id', + '20e406a2-3d1c-453b-9dc5-701b8a12dc0c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071236Z:20e406a2-3d1c-453b-9dc5-701b8a12dc0c', + 'Date', + 'Fri, 19 Nov 2021 07:12:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '68656d67-6f41-4429-acc5-7e78fc231aef', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11042', + 'x-ms-correlation-request-id', + '4140d27e-ecdb-452d-9e18-8070e74ff04d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071237Z:4140d27e-ecdb-452d-9e18-8070e74ff04d', + 'Date', + 'Fri, 19 Nov 2021 07:12:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e6c84496-03bd-4bfd-b220-803587c89afb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11041', + 'x-ms-correlation-request-id', + '6d1afd54-9621-45e0-b1a9-66bcf1d951be', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071237Z:6d1afd54-9621-45e0-b1a9-66bcf1d951be', + 'Date', + 'Fri, 19 Nov 2021 07:12:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eed85639-52d2-4d5f-984b-7a662374ed04', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11040', + 'x-ms-correlation-request-id', + '0d92f853-7dd0-4f44-b9cf-d31568d0a966', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071237Z:0d92f853-7dd0-4f44-b9cf-d31568d0a966', + 'Date', + 'Fri, 19 Nov 2021 07:12:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '05951934-51a1-46c6-a891-469145e8c2b7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11039', + 'x-ms-correlation-request-id', + '87076f2e-786a-4d78-830e-e8b62de6af89', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071238Z:87076f2e-786a-4d78-830e-e8b62de6af89', + 'Date', + 'Fri, 19 Nov 2021 07:12:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '36fde010-1632-4355-bf75-08b28923d5cb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11038', + 'x-ms-correlation-request-id', + '7f1617c6-11d9-4c83-bc32-72650bbcc455', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071238Z:7f1617c6-11d9-4c83-bc32-72650bbcc455', + 'Date', + 'Fri, 19 Nov 2021 07:12:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c1a56404-9e02-4e46-b9b4-818263912f28', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11037', + 'x-ms-correlation-request-id', + 'db3a12f9-2e4e-4a2c-84b9-3f46dfc69cbf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071238Z:db3a12f9-2e4e-4a2c-84b9-3f46dfc69cbf', + 'Date', + 'Fri, 19 Nov 2021 07:12:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '085e5413-f7ce-4cf0-a99b-95d918ef4374', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11036', + 'x-ms-correlation-request-id', + '076b7c90-9920-4ab6-865b-161384e1bc85', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071238Z:076b7c90-9920-4ab6-865b-161384e1bc85', + 'Date', + 'Fri, 19 Nov 2021 07:12:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6e76c114-c400-4dcc-9ce7-60418b62527a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11035', + 'x-ms-correlation-request-id', + '42edb21c-f2ba-44eb-bf89-31c5c3d17302', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071239Z:42edb21c-f2ba-44eb-bf89-31c5c3d17302', + 'Date', + 'Fri, 19 Nov 2021 07:12:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '27dcd42d-6eca-428c-965e-166788815597', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11034', + 'x-ms-correlation-request-id', + '0e0fbd7b-71a5-457d-985d-9d0d578a8a2a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071239Z:0e0fbd7b-71a5-457d-985d-9d0d578a8a2a', + 'Date', + 'Fri, 19 Nov 2021 07:12:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fc16ea32-4c77-44a3-b133-42a8707a208e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11033', + 'x-ms-correlation-request-id', + 'e55c7e31-8d9a-441f-8f32-3a5217fea90c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071239Z:e55c7e31-8d9a-441f-8f32-3a5217fea90c', + 'Date', + 'Fri, 19 Nov 2021 07:12:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6ed99bb4-259a-49d4-a686-a0810e9201d5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11032', + 'x-ms-correlation-request-id', + 'bad22622-7ee8-430c-b4cf-068b3dae5dbf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071240Z:bad22622-7ee8-430c-b4cf-068b3dae5dbf', + 'Date', + 'Fri, 19 Nov 2021 07:12:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fe1e6c46-4578-4789-9313-e0dd8571e401', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11031', + 'x-ms-correlation-request-id', + 'c9da7b06-d700-4f0f-8d44-cec36f395877', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071240Z:c9da7b06-d700-4f0f-8d44-cec36f395877', + 'Date', + 'Fri, 19 Nov 2021 07:12:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7ee298bb-c3d7-433e-8568-9b055eef296c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11030', + 'x-ms-correlation-request-id', + '6e29339b-3250-40d5-96e2-18cc8819775a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071240Z:6e29339b-3250-40d5-96e2-18cc8819775a', + 'Date', + 'Fri, 19 Nov 2021 07:12:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cee0ffe7-acce-41f0-a073-30b015c31fd5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11029', + 'x-ms-correlation-request-id', + '11c79969-eb7d-4b54-b76f-215990922726', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071241Z:11c79969-eb7d-4b54-b76f-215990922726', + 'Date', + 'Fri, 19 Nov 2021 07:12:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8be0fb30-634f-4a18-a27c-45cbbee686b8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11028', + 'x-ms-correlation-request-id', + '8bebb0ad-7d1a-4b4e-b434-3e2b938fcdea', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071241Z:8bebb0ad-7d1a-4b4e-b434-3e2b938fcdea', + 'Date', + 'Fri, 19 Nov 2021 07:12:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cb74ae65-ebc3-4197-81ae-0c4b3e9d0ad7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11027', + 'x-ms-correlation-request-id', + '6c9cc82e-4c7c-40b7-a131-c25f386bb9a8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071241Z:6c9cc82e-4c7c-40b7-a131-c25f386bb9a8', + 'Date', + 'Fri, 19 Nov 2021 07:12:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bd05ee97-58a3-45a1-b7d4-484cb882a2c6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11026', + 'x-ms-correlation-request-id', + '5decae30-0a9c-402e-a046-527969167081', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071241Z:5decae30-0a9c-402e-a046-527969167081', + 'Date', + 'Fri, 19 Nov 2021 07:12:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '512e0138-e0a3-4dcf-8faa-da6f670e7a56', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11025', + 'x-ms-correlation-request-id', + 'e9bf9c11-ce19-484f-82bd-9588862319cc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071242Z:e9bf9c11-ce19-484f-82bd-9588862319cc', + 'Date', + 'Fri, 19 Nov 2021 07:12:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8f9b69e7-c122-43da-9cc2-9a1b4260356a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11024', + 'x-ms-correlation-request-id', + 'a9fec7e6-574c-405f-a2ae-4bbcb23e55bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071242Z:a9fec7e6-574c-405f-a2ae-4bbcb23e55bc', + 'Date', + 'Fri, 19 Nov 2021 07:12:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '00838039-8683-4751-ab2b-14885908ab9e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11023', + 'x-ms-correlation-request-id', + 'c458f611-856b-422d-beb6-c62d8cd3a28c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071242Z:c458f611-856b-422d-beb6-c62d8cd3a28c', + 'Date', + 'Fri, 19 Nov 2021 07:12:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '157168bb-522d-4f45-9a0e-b9cb9bf9b9b0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11022', + 'x-ms-correlation-request-id', + '6c6baadf-f8ab-4edc-b00a-e2b4303df449', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071243Z:6c6baadf-f8ab-4edc-b00a-e2b4303df449', + 'Date', + 'Fri, 19 Nov 2021 07:12:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3aea3d61-f16f-4cc4-8fb0-dc02fe8035e2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11021', + 'x-ms-correlation-request-id', + 'e99da55b-121e-42d5-bc1f-932ecbbbb477', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071243Z:e99da55b-121e-42d5-bc1f-932ecbbbb477', + 'Date', + 'Fri, 19 Nov 2021 07:12:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e57b7b1c-6687-4a74-8df5-8ca9de7a7b77', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11020', + 'x-ms-correlation-request-id', + '1b5e8e9a-6baf-4264-9444-c0cdf5303e2a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071243Z:1b5e8e9a-6baf-4264-9444-c0cdf5303e2a', + 'Date', + 'Fri, 19 Nov 2021 07:12:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '786be843-733a-4f9e-a15d-59ecd83d7de3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11019', + 'x-ms-correlation-request-id', + '14c51b1d-1326-4297-8072-09bdb8d2a2ea', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071244Z:14c51b1d-1326-4297-8072-09bdb8d2a2ea', + 'Date', + 'Fri, 19 Nov 2021 07:12:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cee296dc-e07c-4bee-acc6-783b8c03d5f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11018', + 'x-ms-correlation-request-id', + '982fbdb2-734d-4edc-b087-e8f21232f919', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071244Z:982fbdb2-734d-4edc-b087-e8f21232f919', + 'Date', + 'Fri, 19 Nov 2021 07:12:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '607fffbe-7f19-40f1-858a-add98ddaee5a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11017', + 'x-ms-correlation-request-id', + '42e03217-4378-4ef7-b599-360fd985fd0a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071244Z:42e03217-4378-4ef7-b599-360fd985fd0a', + 'Date', + 'Fri, 19 Nov 2021 07:12:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f246b59a-cc56-467d-b5a4-ae5365376338', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11016', + 'x-ms-correlation-request-id', + 'b9194e90-e7c9-48ec-a4da-0876bb50b227', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071244Z:b9194e90-e7c9-48ec-a4da-0876bb50b227', + 'Date', + 'Fri, 19 Nov 2021 07:12:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '111920bb-8920-4b81-bd30-bfb1cab65850', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11015', + 'x-ms-correlation-request-id', + '11deb672-00bb-4777-9245-c7f6e5e1016d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071245Z:11deb672-00bb-4777-9245-c7f6e5e1016d', + 'Date', + 'Fri, 19 Nov 2021 07:12:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '07b2ed4d-0e50-4e2e-bf45-9fcf76f1ea08', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11014', + 'x-ms-correlation-request-id', + '739929f8-5e48-4d22-8fa6-656c2efac4d1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071245Z:739929f8-5e48-4d22-8fa6-656c2efac4d1', + 'Date', + 'Fri, 19 Nov 2021 07:12:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4f37427f-8aeb-4c2c-89cf-08883de9002c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11013', + 'x-ms-correlation-request-id', + '972dedee-8b72-4f01-9cf6-9ec2a3703be1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071245Z:972dedee-8b72-4f01-9cf6-9ec2a3703be1', + 'Date', + 'Fri, 19 Nov 2021 07:12:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '97439b8f-d915-4529-9a98-45f9803afd10', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11012', + 'x-ms-correlation-request-id', + '0fe93bc3-11de-48e9-974a-f7973a5abbe0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071246Z:0fe93bc3-11de-48e9-974a-f7973a5abbe0', + 'Date', + 'Fri, 19 Nov 2021 07:12:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1e2cb916-8427-4fab-9ff0-300b46b48ab1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11011', + 'x-ms-correlation-request-id', + 'f7f33abe-d96f-4177-b059-26724c55e916', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071246Z:f7f33abe-d96f-4177-b059-26724c55e916', + 'Date', + 'Fri, 19 Nov 2021 07:12:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5daaddc4-1d00-447f-bc96-750419823b5b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11010', + 'x-ms-correlation-request-id', + '9abd0b84-8dbc-4031-9ee4-59e1e5643efd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071246Z:9abd0b84-8dbc-4031-9ee4-59e1e5643efd', + 'Date', + 'Fri, 19 Nov 2021 07:12:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'acb21172-bd05-4ba7-8f45-3171445f4636', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11009', + 'x-ms-correlation-request-id', + 'f2865aba-9572-42bc-9b10-eb2bf54e066a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071247Z:f2865aba-9572-42bc-9b10-eb2bf54e066a', + 'Date', + 'Fri, 19 Nov 2021 07:12:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '59ab529f-e174-4d2d-8cfe-1c75251fcbff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11008', + 'x-ms-correlation-request-id', + 'e0d59b5c-f071-4b21-bcdd-a24401e6a7c0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071247Z:e0d59b5c-f071-4b21-bcdd-a24401e6a7c0', + 'Date', + 'Fri, 19 Nov 2021 07:12:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fb58915c-1891-46de-ae1c-78c22bbbf938', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11007', + 'x-ms-correlation-request-id', + 'fc852e39-a6d3-4312-98e3-ce22a9abac34', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071247Z:fc852e39-a6d3-4312-98e3-ce22a9abac34', + 'Date', + 'Fri, 19 Nov 2021 07:12:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '283aaee4-566d-47aa-9e99-0ff09532b4e7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11006', + 'x-ms-correlation-request-id', + '42cf664a-3e2b-408c-948e-773f979db9c2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071247Z:42cf664a-3e2b-408c-948e-773f979db9c2', + 'Date', + 'Fri, 19 Nov 2021 07:12:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd90d6edc-9b51-4d22-8b34-c494d3c34851', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11005', + 'x-ms-correlation-request-id', + 'c09809e8-7088-47a8-8b6b-b1f42d56168e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071248Z:c09809e8-7088-47a8-8b6b-b1f42d56168e', + 'Date', + 'Fri, 19 Nov 2021 07:12:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '31ba13c2-c985-4353-8b90-4783b03251ca', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11004', + 'x-ms-correlation-request-id', + 'c7efe343-0e12-43b9-b6a4-a01ae758c9a8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071248Z:c7efe343-0e12-43b9-b6a4-a01ae758c9a8', + 'Date', + 'Fri, 19 Nov 2021 07:12:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd71c82af-1484-4d47-bfb7-1d0ef2ba90bc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11003', + 'x-ms-correlation-request-id', + '6174bedf-44f6-4772-a9e3-826131050113', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071248Z:6174bedf-44f6-4772-a9e3-826131050113', + 'Date', + 'Fri, 19 Nov 2021 07:12:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '30dbfb47-00ac-4b2d-ab02-022caf73a515', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11002', + 'x-ms-correlation-request-id', + 'e8572f12-7461-4801-a071-338dd5981672', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071249Z:e8572f12-7461-4801-a071-338dd5981672', + 'Date', + 'Fri, 19 Nov 2021 07:12:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f5221f13-4e1c-49fb-a03d-bc01963433f2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11001', + 'x-ms-correlation-request-id', + '76dc9378-e061-4cd3-b85d-423a0c8e9f73', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071249Z:76dc9378-e061-4cd3-b85d-423a0c8e9f73', + 'Date', + 'Fri, 19 Nov 2021 07:12:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8b9243b8-3492-49a4-b6e0-93bf37ca513d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11000', + 'x-ms-correlation-request-id', + 'ba8465ff-738a-4345-9b3b-d041c2ae05e4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071249Z:ba8465ff-738a-4345-9b3b-d041c2ae05e4', + 'Date', + 'Fri, 19 Nov 2021 07:12:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '559ec4d1-04cb-4488-b62d-eb6fb6843062', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10999', + 'x-ms-correlation-request-id', + '6c730df6-af88-4580-805c-ac784891498d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071250Z:6c730df6-af88-4580-805c-ac784891498d', + 'Date', + 'Fri, 19 Nov 2021 07:12:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bbd30729-3c79-4561-bbf3-4eca14afbf4c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10998', + 'x-ms-correlation-request-id', + '430550fd-7bb8-4c7b-a10e-66f91d779212', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071250Z:430550fd-7bb8-4c7b-a10e-66f91d779212', + 'Date', + 'Fri, 19 Nov 2021 07:12:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3645a75b-f0d7-40d0-a525-fb280b277858', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10997', + 'x-ms-correlation-request-id', + '1224f092-69fc-4940-9673-84b59a7c7331', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071250Z:1224f092-69fc-4940-9673-84b59a7c7331', + 'Date', + 'Fri, 19 Nov 2021 07:12:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '800f320d-cd93-4d6b-ba7d-59c8c777badc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10996', + 'x-ms-correlation-request-id', + 'aefc6e83-88dd-499b-8419-d4d2e972be37', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071251Z:aefc6e83-88dd-499b-8419-d4d2e972be37', + 'Date', + 'Fri, 19 Nov 2021 07:12:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '726d8618-6b19-4207-8845-ed26deead669', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10995', + 'x-ms-correlation-request-id', + 'aacd5250-819b-4d64-a534-0dbb54df0ee7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071251Z:aacd5250-819b-4d64-a534-0dbb54df0ee7', + 'Date', + 'Fri, 19 Nov 2021 07:12:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8030026a-6f9c-4c92-b01c-423c154ce8a6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10994', + 'x-ms-correlation-request-id', + '0f885584-e06a-4343-afcc-76c847efb446', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071251Z:0f885584-e06a-4343-afcc-76c847efb446', + 'Date', + 'Fri, 19 Nov 2021 07:12:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1d73908a-edd3-414e-b3f7-d7f7c4c5b844', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10993', + 'x-ms-correlation-request-id', + '9ec513da-01a9-4255-8b5d-23fa68f12cad', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071251Z:9ec513da-01a9-4255-8b5d-23fa68f12cad', + 'Date', + 'Fri, 19 Nov 2021 07:12:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '579527ab-6920-47f6-a458-c014e3a45372', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10992', + 'x-ms-correlation-request-id', + '15161426-aecc-4ee4-b0ba-a4ebbd7e3be2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071252Z:15161426-aecc-4ee4-b0ba-a4ebbd7e3be2', + 'Date', + 'Fri, 19 Nov 2021 07:12:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ace29e59-235a-4918-95b1-1bd981119338', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10991', + 'x-ms-correlation-request-id', + '52ec5f66-869b-44be-8ba8-a7d7539378a6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071252Z:52ec5f66-869b-44be-8ba8-a7d7539378a6', + 'Date', + 'Fri, 19 Nov 2021 07:12:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '73cfd2f3-eee5-46ba-a4eb-f1ee940e4b8d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10990', + 'x-ms-correlation-request-id', + '1646c670-bde0-4a4f-b968-142f188a7ae9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071252Z:1646c670-bde0-4a4f-b968-142f188a7ae9', + 'Date', + 'Fri, 19 Nov 2021 07:12:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '81217e58-f0fb-41b9-ad14-f6dc09b80d9a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10989', + 'x-ms-correlation-request-id', + 'dd6e548e-f2bf-4f87-8ca6-2e11e7738140', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071253Z:dd6e548e-f2bf-4f87-8ca6-2e11e7738140', + 'Date', + 'Fri, 19 Nov 2021 07:12:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '725c41c7-ef0b-4129-b4aa-562c3b17ff3d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10988', + 'x-ms-correlation-request-id', + 'f7e65428-7518-4f19-b97f-1f2beca47aa7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071253Z:f7e65428-7518-4f19-b97f-1f2beca47aa7', + 'Date', + 'Fri, 19 Nov 2021 07:12:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2735a9ef-1ac0-4155-975d-fae5e26572f2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10987', + 'x-ms-correlation-request-id', + '6668693b-aa75-48e4-b989-994d751417ee', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071253Z:6668693b-aa75-48e4-b989-994d751417ee', + 'Date', + 'Fri, 19 Nov 2021 07:12:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7a1d54b1-8b61-46c1-8b08-d0310dad263e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10986', + 'x-ms-correlation-request-id', + 'a90ececd-af84-490b-b28c-00e5d35f5655', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071254Z:a90ececd-af84-490b-b28c-00e5d35f5655', + 'Date', + 'Fri, 19 Nov 2021 07:12:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5daeb924-497b-40d7-8cd8-f14d88a0a0b4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10985', + 'x-ms-correlation-request-id', + '0e3cd835-bf6c-4483-9485-9c4f023f35e6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071254Z:0e3cd835-bf6c-4483-9485-9c4f023f35e6', + 'Date', + 'Fri, 19 Nov 2021 07:12:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '22b103b7-ff73-444a-ad28-13b74e56c0e1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10984', + 'x-ms-correlation-request-id', + 'ab044192-c056-4759-8d49-6126a63919de', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071254Z:ab044192-c056-4759-8d49-6126a63919de', + 'Date', + 'Fri, 19 Nov 2021 07:12:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dd311178-d7ae-49c5-93f5-4a6d9749bbd6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10983', + 'x-ms-correlation-request-id', + 'a01bd6fa-f505-45b5-911a-b91afa975f6c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071254Z:a01bd6fa-f505-45b5-911a-b91afa975f6c', + 'Date', + 'Fri, 19 Nov 2021 07:12:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '13d3db57-c586-44dd-a868-a33c086387cf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10982', + 'x-ms-correlation-request-id', + 'dd4b3dc8-d34c-48b7-8759-57ecac5e7048', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071255Z:dd4b3dc8-d34c-48b7-8759-57ecac5e7048', + 'Date', + 'Fri, 19 Nov 2021 07:12:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '558ff7e6-8076-468c-96eb-a26088176a02', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10981', + 'x-ms-correlation-request-id', + 'ec48523a-dd78-4241-ba9f-5e8335900d04', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071255Z:ec48523a-dd78-4241-ba9f-5e8335900d04', + 'Date', + 'Fri, 19 Nov 2021 07:12:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a67d1e42-9b92-4791-87e0-ddd302e50706', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10980', + 'x-ms-correlation-request-id', + '266c30a8-3272-451d-a48e-769cdf959283', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071255Z:266c30a8-3272-451d-a48e-769cdf959283', + 'Date', + 'Fri, 19 Nov 2021 07:12:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4417d393-cfc3-463c-aa12-37995180bf76', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10979', + 'x-ms-correlation-request-id', + '351cccc4-cae3-40e4-98dc-44c6883435f1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071256Z:351cccc4-cae3-40e4-98dc-44c6883435f1', + 'Date', + 'Fri, 19 Nov 2021 07:12:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5c0708f2-5246-4393-a37b-c526848dc8e7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10978', + 'x-ms-correlation-request-id', + '8fa5bc63-c9ae-408a-84a5-7c568982fee8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071256Z:8fa5bc63-c9ae-408a-84a5-7c568982fee8', + 'Date', + 'Fri, 19 Nov 2021 07:12:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '355da691-1632-4c6b-8868-c04515474d4b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10977', + 'x-ms-correlation-request-id', + '5536dead-4acc-4623-a1c5-770d82d7d600', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071256Z:5536dead-4acc-4623-a1c5-770d82d7d600', + 'Date', + 'Fri, 19 Nov 2021 07:12:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd048859c-f584-451b-99d2-286ea5932c26', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10976', + 'x-ms-correlation-request-id', + 'eda28ce3-0c07-4d88-b930-26183777009a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071257Z:eda28ce3-0c07-4d88-b930-26183777009a', + 'Date', + 'Fri, 19 Nov 2021 07:12:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '37c4806c-45bd-44ac-86ef-aa78a75a299f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10975', + 'x-ms-correlation-request-id', + '20caac76-4f49-4071-a377-be56b0e8a296', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071257Z:20caac76-4f49-4071-a377-be56b0e8a296', + 'Date', + 'Fri, 19 Nov 2021 07:12:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c133c509-2f24-408a-a40d-71b1aa68cd2a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10974', + 'x-ms-correlation-request-id', + '75c7ef28-4049-4e2a-bc76-b2e407851bc5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071257Z:75c7ef28-4049-4e2a-bc76-b2e407851bc5', + 'Date', + 'Fri, 19 Nov 2021 07:12:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '36910b9c-247c-41fd-98ab-371b1045740a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10973', + 'x-ms-correlation-request-id', + 'a881b10b-38fc-44bc-bc1d-235038215b39', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071257Z:a881b10b-38fc-44bc-bc1d-235038215b39', + 'Date', + 'Fri, 19 Nov 2021 07:12:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '55948c0e-b125-48f3-9f51-e80df0f3e94d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10972', + 'x-ms-correlation-request-id', + '79871ac2-ee04-43bc-a88c-c5491879ac38', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071258Z:79871ac2-ee04-43bc-a88c-c5491879ac38', + 'Date', + 'Fri, 19 Nov 2021 07:12:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1fcd1974-3ded-43e8-83b0-105c7bd72588', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10971', + 'x-ms-correlation-request-id', + 'a23ee53d-6c52-48c8-8865-a983a06ee9eb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071258Z:a23ee53d-6c52-48c8-8865-a983a06ee9eb', + 'Date', + 'Fri, 19 Nov 2021 07:12:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '24126b49-cfe4-41aa-a800-59e2a55cc615', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10970', + 'x-ms-correlation-request-id', + 'a5ab2e41-0d15-4d1b-9057-6fa2549795d3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071258Z:a5ab2e41-0d15-4d1b-9057-6fa2549795d3', + 'Date', + 'Fri, 19 Nov 2021 07:12:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3eea5a2b-4fde-4b19-9c58-46715f9bcb31', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10969', + 'x-ms-correlation-request-id', + '45a96cac-ec0d-415c-87d1-f6726d9d34f9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071259Z:45a96cac-ec0d-415c-87d1-f6726d9d34f9', + 'Date', + 'Fri, 19 Nov 2021 07:12:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c630efde-2e00-4f45-9e57-fa7488456030', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10968', + 'x-ms-correlation-request-id', + '8c7f377c-0319-4b3e-a19e-5c5b2cf7e259', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071259Z:8c7f377c-0319-4b3e-a19e-5c5b2cf7e259', + 'Date', + 'Fri, 19 Nov 2021 07:12:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4d56e420-0142-4d73-b546-ab3a8073d51a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10967', + 'x-ms-correlation-request-id', + '55fab819-15d5-4b16-b5be-399ce5c75b73', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071259Z:55fab819-15d5-4b16-b5be-399ce5c75b73', + 'Date', + 'Fri, 19 Nov 2021 07:12:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd920e58f-3abf-48ad-a8a3-4e93a56a1827', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10966', + 'x-ms-correlation-request-id', + '535dde28-6fd5-4bb4-8a6d-c0a9ae2e4c08', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071300Z:535dde28-6fd5-4bb4-8a6d-c0a9ae2e4c08', + 'Date', + 'Fri, 19 Nov 2021 07:12:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0fbafe4a-cf8d-4aa9-b7bd-9f93e70505e3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10965', + 'x-ms-correlation-request-id', + '6082af9e-b5f1-4b73-a5a3-b59e935bf8ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071300Z:6082af9e-b5f1-4b73-a5a3-b59e935bf8ca', + 'Date', + 'Fri, 19 Nov 2021 07:12:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '72481906-02bc-467b-8dea-63196288366c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10964', + 'x-ms-correlation-request-id', + '58c7dbfc-1f3d-4e2b-ab64-009fb2b0972b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071300Z:58c7dbfc-1f3d-4e2b-ab64-009fb2b0972b', + 'Date', + 'Fri, 19 Nov 2021 07:12:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7b083827-f26e-4875-a534-4b1156eb7a9e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10963', + 'x-ms-correlation-request-id', + '7c7383b3-cf7f-46a9-9a20-b79679206288', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071300Z:7c7383b3-cf7f-46a9-9a20-b79679206288', + 'Date', + 'Fri, 19 Nov 2021 07:13:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8b9b7aa1-1625-4a5d-91f1-7c5c93865262', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10962', + 'x-ms-correlation-request-id', + 'd2ab98ac-88d6-4171-bd87-fb56f261618a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071301Z:d2ab98ac-88d6-4171-bd87-fb56f261618a', + 'Date', + 'Fri, 19 Nov 2021 07:13:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '64112d33-7e83-4126-9877-77ea74476c6d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10961', + 'x-ms-correlation-request-id', + '175b19bd-1a54-41cb-a100-efc21cf6d138', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071301Z:175b19bd-1a54-41cb-a100-efc21cf6d138', + 'Date', + 'Fri, 19 Nov 2021 07:13:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '287654d9-06e7-42cf-8753-4dfc834974d5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10960', + 'x-ms-correlation-request-id', + '8e9639c5-8384-4bc0-937d-27b668900cd6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071301Z:8e9639c5-8384-4bc0-937d-27b668900cd6', + 'Date', + 'Fri, 19 Nov 2021 07:13:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '028d67c1-a3d1-465b-a1e7-66fb6ed64d1d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10959', + 'x-ms-correlation-request-id', + '34d2fdd2-34cb-4941-9fd0-1ce6a596d587', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071302Z:34d2fdd2-34cb-4941-9fd0-1ce6a596d587', + 'Date', + 'Fri, 19 Nov 2021 07:13:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bbd2401b-bb45-43c6-aed6-4bee90ea1e79', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10958', + 'x-ms-correlation-request-id', + '46367c2f-500d-4f30-acc9-831ba06e4f0c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071302Z:46367c2f-500d-4f30-acc9-831ba06e4f0c', + 'Date', + 'Fri, 19 Nov 2021 07:13:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '25200dcd-7687-40fd-855f-38be416163f7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10957', + 'x-ms-correlation-request-id', + '94ec4cdd-81d7-469b-bb74-ffc554084ba5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071302Z:94ec4cdd-81d7-469b-bb74-ffc554084ba5', + 'Date', + 'Fri, 19 Nov 2021 07:13:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ac9d723f-c275-4f13-bfe8-a69af35d8cc6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10956', + 'x-ms-correlation-request-id', + 'ef879e54-9097-400e-8e7f-46a6ec1c4123', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071303Z:ef879e54-9097-400e-8e7f-46a6ec1c4123', + 'Date', + 'Fri, 19 Nov 2021 07:13:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '19a3eaa8-40c2-4124-9136-ffb27b4a0d4f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10955', + 'x-ms-correlation-request-id', + '3abf110b-0c7a-47aa-97b9-4ddaa7645057', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071303Z:3abf110b-0c7a-47aa-97b9-4ddaa7645057', + 'Date', + 'Fri, 19 Nov 2021 07:13:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'af032b61-938c-4d49-8e3d-62e66f4ef712', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10954', + 'x-ms-correlation-request-id', + '4ba9a697-cae2-4b91-8d19-2d939653ee8f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071303Z:4ba9a697-cae2-4b91-8d19-2d939653ee8f', + 'Date', + 'Fri, 19 Nov 2021 07:13:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '42ea6657-0985-4b77-848d-210260ec1f5a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10953', + 'x-ms-correlation-request-id', + '5c2b537e-3fc5-47c6-852f-a225cc6c7cf8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071303Z:5c2b537e-3fc5-47c6-852f-a225cc6c7cf8', + 'Date', + 'Fri, 19 Nov 2021 07:13:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '070bff1d-720e-4969-80fe-b5f18ab404ec', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10952', + 'x-ms-correlation-request-id', + '866333d8-e781-4bc7-9dcb-fd2ecf58f848', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071304Z:866333d8-e781-4bc7-9dcb-fd2ecf58f848', + 'Date', + 'Fri, 19 Nov 2021 07:13:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4e3d3206-8064-42be-b30a-3924fbf5a38b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10951', + 'x-ms-correlation-request-id', + '7b4ecee6-8b60-42cb-92c1-3de2db74f6ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071304Z:7b4ecee6-8b60-42cb-92c1-3de2db74f6ca', + 'Date', + 'Fri, 19 Nov 2021 07:13:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3d975db1-a542-47d5-8b39-e0ef00db5497', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10950', + 'x-ms-correlation-request-id', + 'da75aa48-b235-4199-ae00-6b5478d0b7a7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071304Z:da75aa48-b235-4199-ae00-6b5478d0b7a7', + 'Date', + 'Fri, 19 Nov 2021 07:13:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ab841048-36fa-4117-864b-a4ba2b1a5746', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10949', + 'x-ms-correlation-request-id', + '762d4966-16c7-4b1b-8077-3e39d7b5adb6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071305Z:762d4966-16c7-4b1b-8077-3e39d7b5adb6', + 'Date', + 'Fri, 19 Nov 2021 07:13:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b1d09f5f-de0a-4073-adde-375a3d50b40c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10948', + 'x-ms-correlation-request-id', + '4affb753-e814-4b83-ab17-4f085e121624', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071305Z:4affb753-e814-4b83-ab17-4f085e121624', + 'Date', + 'Fri, 19 Nov 2021 07:13:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '19eda555-0dbd-4299-9bfd-795f7eaa7956', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10947', + 'x-ms-correlation-request-id', + 'fb81b328-5ec5-48f8-a1fa-fdf4123a8634', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071305Z:fb81b328-5ec5-48f8-a1fa-fdf4123a8634', + 'Date', + 'Fri, 19 Nov 2021 07:13:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b1864cf6-a494-4f00-b20f-f345be23f675', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10946', + 'x-ms-correlation-request-id', + 'ddd50e52-3e88-4623-9d87-3658aa62a1db', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071306Z:ddd50e52-3e88-4623-9d87-3658aa62a1db', + 'Date', + 'Fri, 19 Nov 2021 07:13:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fd02f694-aafe-4fae-9738-da29daf18cd0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10945', + 'x-ms-correlation-request-id', + '000bd1a3-5474-4dc5-a47d-36d79204dc89', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071306Z:000bd1a3-5474-4dc5-a47d-36d79204dc89', + 'Date', + 'Fri, 19 Nov 2021 07:13:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '889f9de3-d08b-48b4-b670-93eb9915f841', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10944', + 'x-ms-correlation-request-id', + '2b20f8d5-0b54-44f3-9583-b65c857471ed', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071306Z:2b20f8d5-0b54-44f3-9583-b65c857471ed', + 'Date', + 'Fri, 19 Nov 2021 07:13:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6bf155f1-0083-417c-a137-0306bb62ab50', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10943', + 'x-ms-correlation-request-id', + '92d0e6f8-fe33-42d6-a966-2f81ed3fb7f6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071306Z:92d0e6f8-fe33-42d6-a966-2f81ed3fb7f6', + 'Date', + 'Fri, 19 Nov 2021 07:13:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b6c2a1a2-5e58-4008-9ef0-9375da8d2f48', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10942', + 'x-ms-correlation-request-id', + 'b7a29382-4070-40d5-ab85-3251833e5d75', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071307Z:b7a29382-4070-40d5-ab85-3251833e5d75', + 'Date', + 'Fri, 19 Nov 2021 07:13:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dc2b36da-f707-4f06-bc44-e59b077e2b52', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10941', + 'x-ms-correlation-request-id', + '09d5df18-1fca-4193-b9fa-c041d4426b13', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071307Z:09d5df18-1fca-4193-b9fa-c041d4426b13', + 'Date', + 'Fri, 19 Nov 2021 07:13:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1069f488-7b3f-43c9-a8ff-7f00fb09e307', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10940', + 'x-ms-correlation-request-id', + 'a207dfdf-084b-4506-9806-52bac1248517', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071307Z:a207dfdf-084b-4506-9806-52bac1248517', + 'Date', + 'Fri, 19 Nov 2021 07:13:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7931e57c-4a13-4ab8-a61b-ae4e40439ef9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10939', + 'x-ms-correlation-request-id', + 'ce304e12-1150-4500-8180-f6af1eb41538', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071308Z:ce304e12-1150-4500-8180-f6af1eb41538', + 'Date', + 'Fri, 19 Nov 2021 07:13:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '42dd30f1-3e3b-4b50-9062-fcf40de8dd55', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10938', + 'x-ms-correlation-request-id', + 'cf6bb83a-31ac-47bf-ad46-8daf700e41dd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071308Z:cf6bb83a-31ac-47bf-ad46-8daf700e41dd', + 'Date', + 'Fri, 19 Nov 2021 07:13:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cecd31a4-2544-4a92-91ae-dbff85a7b033', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10937', + 'x-ms-correlation-request-id', + '8fe6c796-c3c2-4c64-af04-2a5b7bf9bfe6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071308Z:8fe6c796-c3c2-4c64-af04-2a5b7bf9bfe6', + 'Date', + 'Fri, 19 Nov 2021 07:13:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7d1e245e-7a7e-4362-83ac-b8286bf73cdc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10936', + 'x-ms-correlation-request-id', + '10511fbe-4066-4a40-ae3f-fd4faf0bfede', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071309Z:10511fbe-4066-4a40-ae3f-fd4faf0bfede', + 'Date', + 'Fri, 19 Nov 2021 07:13:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cf454bc5-2e1f-4724-8249-4b31f55118bc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10935', + 'x-ms-correlation-request-id', + '946c82f2-fe87-4829-8ad8-6d9a9ed59394', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071309Z:946c82f2-fe87-4829-8ad8-6d9a9ed59394', + 'Date', + 'Fri, 19 Nov 2021 07:13:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '12b8cb8a-63e6-4630-a8e2-b2c66ad0d7ee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10934', + 'x-ms-correlation-request-id', + '005a8e90-c1f2-48c5-b29d-1fff7908b9f0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071309Z:005a8e90-c1f2-48c5-b29d-1fff7908b9f0', + 'Date', + 'Fri, 19 Nov 2021 07:13:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9f010618-0e2a-482f-a5b1-dae7e8d86fa8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10933', + 'x-ms-correlation-request-id', + '1f26d685-bad4-4040-bc44-d12a728ae661', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071309Z:1f26d685-bad4-4040-bc44-d12a728ae661', + 'Date', + 'Fri, 19 Nov 2021 07:13:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91602ccf-7202-4377-a648-4ddf50735fb8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10932', + 'x-ms-correlation-request-id', + '080fcab2-174d-4a91-b184-d762360374a3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071310Z:080fcab2-174d-4a91-b184-d762360374a3', + 'Date', + 'Fri, 19 Nov 2021 07:13:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cebdf075-2daf-4145-8e0f-18486601e55a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10931', + 'x-ms-correlation-request-id', + 'c82ccbdf-359a-4875-99d7-240a95cd9f90', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071310Z:c82ccbdf-359a-4875-99d7-240a95cd9f90', + 'Date', + 'Fri, 19 Nov 2021 07:13:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3d3b6fd-7f8e-43bb-9bea-f117c593d6c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10930', + 'x-ms-correlation-request-id', + '28cbac45-9a3d-442d-bd72-2aba9447c1cd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071310Z:28cbac45-9a3d-442d-bd72-2aba9447c1cd', + 'Date', + 'Fri, 19 Nov 2021 07:13:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '147cb683-19e9-4941-87f6-0ef23a742b7d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10929', + 'x-ms-correlation-request-id', + 'af898378-3ec0-4b81-9b2f-f5b990ba6da2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071311Z:af898378-3ec0-4b81-9b2f-f5b990ba6da2', + 'Date', + 'Fri, 19 Nov 2021 07:13:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1d2f6e4c-b748-466b-b26c-39a1eef669da', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10928', + 'x-ms-correlation-request-id', + 'ea2340bb-6ffc-438e-8506-535aec8dbc93', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071311Z:ea2340bb-6ffc-438e-8506-535aec8dbc93', + 'Date', + 'Fri, 19 Nov 2021 07:13:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dce4856e-b89e-4362-9bda-6141c97be70c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10927', + 'x-ms-correlation-request-id', + '2b04bc08-5212-42bb-bd7b-86d18bd5b389', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071311Z:2b04bc08-5212-42bb-bd7b-86d18bd5b389', + 'Date', + 'Fri, 19 Nov 2021 07:13:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2d362780-0ca4-4d1d-acd5-d0c5112020b9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10926', + 'x-ms-correlation-request-id', + 'ec5b5ca4-7441-4614-a8f9-2bfed7050520', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071311Z:ec5b5ca4-7441-4614-a8f9-2bfed7050520', + 'Date', + 'Fri, 19 Nov 2021 07:13:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b1bae25e-dbc3-47e1-8c12-9015b9657433', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10925', + 'x-ms-correlation-request-id', + '5b1aff91-9cdf-4caf-9e42-d778c68a83ee', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071312Z:5b1aff91-9cdf-4caf-9e42-d778c68a83ee', + 'Date', + 'Fri, 19 Nov 2021 07:13:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a97f560e-9191-47bb-99cd-367c4641ad70', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10924', + 'x-ms-correlation-request-id', + 'bef26d18-81a6-41c0-9947-7fc2ac732354', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071312Z:bef26d18-81a6-41c0-9947-7fc2ac732354', + 'Date', + 'Fri, 19 Nov 2021 07:13:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '01302458-8293-496a-aa56-c94e8174fcf0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10923', + 'x-ms-correlation-request-id', + '9352c406-02c1-4097-b52f-fd669a56ca27', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071312Z:9352c406-02c1-4097-b52f-fd669a56ca27', + 'Date', + 'Fri, 19 Nov 2021 07:13:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd7525642-fb1d-48b1-9402-6e5120cca665', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10922', + 'x-ms-correlation-request-id', + '4a196356-1ff1-4f90-acb1-714e74b5f424', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071313Z:4a196356-1ff1-4f90-acb1-714e74b5f424', + 'Date', + 'Fri, 19 Nov 2021 07:13:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9b8648ad-9bf7-4430-b5a3-c0e4860066ea', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10921', + 'x-ms-correlation-request-id', + '8c4b3834-a64a-47e5-a2b7-bc5429376a97', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071313Z:8c4b3834-a64a-47e5-a2b7-bc5429376a97', + 'Date', + 'Fri, 19 Nov 2021 07:13:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1ddf0034-f0cd-4038-ad0b-fe6deb9b831d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10920', + 'x-ms-correlation-request-id', + 'fad2000a-92d8-4941-aefa-432165c9e9f4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071313Z:fad2000a-92d8-4941-aefa-432165c9e9f4', + 'Date', + 'Fri, 19 Nov 2021 07:13:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '40812e9c-9f95-4ac6-8cbb-08069914be16', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10919', + 'x-ms-correlation-request-id', + '870e2424-fb25-4781-87b7-de22f8ebba72', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071314Z:870e2424-fb25-4781-87b7-de22f8ebba72', + 'Date', + 'Fri, 19 Nov 2021 07:13:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '14de7beb-2164-4670-974d-89acea06ff53', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10918', + 'x-ms-correlation-request-id', + '1079f5a9-19dd-47c1-ba90-20a745890fc4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071314Z:1079f5a9-19dd-47c1-ba90-20a745890fc4', + 'Date', + 'Fri, 19 Nov 2021 07:13:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8707afed-82f5-4ed0-bfd2-6a6170b8f164', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10917', + 'x-ms-correlation-request-id', + '693a4dcb-c7ae-4c8c-b87c-a6ce6dc469ee', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071314Z:693a4dcb-c7ae-4c8c-b87c-a6ce6dc469ee', + 'Date', + 'Fri, 19 Nov 2021 07:13:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '114c1ca4-adcf-4e55-8250-ff3b3a421be6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10916', + 'x-ms-correlation-request-id', + '8c87e2cd-594b-48d6-be42-1dc6cce16b93', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071314Z:8c87e2cd-594b-48d6-be42-1dc6cce16b93', + 'Date', + 'Fri, 19 Nov 2021 07:13:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f2872f5b-4bf7-44fc-9d52-7dc208b465a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10915', + 'x-ms-correlation-request-id', + 'ebcd92ef-e5e0-436b-a278-b0fd6bc05ce8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071315Z:ebcd92ef-e5e0-436b-a278-b0fd6bc05ce8', + 'Date', + 'Fri, 19 Nov 2021 07:13:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fa67c1ee-d768-43d0-a2d3-dfa2211386d1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10914', + 'x-ms-correlation-request-id', + 'e6668573-33fb-4518-ae11-2b927e80400d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071315Z:e6668573-33fb-4518-ae11-2b927e80400d', + 'Date', + 'Fri, 19 Nov 2021 07:13:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7af7e55a-c17d-4158-a14c-2fca9a3caca0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10913', + 'x-ms-correlation-request-id', + 'b5925dab-de5f-4fa0-acd1-3858bf2e80b5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071315Z:b5925dab-de5f-4fa0-acd1-3858bf2e80b5', + 'Date', + 'Fri, 19 Nov 2021 07:13:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '536ae963-481c-439b-abad-2712a2a516eb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10912', + 'x-ms-correlation-request-id', + 'fd3584d0-90ec-4897-8f7c-52d633919562', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071316Z:fd3584d0-90ec-4897-8f7c-52d633919562', + 'Date', + 'Fri, 19 Nov 2021 07:13:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eecc723f-5ba6-40fe-af03-8c9b5ad10f68', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10911', + 'x-ms-correlation-request-id', + 'f84f5e39-4fb8-4638-99df-767426439abb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071316Z:f84f5e39-4fb8-4638-99df-767426439abb', + 'Date', + 'Fri, 19 Nov 2021 07:13:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '03c620b3-f2ed-45bf-8b98-56e3696bea62', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10910', + 'x-ms-correlation-request-id', + '040cefc9-b089-45d4-8642-85c3955d21e1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071316Z:040cefc9-b089-45d4-8642-85c3955d21e1', + 'Date', + 'Fri, 19 Nov 2021 07:13:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b6eb5e37-fc95-40b7-a57e-e9fc1da95231', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10909', + 'x-ms-correlation-request-id', + 'fb58dea6-a9c9-4bb4-817e-5b918b01ba67', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071317Z:fb58dea6-a9c9-4bb4-817e-5b918b01ba67', + 'Date', + 'Fri, 19 Nov 2021 07:13:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '42c84139-694e-49d2-a964-65b1824d15a3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10908', + 'x-ms-correlation-request-id', + '44e81fc2-872f-40de-b6f1-e6004bfbc5a9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071317Z:44e81fc2-872f-40de-b6f1-e6004bfbc5a9', + 'Date', + 'Fri, 19 Nov 2021 07:13:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6fb2cdb7-7a53-4f20-8f3a-9754036e079b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10907', + 'x-ms-correlation-request-id', + '8a81304f-61ed-4a26-9787-407ade5872dd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071317Z:8a81304f-61ed-4a26-9787-407ade5872dd', + 'Date', + 'Fri, 19 Nov 2021 07:13:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5fbcb0d2-9b5e-4354-8a52-1fdc9b733dea', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10906', + 'x-ms-correlation-request-id', + 'b2775d1b-bf11-4f56-8678-40d99d3d0b7c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071317Z:b2775d1b-bf11-4f56-8678-40d99d3d0b7c', + 'Date', + 'Fri, 19 Nov 2021 07:13:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2ed871e0-2dea-4fd2-a044-63bfebb2673d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10905', + 'x-ms-correlation-request-id', + 'cab03cef-a4f8-4786-b219-d1d4b127f7c6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071318Z:cab03cef-a4f8-4786-b219-d1d4b127f7c6', + 'Date', + 'Fri, 19 Nov 2021 07:13:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ee3d5265-ad99-4a65-b317-2f45650d5587', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10904', + 'x-ms-correlation-request-id', + '823ca030-3abe-4faf-9de5-384ad6c41917', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071318Z:823ca030-3abe-4faf-9de5-384ad6c41917', + 'Date', + 'Fri, 19 Nov 2021 07:13:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cb7073b7-2a56-4ac5-b3d5-ac42f27bf1d2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10903', + 'x-ms-correlation-request-id', + 'c0e84a19-9e83-42da-924f-799277f65bf6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071318Z:c0e84a19-9e83-42da-924f-799277f65bf6', + 'Date', + 'Fri, 19 Nov 2021 07:13:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '09d50430-a9d7-41d2-b1d1-93d6a80cdaff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10902', + 'x-ms-correlation-request-id', + 'acaf4141-87ef-4a6a-b63c-4dd177ff608d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071319Z:acaf4141-87ef-4a6a-b63c-4dd177ff608d', + 'Date', + 'Fri, 19 Nov 2021 07:13:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6914b49b-286e-4a26-aee6-7cb777e4b04e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10901', + 'x-ms-correlation-request-id', + '8e5df009-0710-400a-ae35-422a89499c31', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071319Z:8e5df009-0710-400a-ae35-422a89499c31', + 'Date', + 'Fri, 19 Nov 2021 07:13:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3ef9befe-ca58-47ca-9e53-beac62243774', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10900', + 'x-ms-correlation-request-id', + '076c91ba-0230-4582-92cb-24fefe3a2ff3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071319Z:076c91ba-0230-4582-92cb-24fefe3a2ff3', + 'Date', + 'Fri, 19 Nov 2021 07:13:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bccd6ef9-f066-4134-a9c3-284521e9a577', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10899', + 'x-ms-correlation-request-id', + '5e3be925-2e53-421e-974e-5080276fa5bd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071320Z:5e3be925-2e53-421e-974e-5080276fa5bd', + 'Date', + 'Fri, 19 Nov 2021 07:13:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a20ce173-dce5-432e-9a1d-94f3b488ca8e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10898', + 'x-ms-correlation-request-id', + '0746c4c7-c907-4f58-8e6f-f4627391f49f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071320Z:0746c4c7-c907-4f58-8e6f-f4627391f49f', + 'Date', + 'Fri, 19 Nov 2021 07:13:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b5a1fb57-8e68-40ac-b4db-a0ac21dffb37', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10897', + 'x-ms-correlation-request-id', + '1fe11d2c-3080-4ba6-bfbe-5c3d8bdfb653', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071320Z:1fe11d2c-3080-4ba6-bfbe-5c3d8bdfb653', + 'Date', + 'Fri, 19 Nov 2021 07:13:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '968c87ff-7629-469f-9ad7-c559d79656c4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10896', + 'x-ms-correlation-request-id', + 'f0bc6a1b-5557-41fd-ae64-14a2b9413bc3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071320Z:f0bc6a1b-5557-41fd-ae64-14a2b9413bc3', + 'Date', + 'Fri, 19 Nov 2021 07:13:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '050ff590-d79b-4fec-9356-8da9ebce5c79', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10895', + 'x-ms-correlation-request-id', + '2a9d1963-b71c-4f31-bc42-10522d3b5fdd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071321Z:2a9d1963-b71c-4f31-bc42-10522d3b5fdd', + 'Date', + 'Fri, 19 Nov 2021 07:13:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1f7323d3-9e67-4bad-b454-190bdeb34ecc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10894', + 'x-ms-correlation-request-id', + '48bdb03b-9933-429a-a8be-fbdff99dd2c6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071321Z:48bdb03b-9933-429a-a8be-fbdff99dd2c6', + 'Date', + 'Fri, 19 Nov 2021 07:13:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6629a41a-a5a1-4c99-a0cc-27f0ad6d8f41', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10893', + 'x-ms-correlation-request-id', + 'cae47dd5-a3c6-4526-87bd-0c929ef95952', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071321Z:cae47dd5-a3c6-4526-87bd-0c929ef95952', + 'Date', + 'Fri, 19 Nov 2021 07:13:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8105b84e-72dc-47d2-9d9f-15845e49b9e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10892', + 'x-ms-correlation-request-id', + 'c9afeb3f-3d96-4f5b-8f9d-8787b2fc243e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071322Z:c9afeb3f-3d96-4f5b-8f9d-8787b2fc243e', + 'Date', + 'Fri, 19 Nov 2021 07:13:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5a38eacf-b4eb-4ded-bd28-dea101c35e80', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10891', + 'x-ms-correlation-request-id', + '56aadf59-f665-47c8-8fbf-79712ef94c2f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071322Z:56aadf59-f665-47c8-8fbf-79712ef94c2f', + 'Date', + 'Fri, 19 Nov 2021 07:13:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '670fde90-3e34-4065-9eec-47c1b7731cdb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10890', + 'x-ms-correlation-request-id', + '5943fa8a-ada5-492c-8949-ba91317a9f3e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071322Z:5943fa8a-ada5-492c-8949-ba91317a9f3e', + 'Date', + 'Fri, 19 Nov 2021 07:13:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8536128a-fdf0-4fa6-b5c9-54fc43825b54', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10889', + 'x-ms-correlation-request-id', + '750c02a4-d1db-42ac-b9ca-89003f874124', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071323Z:750c02a4-d1db-42ac-b9ca-89003f874124', + 'Date', + 'Fri, 19 Nov 2021 07:13:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4c0f0ce2-d515-416f-bb84-b044c52d44a5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10888', + 'x-ms-correlation-request-id', + 'a1e6c910-498c-4d3c-a4db-3ac9766a4675', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071323Z:a1e6c910-498c-4d3c-a4db-3ac9766a4675', + 'Date', + 'Fri, 19 Nov 2021 07:13:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4d20a223-4fa3-4f87-8d2c-38564230b3f2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10887', + 'x-ms-correlation-request-id', + 'c7744c59-2ea0-4ab9-9864-f88ac1d33a12', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071323Z:c7744c59-2ea0-4ab9-9864-f88ac1d33a12', + 'Date', + 'Fri, 19 Nov 2021 07:13:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '463377b1-db53-4b3f-8943-f03ed5d231f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10886', + 'x-ms-correlation-request-id', + '81c58aad-2526-429f-adb6-377501f6a1ad', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071323Z:81c58aad-2526-429f-adb6-377501f6a1ad', + 'Date', + 'Fri, 19 Nov 2021 07:13:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3cb8ce9e-31da-4635-82f8-2b8eff7f55e9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10885', + 'x-ms-correlation-request-id', + '85bbf04d-a315-421b-a4bc-7dade336f2b2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071324Z:85bbf04d-a315-421b-a4bc-7dade336f2b2', + 'Date', + 'Fri, 19 Nov 2021 07:13:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f05c495b-dd81-4418-8866-6b01ff13764c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10884', + 'x-ms-correlation-request-id', + '54eaf8e3-6633-4ac9-ad2f-39c4b6133cdf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071324Z:54eaf8e3-6633-4ac9-ad2f-39c4b6133cdf', + 'Date', + 'Fri, 19 Nov 2021 07:13:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6f880e46-e4ad-4185-b963-51462be286d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10883', + 'x-ms-correlation-request-id', + 'b2e05413-090d-4930-b697-a81e81a42001', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071324Z:b2e05413-090d-4930-b697-a81e81a42001', + 'Date', + 'Fri, 19 Nov 2021 07:13:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '88a08ebf-5fe8-4011-9b52-a66c9e2745fa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10882', + 'x-ms-correlation-request-id', + '399eb476-5c9f-483b-84d5-b7456384c1b7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071325Z:399eb476-5c9f-483b-84d5-b7456384c1b7', + 'Date', + 'Fri, 19 Nov 2021 07:13:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '65b61031-ff4e-429e-b9bf-186a03cbb065', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10881', + 'x-ms-correlation-request-id', + '8259e5a5-463e-46b2-abb1-a938d3a8eee6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071325Z:8259e5a5-463e-46b2-abb1-a938d3a8eee6', + 'Date', + 'Fri, 19 Nov 2021 07:13:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5f197354-c7d1-4c29-9d87-e18dc5e3e8d3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10880', + 'x-ms-correlation-request-id', + 'f1486480-fc7d-43e4-acba-6c3cb65a77f5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071325Z:f1486480-fc7d-43e4-acba-6c3cb65a77f5', + 'Date', + 'Fri, 19 Nov 2021 07:13:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c1c9c0b6-d480-4498-90e4-c20ecf917402', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10879', + 'x-ms-correlation-request-id', + 'd1e53c60-7e02-4c18-a3aa-e191c2100906', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071325Z:d1e53c60-7e02-4c18-a3aa-e191c2100906', + 'Date', + 'Fri, 19 Nov 2021 07:13:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fcd2fd6f-042a-444d-bc24-779dd45cca30', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10878', + 'x-ms-correlation-request-id', + '1467e0b9-7814-40f4-99fe-27d21c38a461', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071326Z:1467e0b9-7814-40f4-99fe-27d21c38a461', + 'Date', + 'Fri, 19 Nov 2021 07:13:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '98c2997e-4f01-4742-9377-5c17c9b9ad0c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10877', + 'x-ms-correlation-request-id', + 'ac442030-3a0e-4a8e-8a94-d92c063e5102', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071326Z:ac442030-3a0e-4a8e-8a94-d92c063e5102', + 'Date', + 'Fri, 19 Nov 2021 07:13:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '93057caa-c076-4416-ba1d-5e7d77fe9c2a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10876', + 'x-ms-correlation-request-id', + '7ced7e3f-13c4-454b-9189-d1a649734c9c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071326Z:7ced7e3f-13c4-454b-9189-d1a649734c9c', + 'Date', + 'Fri, 19 Nov 2021 07:13:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cbdeabc6-a5c3-4a4a-8aad-37917a02145c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10875', + 'x-ms-correlation-request-id', + 'fe937f8e-e66f-4bc2-93d3-0da87ad86c41', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071327Z:fe937f8e-e66f-4bc2-93d3-0da87ad86c41', + 'Date', + 'Fri, 19 Nov 2021 07:13:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c9dfe12c-0b8e-49c3-bd8c-b7ccd017835a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10874', + 'x-ms-correlation-request-id', + 'f483e14e-bc98-4bb3-b3e7-8c27f6fc7b51', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071327Z:f483e14e-bc98-4bb3-b3e7-8c27f6fc7b51', + 'Date', + 'Fri, 19 Nov 2021 07:13:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '96f67e94-f53e-4fb2-aa0e-c52527ee27b1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10873', + 'x-ms-correlation-request-id', + '7160dfd7-c015-4a39-95ee-f1bbe8103694', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071327Z:7160dfd7-c015-4a39-95ee-f1bbe8103694', + 'Date', + 'Fri, 19 Nov 2021 07:13:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f38ffb7b-4758-4c7e-8c07-ec1276c28e6a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10872', + 'x-ms-correlation-request-id', + 'ada2b250-96f9-4a10-be6f-97f48035dc8d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071328Z:ada2b250-96f9-4a10-be6f-97f48035dc8d', + 'Date', + 'Fri, 19 Nov 2021 07:13:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6b4ac79b-8a1e-47f4-9bb6-b5411c576a47', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10871', + 'x-ms-correlation-request-id', + '5837fb7c-4a0c-4e67-be36-7b0fddcda187', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071328Z:5837fb7c-4a0c-4e67-be36-7b0fddcda187', + 'Date', + 'Fri, 19 Nov 2021 07:13:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2d6be7cf-a10f-4407-a0cb-3b8a6629d8a8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10870', + 'x-ms-correlation-request-id', + 'e1bdb888-520a-4e48-9da5-04f4cb7c2b67', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071328Z:e1bdb888-520a-4e48-9da5-04f4cb7c2b67', + 'Date', + 'Fri, 19 Nov 2021 07:13:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4b8f333c-855b-428d-8719-a97b5ea9afe5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10869', + 'x-ms-correlation-request-id', + '78ce9719-f641-45ad-b4fa-0c33d9bea2a8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071328Z:78ce9719-f641-45ad-b4fa-0c33d9bea2a8', + 'Date', + 'Fri, 19 Nov 2021 07:13:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3e991aeb-24e4-4f10-8354-14f57373d45a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10868', + 'x-ms-correlation-request-id', + '221ca640-7fa7-4dfc-8a2f-849219bfde86', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071329Z:221ca640-7fa7-4dfc-8a2f-849219bfde86', + 'Date', + 'Fri, 19 Nov 2021 07:13:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '472deb7b-c667-4d41-94f4-096a49023b62', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10867', + 'x-ms-correlation-request-id', + '9a0a1525-b611-4e79-a629-4cbd2f79770e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071329Z:9a0a1525-b611-4e79-a629-4cbd2f79770e', + 'Date', + 'Fri, 19 Nov 2021 07:13:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd0a8c816-bf97-4f72-8037-b9689dde16fe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10866', + 'x-ms-correlation-request-id', + 'e80eccef-f22e-42bf-9ea2-0ed28fb79cd3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071329Z:e80eccef-f22e-42bf-9ea2-0ed28fb79cd3', + 'Date', + 'Fri, 19 Nov 2021 07:13:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3d5fa2c2-c44b-4036-9b34-395025328acc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10865', + 'x-ms-correlation-request-id', + '47a3c940-bd16-4df2-b7e7-f94f8d6a99bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071330Z:47a3c940-bd16-4df2-b7e7-f94f8d6a99bc', + 'Date', + 'Fri, 19 Nov 2021 07:13:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e8c7e89a-6972-4c04-bcb6-f9e445fcf472', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10864', + 'x-ms-correlation-request-id', + '635836dd-6218-4a04-80c8-48138639cfec', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071330Z:635836dd-6218-4a04-80c8-48138639cfec', + 'Date', + 'Fri, 19 Nov 2021 07:13:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8c8cd5fe-4439-403d-95df-38cc4c1cf3bc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10863', + 'x-ms-correlation-request-id', + 'ed78c6ef-d53b-46ca-b9e3-19e79df9b0d5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071330Z:ed78c6ef-d53b-46ca-b9e3-19e79df9b0d5', + 'Date', + 'Fri, 19 Nov 2021 07:13:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '821c380a-e297-4115-8adf-2e3450bd261a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10862', + 'x-ms-correlation-request-id', + '764e6539-8ecf-46c4-86e5-b07e55520941', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071331Z:764e6539-8ecf-46c4-86e5-b07e55520941', + 'Date', + 'Fri, 19 Nov 2021 07:13:30 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '463f0f4f-0eee-4ded-95f3-9bb06bb3cc4f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10861', + 'x-ms-correlation-request-id', + 'eedf5d24-454c-4df8-b006-db9ac7a59a21', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071331Z:eedf5d24-454c-4df8-b006-db9ac7a59a21', + 'Date', + 'Fri, 19 Nov 2021 07:13:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '80044105-750a-4b4b-808e-e56effd66461', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10860', + 'x-ms-correlation-request-id', + 'dbb5b333-14d3-4c44-af6e-46cbef8cdde3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071331Z:dbb5b333-14d3-4c44-af6e-46cbef8cdde3', + 'Date', + 'Fri, 19 Nov 2021 07:13:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a0b2ec66-211f-4570-b60f-36472b3b3216', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10859', + 'x-ms-correlation-request-id', + 'd77ca7f7-583c-4368-bc06-930b7b2de48d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071331Z:d77ca7f7-583c-4368-bc06-930b7b2de48d', + 'Date', + 'Fri, 19 Nov 2021 07:13:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5a7fcfbb-8864-4599-a9ab-017f60267d37', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10858', + 'x-ms-correlation-request-id', + '175584f2-cb04-4dc8-8f7a-0c354e67c281', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071332Z:175584f2-cb04-4dc8-8f7a-0c354e67c281', + 'Date', + 'Fri, 19 Nov 2021 07:13:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd7aee604-5cb9-4349-8d69-a390f2889fb2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10857', + 'x-ms-correlation-request-id', + 'd601b5f8-73d0-41db-afb0-3ee983db0993', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071332Z:d601b5f8-73d0-41db-afb0-3ee983db0993', + 'Date', + 'Fri, 19 Nov 2021 07:13:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8351e5d8-37b8-4354-96ef-ff9222c7d0f7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10856', + 'x-ms-correlation-request-id', + '3ae406bc-d4c5-4d1a-a594-fc69f7174109', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071332Z:3ae406bc-d4c5-4d1a-a594-fc69f7174109', + 'Date', + 'Fri, 19 Nov 2021 07:13:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5aff79fa-10d0-4342-9a5d-cd3f22572994', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10855', + 'x-ms-correlation-request-id', + 'afb26e97-7b78-4293-a076-cd59df402d50', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071333Z:afb26e97-7b78-4293-a076-cd59df402d50', + 'Date', + 'Fri, 19 Nov 2021 07:13:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a57f0290-f754-4009-99d5-a684797ec2ef', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10854', + 'x-ms-correlation-request-id', + 'db2e953d-68a8-425e-9881-7a0a201c8ecf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071333Z:db2e953d-68a8-425e-9881-7a0a201c8ecf', + 'Date', + 'Fri, 19 Nov 2021 07:13:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1772d205-1f68-4091-b835-be2a3bf1cb67', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10853', + 'x-ms-correlation-request-id', + '1977bfdb-f54d-494e-b9b5-f3571f47a926', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071333Z:1977bfdb-f54d-494e-b9b5-f3571f47a926', + 'Date', + 'Fri, 19 Nov 2021 07:13:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '415c30ce-e578-4589-b295-6a1c27f52b7e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10852', + 'x-ms-correlation-request-id', + '61eb41e1-cf09-4906-b756-1c9391f70dd3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071334Z:61eb41e1-cf09-4906-b756-1c9391f70dd3', + 'Date', + 'Fri, 19 Nov 2021 07:13:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3abcc004-f7dc-4158-b619-f395db2bea32', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10851', + 'x-ms-correlation-request-id', + '7708b93c-a2f5-45f2-b08b-abea92267dc0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071334Z:7708b93c-a2f5-45f2-b08b-abea92267dc0', + 'Date', + 'Fri, 19 Nov 2021 07:13:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0668925c-b209-4af1-9f69-264fb2a15cf4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10850', + 'x-ms-correlation-request-id', + '4afe360a-2aca-4a88-ab85-a858003106a6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071334Z:4afe360a-2aca-4a88-ab85-a858003106a6', + 'Date', + 'Fri, 19 Nov 2021 07:13:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '85f867ba-188a-4d4e-89d3-90589faf42cd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10849', + 'x-ms-correlation-request-id', + '99d90d18-aefb-40cd-91e1-6d5df25b0f3f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071334Z:99d90d18-aefb-40cd-91e1-6d5df25b0f3f', + 'Date', + 'Fri, 19 Nov 2021 07:13:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b5979541-d468-4d1f-98e7-05bb6f3414f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10848', + 'x-ms-correlation-request-id', + '3214c464-3de8-4f30-9f63-3cb0b4454457', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071335Z:3214c464-3de8-4f30-9f63-3cb0b4454457', + 'Date', + 'Fri, 19 Nov 2021 07:13:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5a5d569b-306c-4772-be5a-0a1b1b8e439e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10847', + 'x-ms-correlation-request-id', + 'e5a84c75-86c3-415c-9328-7e67c9375af6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071335Z:e5a84c75-86c3-415c-9328-7e67c9375af6', + 'Date', + 'Fri, 19 Nov 2021 07:13:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '045d31f4-6fe9-4c72-bc2a-6f58f937a014', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10846', + 'x-ms-correlation-request-id', + '8ef9374d-1945-4487-afa5-9faafa3fa3b8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071335Z:8ef9374d-1945-4487-afa5-9faafa3fa3b8', + 'Date', + 'Fri, 19 Nov 2021 07:13:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7e2b43aa-aa61-4639-9e5d-f475215274d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10845', + 'x-ms-correlation-request-id', + '647db88c-c21b-4c3b-8cd1-cadea8e41196', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071336Z:647db88c-c21b-4c3b-8cd1-cadea8e41196', + 'Date', + 'Fri, 19 Nov 2021 07:13:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'de25e451-1506-4a08-b77a-b56f600fc8bf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10844', + 'x-ms-correlation-request-id', + '361ddf76-77a4-40e9-ad36-c90fa9d15534', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071336Z:361ddf76-77a4-40e9-ad36-c90fa9d15534', + 'Date', + 'Fri, 19 Nov 2021 07:13:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '29e1f7ed-939b-43b3-a881-751e4114ac88', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10843', + 'x-ms-correlation-request-id', + 'b28de802-c5d7-4057-8b91-564b0d723ff0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071336Z:b28de802-c5d7-4057-8b91-564b0d723ff0', + 'Date', + 'Fri, 19 Nov 2021 07:13:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2a66e340-c35f-4470-ab9f-18a3d82041c8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10842', + 'x-ms-correlation-request-id', + '493ca60b-ded0-4fd7-ba74-2d4a67d9023f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071336Z:493ca60b-ded0-4fd7-ba74-2d4a67d9023f', + 'Date', + 'Fri, 19 Nov 2021 07:13:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '18452c53-7d8a-4cdb-9609-fc6cae3524c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10841', + 'x-ms-correlation-request-id', + '7479b5cf-b5b5-4378-9f88-2fff2d7c02ab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071337Z:7479b5cf-b5b5-4378-9f88-2fff2d7c02ab', + 'Date', + 'Fri, 19 Nov 2021 07:13:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c7ba9bf0-9d97-468c-941e-dad52e2eb684', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10840', + 'x-ms-correlation-request-id', + '9533252b-3187-48b4-b20f-844730833bb3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071337Z:9533252b-3187-48b4-b20f-844730833bb3', + 'Date', + 'Fri, 19 Nov 2021 07:13:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '76beaeab-3f91-4bc1-8fb2-ece2fd590d59', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10839', + 'x-ms-correlation-request-id', + 'ba5c234e-0104-4f98-9a03-4db64baa47ed', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071337Z:ba5c234e-0104-4f98-9a03-4db64baa47ed', + 'Date', + 'Fri, 19 Nov 2021 07:13:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '13b60429-b33c-4ca5-8260-34f3f0083833', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10838', + 'x-ms-correlation-request-id', + '6bd4c6f4-ac4c-4baa-8699-fe77ef2969fc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071338Z:6bd4c6f4-ac4c-4baa-8699-fe77ef2969fc', + 'Date', + 'Fri, 19 Nov 2021 07:13:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4bbf688f-5bc4-40aa-9b2b-b934b60488a4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10837', + 'x-ms-correlation-request-id', + 'd02ec534-3ee7-4e7d-9634-e515f3134a2f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071338Z:d02ec534-3ee7-4e7d-9634-e515f3134a2f', + 'Date', + 'Fri, 19 Nov 2021 07:13:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3745d72d-4220-4894-bad1-eae3c1b9c0f1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10836', + 'x-ms-correlation-request-id', + '66d13f68-9490-4a0c-870f-b5d89af750f0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071338Z:66d13f68-9490-4a0c-870f-b5d89af750f0', + 'Date', + 'Fri, 19 Nov 2021 07:13:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ff3b16f0-705e-4593-a600-ecbc481e5c70', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10835', + 'x-ms-correlation-request-id', + '3aee2d37-ad3f-403a-a44f-10edc9acb3e1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071339Z:3aee2d37-ad3f-403a-a44f-10edc9acb3e1', + 'Date', + 'Fri, 19 Nov 2021 07:13:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '598bffc8-3589-4ed2-b706-17b4705eef25', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10834', + 'x-ms-correlation-request-id', + '046ea8c2-d9db-448d-a391-c99e73e08957', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071339Z:046ea8c2-d9db-448d-a391-c99e73e08957', + 'Date', + 'Fri, 19 Nov 2021 07:13:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '463faf67-e5d1-41dd-a18a-09c9f3b23125', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10833', + 'x-ms-correlation-request-id', + 'b3fe9f0d-cf76-428c-b400-acb888369f05', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071339Z:b3fe9f0d-cf76-428c-b400-acb888369f05', + 'Date', + 'Fri, 19 Nov 2021 07:13:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '250fae23-3645-4a06-a136-5fac63a2a2a2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10832', + 'x-ms-correlation-request-id', + 'f104665b-c9e3-4edc-96d4-b22f53ce9ac6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071339Z:f104665b-c9e3-4edc-96d4-b22f53ce9ac6', + 'Date', + 'Fri, 19 Nov 2021 07:13:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c5ec8f8f-b587-4f30-b18c-acf4d2b4f59c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10831', + 'x-ms-correlation-request-id', + 'eaac69d4-a4c5-42fb-8d27-45e8a4f24801', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071340Z:eaac69d4-a4c5-42fb-8d27-45e8a4f24801', + 'Date', + 'Fri, 19 Nov 2021 07:13:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3dab3ab7-4c19-49d6-a385-e32c770d4432', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10830', + 'x-ms-correlation-request-id', + '20a04b81-5339-441c-92ee-a46be34b6cb2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071340Z:20a04b81-5339-441c-92ee-a46be34b6cb2', + 'Date', + 'Fri, 19 Nov 2021 07:13:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e3cd7b55-dcb5-4bd8-957c-e32209738de6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10829', + 'x-ms-correlation-request-id', + '3688dae3-6144-4b3a-a00a-0e70139fde48', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071340Z:3688dae3-6144-4b3a-a00a-0e70139fde48', + 'Date', + 'Fri, 19 Nov 2021 07:13:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f2f091ff-f4b9-4d3a-affd-a7a5bf8beda7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10828', + 'x-ms-correlation-request-id', + 'dc095ffa-4586-41cf-bbe7-ff57c950ccde', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071341Z:dc095ffa-4586-41cf-bbe7-ff57c950ccde', + 'Date', + 'Fri, 19 Nov 2021 07:13:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7aee2435-308a-4a9c-92bc-fe899f21547a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10827', + 'x-ms-correlation-request-id', + 'b0b94a43-8663-489e-a8bd-8de048ff222b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071341Z:b0b94a43-8663-489e-a8bd-8de048ff222b', + 'Date', + 'Fri, 19 Nov 2021 07:13:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4b9b0596-33b5-42af-a328-0b9b4c2d7a77', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10826', + 'x-ms-correlation-request-id', + '56dc4b66-83a2-49c1-9064-d839f1333c85', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071341Z:56dc4b66-83a2-49c1-9064-d839f1333c85', + 'Date', + 'Fri, 19 Nov 2021 07:13:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1f337918-2a83-43d2-8c02-a0566c831e8e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10825', + 'x-ms-correlation-request-id', + '6cb2e4ff-8ffa-4537-acbe-4cc190b76306', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071341Z:6cb2e4ff-8ffa-4537-acbe-4cc190b76306', + 'Date', + 'Fri, 19 Nov 2021 07:13:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '03530ca8-78e3-4de5-8c8b-1a0caa9c2e96', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10824', + 'x-ms-correlation-request-id', + '2de105f9-84a1-44b4-a25b-75cace5481da', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071342Z:2de105f9-84a1-44b4-a25b-75cace5481da', + 'Date', + 'Fri, 19 Nov 2021 07:13:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5675c3f9-500d-4e52-8989-fba9d9b58a82', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10823', + 'x-ms-correlation-request-id', + 'a077e8a2-308f-4858-81fc-ce295851d559', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071342Z:a077e8a2-308f-4858-81fc-ce295851d559', + 'Date', + 'Fri, 19 Nov 2021 07:13:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c15f1072-6e1d-4f52-8324-87896aed3164', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10822', + 'x-ms-correlation-request-id', + '6b0a884c-8b40-465b-a011-b442bde8a550', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071342Z:6b0a884c-8b40-465b-a011-b442bde8a550', + 'Date', + 'Fri, 19 Nov 2021 07:13:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7f58b0ca-6d4a-4000-898c-8ecac2df0d81', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10821', + 'x-ms-correlation-request-id', + 'd876aeb6-75e7-4ce9-ae9d-91454095c68d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071343Z:d876aeb6-75e7-4ce9-ae9d-91454095c68d', + 'Date', + 'Fri, 19 Nov 2021 07:13:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '773c248b-d9de-4d4c-95a1-a8b680b2c8cf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10820', + 'x-ms-correlation-request-id', + '67e7bf3f-291e-4c6a-b0df-73de2899cdeb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071343Z:67e7bf3f-291e-4c6a-b0df-73de2899cdeb', + 'Date', + 'Fri, 19 Nov 2021 07:13:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1fa07fc0-9bb5-46a2-a373-11ea2e27140c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10819', + 'x-ms-correlation-request-id', + '5fbd890e-d375-4c59-a522-f1db897ef293', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071343Z:5fbd890e-d375-4c59-a522-f1db897ef293', + 'Date', + 'Fri, 19 Nov 2021 07:13:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '65262597-7183-4941-9ea9-47a018348d4f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10818', + 'x-ms-correlation-request-id', + 'b113e385-1c18-4ece-b858-686fcb2d6978', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071344Z:b113e385-1c18-4ece-b858-686fcb2d6978', + 'Date', + 'Fri, 19 Nov 2021 07:13:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fffa6212-90e2-419b-9fba-29c4bd949f16', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10817', + 'x-ms-correlation-request-id', + '0f7d6b11-c533-4d4c-af96-b4d276be049f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071344Z:0f7d6b11-c533-4d4c-af96-b4d276be049f', + 'Date', + 'Fri, 19 Nov 2021 07:13:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5a4d2f55-661a-4e8b-b5bb-8b5018cfdc6a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10816', + 'x-ms-correlation-request-id', + 'b0483db7-71a1-4507-9306-2998a7985f2e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071344Z:b0483db7-71a1-4507-9306-2998a7985f2e', + 'Date', + 'Fri, 19 Nov 2021 07:13:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '99a9a428-8b2b-4a1a-b76f-9ca26cfdeda8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10815', + 'x-ms-correlation-request-id', + '1bc07fb3-b7d4-4d7c-9bf7-e20b67342c8e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071344Z:1bc07fb3-b7d4-4d7c-9bf7-e20b67342c8e', + 'Date', + 'Fri, 19 Nov 2021 07:13:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '26b03ec1-fd0a-4d58-ba37-26dde93e1126', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10814', + 'x-ms-correlation-request-id', + '7e4f2ce1-9c07-46af-ae83-b90fe1470cc9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071345Z:7e4f2ce1-9c07-46af-ae83-b90fe1470cc9', + 'Date', + 'Fri, 19 Nov 2021 07:13:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3ff14ae5-ef94-4fd3-bdb2-d31d148840ba', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10813', + 'x-ms-correlation-request-id', + '8ad1976b-217d-4278-bc2a-6e63b7c8dee0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071345Z:8ad1976b-217d-4278-bc2a-6e63b7c8dee0', + 'Date', + 'Fri, 19 Nov 2021 07:13:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '83f3b276-9b0c-4d4e-b0ba-165f822e6d47', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10812', + 'x-ms-correlation-request-id', + 'f76bbfa4-4856-4cec-bec6-ccdc31e37662', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071345Z:f76bbfa4-4856-4cec-bec6-ccdc31e37662', + 'Date', + 'Fri, 19 Nov 2021 07:13:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '443f3ab6-3c12-464f-85d5-8b3abc51880e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10811', + 'x-ms-correlation-request-id', + '731133fc-4c95-4187-b15f-b46e73064ddc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071346Z:731133fc-4c95-4187-b15f-b46e73064ddc', + 'Date', + 'Fri, 19 Nov 2021 07:13:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '05ef9414-417a-4b6f-82ad-458a35a04362', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10810', + 'x-ms-correlation-request-id', + 'a64f6d4b-0802-4e64-b990-570fa3b05bac', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071346Z:a64f6d4b-0802-4e64-b990-570fa3b05bac', + 'Date', + 'Fri, 19 Nov 2021 07:13:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bef031ed-bd6e-4e49-bedc-55315dfc8423', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10809', + 'x-ms-correlation-request-id', + 'd59a62dc-7f7a-4f75-b394-9e07b1482553', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071346Z:d59a62dc-7f7a-4f75-b394-9e07b1482553', + 'Date', + 'Fri, 19 Nov 2021 07:13:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9382317b-8c3e-4dfd-9eb4-e7e276681410', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10808', + 'x-ms-correlation-request-id', + '4b6107bc-97a0-49c5-b3a0-653c0cf1187e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071347Z:4b6107bc-97a0-49c5-b3a0-653c0cf1187e', + 'Date', + 'Fri, 19 Nov 2021 07:13:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b4660e19-1f5f-47dd-be46-35365422204b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10807', + 'x-ms-correlation-request-id', + '3277fe7b-98f2-4ef3-a41c-f48b01cc1e32', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071347Z:3277fe7b-98f2-4ef3-a41c-f48b01cc1e32', + 'Date', + 'Fri, 19 Nov 2021 07:13:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aae07f0a-b629-48e1-81f9-cf72aaa01d44', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10806', + 'x-ms-correlation-request-id', + '76a74caa-c0f7-471b-a2b3-731765417f87', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071347Z:76a74caa-c0f7-471b-a2b3-731765417f87', + 'Date', + 'Fri, 19 Nov 2021 07:13:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '33164c17-c672-49ea-8ce7-cfd6efc7a1aa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10805', + 'x-ms-correlation-request-id', + '07ac36ba-2053-4129-be54-2a32c7c4dc04', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071347Z:07ac36ba-2053-4129-be54-2a32c7c4dc04', + 'Date', + 'Fri, 19 Nov 2021 07:13:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '32a5e4f2-7ecb-4a02-aaa3-b5e500a120f7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10804', + 'x-ms-correlation-request-id', + 'ba7d4397-ba3e-4ace-a54b-0f545a902037', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071348Z:ba7d4397-ba3e-4ace-a54b-0f545a902037', + 'Date', + 'Fri, 19 Nov 2021 07:13:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '043837e4-6e8a-498d-a55f-7cd686cf2f9b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10803', + 'x-ms-correlation-request-id', + '1e1c4414-d46e-457e-ad33-c843e695bc66', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071348Z:1e1c4414-d46e-457e-ad33-c843e695bc66', + 'Date', + 'Fri, 19 Nov 2021 07:13:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '42df0a83-678f-4b83-8016-6fd60981f5be', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10802', + 'x-ms-correlation-request-id', + '5a651208-71c3-4fb7-b48b-1284f8b17df7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071348Z:5a651208-71c3-4fb7-b48b-1284f8b17df7', + 'Date', + 'Fri, 19 Nov 2021 07:13:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b5dc7fa5-022d-4a0a-9fcd-2934d3d1dea4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10801', + 'x-ms-correlation-request-id', + 'e97472b4-7b88-4eba-8a47-ad1447e2d1d8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071349Z:e97472b4-7b88-4eba-8a47-ad1447e2d1d8', + 'Date', + 'Fri, 19 Nov 2021 07:13:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5fa6cd00-eedf-4edc-8933-76b9cbf24ba3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10800', + 'x-ms-correlation-request-id', + '0d69b5b7-c929-4657-8440-f963fc462263', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071349Z:0d69b5b7-c929-4657-8440-f963fc462263', + 'Date', + 'Fri, 19 Nov 2021 07:13:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a48c3667-9501-4e1b-8402-64f3b5398c01', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10799', + 'x-ms-correlation-request-id', + 'a7cb8ca6-ed75-405c-a711-254e35333b85', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071349Z:a7cb8ca6-ed75-405c-a711-254e35333b85', + 'Date', + 'Fri, 19 Nov 2021 07:13:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9134081d-1945-4a06-af0d-e6ec6975bc11', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10798', + 'x-ms-correlation-request-id', + '110fdfbb-9409-41af-a32f-9181b816168c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071350Z:110fdfbb-9409-41af-a32f-9181b816168c', + 'Date', + 'Fri, 19 Nov 2021 07:13:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1b7e8d17-9028-43a2-a4ed-66ceef6c2fef', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10797', + 'x-ms-correlation-request-id', + '31e91b24-9853-487e-9972-7de4f2e96599', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071350Z:31e91b24-9853-487e-9972-7de4f2e96599', + 'Date', + 'Fri, 19 Nov 2021 07:13:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b3dedc7c-3046-4cd3-ae22-dda86d948a19', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10796', + 'x-ms-correlation-request-id', + 'c1159883-e147-4271-ad8a-9ca1619215e2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071350Z:c1159883-e147-4271-ad8a-9ca1619215e2', + 'Date', + 'Fri, 19 Nov 2021 07:13:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c02e10b2-366b-40c3-905a-e0eeb57540d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10795', + 'x-ms-correlation-request-id', + '3fadae0b-311b-4ff4-b99c-8b061900cbcf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071350Z:3fadae0b-311b-4ff4-b99c-8b061900cbcf', + 'Date', + 'Fri, 19 Nov 2021 07:13:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c1cf3dfc-a4c8-4205-99c8-03bb50888064', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10794', + 'x-ms-correlation-request-id', + '51afd84c-a307-404d-8915-ba592a861b4d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071351Z:51afd84c-a307-404d-8915-ba592a861b4d', + 'Date', + 'Fri, 19 Nov 2021 07:13:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd21af725-28e2-458c-8d6c-7187d31b5f63', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10793', + 'x-ms-correlation-request-id', + '5e2f83ae-f27b-476e-8954-a3c749c7cd2d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071351Z:5e2f83ae-f27b-476e-8954-a3c749c7cd2d', + 'Date', + 'Fri, 19 Nov 2021 07:13:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3dbf7257-38c2-4f56-a4d7-192ba7ce2f5b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10792', + 'x-ms-correlation-request-id', + '63b56234-4731-4cc5-ab71-a45582131d9e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071351Z:63b56234-4731-4cc5-ab71-a45582131d9e', + 'Date', + 'Fri, 19 Nov 2021 07:13:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e336b568-1db8-4580-bba3-3bbacbb4a038', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10791', + 'x-ms-correlation-request-id', + 'b5657d9e-b934-4ca2-9233-69f46743ce12', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071352Z:b5657d9e-b934-4ca2-9233-69f46743ce12', + 'Date', + 'Fri, 19 Nov 2021 07:13:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7e751017-4321-448e-b9c5-fa6072b233d0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10790', + 'x-ms-correlation-request-id', + 'fcbef3c9-e974-4549-ba9b-6d03db895c43', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071352Z:fcbef3c9-e974-4549-ba9b-6d03db895c43', + 'Date', + 'Fri, 19 Nov 2021 07:13:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ad380e81-4484-4bf6-a521-dd127649f41c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10789', + 'x-ms-correlation-request-id', + '5279af36-483d-4a4b-921f-07201fefb281', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071352Z:5279af36-483d-4a4b-921f-07201fefb281', + 'Date', + 'Fri, 19 Nov 2021 07:13:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '35596f59-e7e0-48f4-8105-cafee37ba696', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10788', + 'x-ms-correlation-request-id', + '2fbf83a1-4601-4e67-9c6f-29e3ab8e36bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071352Z:2fbf83a1-4601-4e67-9c6f-29e3ab8e36bc', + 'Date', + 'Fri, 19 Nov 2021 07:13:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'be3dc455-83e1-46f1-ad1d-bac368dabd5d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10787', + 'x-ms-correlation-request-id', + 'fb6be76f-b8c3-4932-9604-ebe73034c225', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071353Z:fb6be76f-b8c3-4932-9604-ebe73034c225', + 'Date', + 'Fri, 19 Nov 2021 07:13:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f06d31b2-103a-4c36-8569-a6c5187bee95', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10786', + 'x-ms-correlation-request-id', + 'b2f2075f-c71b-437b-b51c-39e5e48a72ee', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071353Z:b2f2075f-c71b-437b-b51c-39e5e48a72ee', + 'Date', + 'Fri, 19 Nov 2021 07:13:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '67429a79-a442-4a74-baee-17a8922b55b9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10785', + 'x-ms-correlation-request-id', + '31cea173-f32d-4ec3-a79c-ae5a477fce75', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071353Z:31cea173-f32d-4ec3-a79c-ae5a477fce75', + 'Date', + 'Fri, 19 Nov 2021 07:13:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b98ad29b-56f4-4218-bd83-afcb6ae83b89', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10784', + 'x-ms-correlation-request-id', + 'a7793386-9342-4271-a628-3e2939c939f0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071354Z:a7793386-9342-4271-a628-3e2939c939f0', + 'Date', + 'Fri, 19 Nov 2021 07:13:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6887604a-0719-4d59-9d0f-af772fa90d41', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10783', + 'x-ms-correlation-request-id', + 'a43a9fd2-a16b-4bd5-95b4-e2b0925d4487', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071354Z:a43a9fd2-a16b-4bd5-95b4-e2b0925d4487', + 'Date', + 'Fri, 19 Nov 2021 07:13:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2767e200-7849-4a92-a573-89d75fe24f34', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10782', + 'x-ms-correlation-request-id', + 'ffed5510-0d0d-401d-93cf-750b0a89b71e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071354Z:ffed5510-0d0d-401d-93cf-750b0a89b71e', + 'Date', + 'Fri, 19 Nov 2021 07:13:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '15379e03-412a-448b-8ae0-f6dba1d9b68a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10781', + 'x-ms-correlation-request-id', + '5e31d87c-8e7f-4880-a5ae-8e724fed4840', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071355Z:5e31d87c-8e7f-4880-a5ae-8e724fed4840', + 'Date', + 'Fri, 19 Nov 2021 07:13:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b668c446-daa4-4954-a522-575a9fab8fce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10780', + 'x-ms-correlation-request-id', + '9d5def29-0737-47e5-a577-9f92b21ce9ef', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071355Z:9d5def29-0737-47e5-a577-9f92b21ce9ef', + 'Date', + 'Fri, 19 Nov 2021 07:13:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '62fb7a30-8269-42b6-8827-8a697546da2a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10779', + 'x-ms-correlation-request-id', + '0ac57ad6-6064-4f67-b2de-c95a5538441a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071355Z:0ac57ad6-6064-4f67-b2de-c95a5538441a', + 'Date', + 'Fri, 19 Nov 2021 07:13:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91f2d593-77a4-4f5f-a467-48afbb03222a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10778', + 'x-ms-correlation-request-id', + '58779944-5934-4c7b-997b-ee05b5c47896', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071355Z:58779944-5934-4c7b-997b-ee05b5c47896', + 'Date', + 'Fri, 19 Nov 2021 07:13:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '65e3fef6-4050-4f6b-867d-58c6d4de6241', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10777', + 'x-ms-correlation-request-id', + 'c89863b8-fb41-432a-bb0c-bf22f4cb4e3b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071356Z:c89863b8-fb41-432a-bb0c-bf22f4cb4e3b', + 'Date', + 'Fri, 19 Nov 2021 07:13:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b9cb90d3-c950-4022-9c27-aae2ae3813ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10776', + 'x-ms-correlation-request-id', + '878710f8-9d42-4184-9fe7-8ca91e8346af', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071356Z:878710f8-9d42-4184-9fe7-8ca91e8346af', + 'Date', + 'Fri, 19 Nov 2021 07:13:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8a1a57d2-a898-4dee-9c03-23d54557a689', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10775', + 'x-ms-correlation-request-id', + 'daebd6fa-f98f-434d-91ac-623eac3b0892', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071356Z:daebd6fa-f98f-434d-91ac-623eac3b0892', + 'Date', + 'Fri, 19 Nov 2021 07:13:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e92cc0d7-3ed2-4b0f-bd35-fae4a8c191fa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10774', + 'x-ms-correlation-request-id', + '5a13b2d1-a6b8-4f22-8281-87097c1e8591', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071357Z:5a13b2d1-a6b8-4f22-8281-87097c1e8591', + 'Date', + 'Fri, 19 Nov 2021 07:13:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'de1dda0e-cf46-44f7-9e75-e1aa3ede5afb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10773', + 'x-ms-correlation-request-id', + '5be473ab-75af-4675-ac6e-ffb204262c0a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071357Z:5be473ab-75af-4675-ac6e-ffb204262c0a', + 'Date', + 'Fri, 19 Nov 2021 07:13:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd6e79ba5-1d46-473d-91e7-4a7ac4ae33e5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10772', + 'x-ms-correlation-request-id', + '96cf1f9d-e175-4f5f-a60e-c2fff5357b18', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071357Z:96cf1f9d-e175-4f5f-a60e-c2fff5357b18', + 'Date', + 'Fri, 19 Nov 2021 07:13:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '35911801-765e-4288-8ba3-4778ec901b5c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10771', + 'x-ms-correlation-request-id', + 'aa1cfa82-6416-441a-8e72-372d8270cb13', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071358Z:aa1cfa82-6416-441a-8e72-372d8270cb13', + 'Date', + 'Fri, 19 Nov 2021 07:13:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '05fe6f98-5228-4d1e-9dc7-828656e92be4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10770', + 'x-ms-correlation-request-id', + '38e2fcf2-9a6e-4573-968d-963112cc33ef', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071358Z:38e2fcf2-9a6e-4573-968d-963112cc33ef', + 'Date', + 'Fri, 19 Nov 2021 07:13:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8b2b65cf-a55b-498d-9e59-35f378ff9d3c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10769', + 'x-ms-correlation-request-id', + '6893d20a-da1c-4c67-a0f6-2a0d9520726c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071358Z:6893d20a-da1c-4c67-a0f6-2a0d9520726c', + 'Date', + 'Fri, 19 Nov 2021 07:13:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9a1e881e-5fbf-4cbf-87ba-b70a6d347bf7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10768', + 'x-ms-correlation-request-id', + '3ef3dde3-7abc-481c-ba0f-a899bf6ca5cf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071358Z:3ef3dde3-7abc-481c-ba0f-a899bf6ca5cf', + 'Date', + 'Fri, 19 Nov 2021 07:13:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '971f590a-8397-4905-bfe1-9480fad25013', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10767', + 'x-ms-correlation-request-id', + '1a21268e-bb05-44ea-913e-64bf690f5b80', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071359Z:1a21268e-bb05-44ea-913e-64bf690f5b80', + 'Date', + 'Fri, 19 Nov 2021 07:13:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ba9b23e5-64e2-439a-9364-e517a3976b42', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10766', + 'x-ms-correlation-request-id', + 'ad7f461e-9b18-44cb-b91e-c965b241f5ea', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071359Z:ad7f461e-9b18-44cb-b91e-c965b241f5ea', + 'Date', + 'Fri, 19 Nov 2021 07:13:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8259756a-ce82-429a-890b-92f6b724ddb2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10765', + 'x-ms-correlation-request-id', + '79172264-4c1d-4242-ade7-46c4ff6d27ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071359Z:79172264-4c1d-4242-ade7-46c4ff6d27ca', + 'Date', + 'Fri, 19 Nov 2021 07:13:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5eee6674-bd37-4b4a-8d97-60c547c3648e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10764', + 'x-ms-correlation-request-id', + '1729a6de-43bd-4bf2-8845-f42b2e4a32ba', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071400Z:1729a6de-43bd-4bf2-8845-f42b2e4a32ba', + 'Date', + 'Fri, 19 Nov 2021 07:13:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8c61020d-a6a4-4bd7-ae3d-b6e0af57abcc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10763', + 'x-ms-correlation-request-id', + '16a86975-eb7d-4815-a4e8-79dfce1380e8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071400Z:16a86975-eb7d-4815-a4e8-79dfce1380e8', + 'Date', + 'Fri, 19 Nov 2021 07:13:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6128d957-b68d-4198-b947-ece843cd9838', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10762', + 'x-ms-correlation-request-id', + 'c28a3d81-0f87-47d6-abb0-21d2d12d259d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071400Z:c28a3d81-0f87-47d6-abb0-21d2d12d259d', + 'Date', + 'Fri, 19 Nov 2021 07:14:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '28e81e59-5801-4820-9348-0407ab6494e9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10761', + 'x-ms-correlation-request-id', + '696f07d2-99f9-473e-afb3-d1fe563cf6d9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071400Z:696f07d2-99f9-473e-afb3-d1fe563cf6d9', + 'Date', + 'Fri, 19 Nov 2021 07:14:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ae16e54f-4131-4105-86b3-20304badddba', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10760', + 'x-ms-correlation-request-id', + '8d9109b2-42d3-4cf7-a6cd-c09c52fe638b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071401Z:8d9109b2-42d3-4cf7-a6cd-c09c52fe638b', + 'Date', + 'Fri, 19 Nov 2021 07:14:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8fa18226-8113-45a3-a99a-4809cf3f762f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10759', + 'x-ms-correlation-request-id', + '48fca884-a439-4ab5-a51e-8cc57ad070d8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071401Z:48fca884-a439-4ab5-a51e-8cc57ad070d8', + 'Date', + 'Fri, 19 Nov 2021 07:14:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '62cdfea6-8dd0-4982-bb63-cfe5956a2e01', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10758', + 'x-ms-correlation-request-id', + '32982f2b-361a-4b2a-b039-0e246dfdcc2c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071401Z:32982f2b-361a-4b2a-b039-0e246dfdcc2c', + 'Date', + 'Fri, 19 Nov 2021 07:14:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'af93467b-c254-4d73-a05a-9884977e45e8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10757', + 'x-ms-correlation-request-id', + 'e4ebe336-a60b-4725-b773-c639e0e09a5b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071402Z:e4ebe336-a60b-4725-b773-c639e0e09a5b', + 'Date', + 'Fri, 19 Nov 2021 07:14:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1a5f32a8-b784-4f65-9b1c-c7434d1f9493', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10756', + 'x-ms-correlation-request-id', + 'c84f190e-1c1b-4112-8ab6-20408497e809', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071402Z:c84f190e-1c1b-4112-8ab6-20408497e809', + 'Date', + 'Fri, 19 Nov 2021 07:14:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8b906ec8-ea50-4376-99e9-dd8b74d0c38d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10755', + 'x-ms-correlation-request-id', + 'c4b67ed3-a4c6-4206-9cca-7e486adf0109', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071402Z:c4b67ed3-a4c6-4206-9cca-7e486adf0109', + 'Date', + 'Fri, 19 Nov 2021 07:14:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ea659081-ccd1-4845-94f1-5a12bda46976', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10754', + 'x-ms-correlation-request-id', + 'a9eb0999-b533-4da6-b044-dd4518d23151', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071402Z:a9eb0999-b533-4da6-b044-dd4518d23151', + 'Date', + 'Fri, 19 Nov 2021 07:14:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dafaa953-8334-4895-be84-2169bfec705a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10753', + 'x-ms-correlation-request-id', + 'bee37f45-0741-4fee-9488-1fdfe8411dbe', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071403Z:bee37f45-0741-4fee-9488-1fdfe8411dbe', + 'Date', + 'Fri, 19 Nov 2021 07:14:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7db09340-95eb-4fb8-8238-de98f7b19610', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10752', + 'x-ms-correlation-request-id', + '1251a99b-f4e2-4773-9a31-4d9a8e4479b6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071403Z:1251a99b-f4e2-4773-9a31-4d9a8e4479b6', + 'Date', + 'Fri, 19 Nov 2021 07:14:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ef065301-d076-4b83-90d3-319f79dac746', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10751', + 'x-ms-correlation-request-id', + '1de61a9d-7941-4051-989a-cf4aa8860e81', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071403Z:1de61a9d-7941-4051-989a-cf4aa8860e81', + 'Date', + 'Fri, 19 Nov 2021 07:14:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9e502b0f-5c09-416e-85f7-6a9891905f64', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10750', + 'x-ms-correlation-request-id', + 'f84c1990-e825-4f53-895a-eeca82376468', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071404Z:f84c1990-e825-4f53-895a-eeca82376468', + 'Date', + 'Fri, 19 Nov 2021 07:14:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6fd01259-2e7d-4cbe-bb2e-4dd2b7d5f013', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10749', + 'x-ms-correlation-request-id', + '904c2078-fdaa-4187-b2b7-a4b0968be876', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071404Z:904c2078-fdaa-4187-b2b7-a4b0968be876', + 'Date', + 'Fri, 19 Nov 2021 07:14:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ac2ab8a0-0a88-422b-9d5d-396f3f4ff156', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10748', + 'x-ms-correlation-request-id', + '327a55da-8761-4159-aa28-6836d74acb2d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071404Z:327a55da-8761-4159-aa28-6836d74acb2d', + 'Date', + 'Fri, 19 Nov 2021 07:14:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6554c2b2-1348-4b97-bbc3-8577fcf39741', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10747', + 'x-ms-correlation-request-id', + 'd5d4c6c9-7fff-4bbf-9292-09156ec52b67', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071405Z:d5d4c6c9-7fff-4bbf-9292-09156ec52b67', + 'Date', + 'Fri, 19 Nov 2021 07:14:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f1c07539-3715-4ada-938e-64160bf7dffb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10746', + 'x-ms-correlation-request-id', + 'f662d8b8-f2ae-44a6-868c-3ac9895c8569', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071405Z:f662d8b8-f2ae-44a6-868c-3ac9895c8569', + 'Date', + 'Fri, 19 Nov 2021 07:14:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8626cf25-7c00-4de8-a221-23f506a2157c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10745', + 'x-ms-correlation-request-id', + 'c61f3a2d-3e47-4a91-980b-7000677da620', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071405Z:c61f3a2d-3e47-4a91-980b-7000677da620', + 'Date', + 'Fri, 19 Nov 2021 07:14:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd56983cc-c93f-4e92-a9f3-6ad25afefad1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10744', + 'x-ms-correlation-request-id', + 'e0426cda-e1f2-4af6-85a4-20374b4fe256', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071405Z:e0426cda-e1f2-4af6-85a4-20374b4fe256', + 'Date', + 'Fri, 19 Nov 2021 07:14:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e1f89b3e-4a0b-4a2f-a174-5b46a05db07a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10743', + 'x-ms-correlation-request-id', + '214f82a6-73dc-4620-9ad1-65dd4019c4ac', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071406Z:214f82a6-73dc-4620-9ad1-65dd4019c4ac', + 'Date', + 'Fri, 19 Nov 2021 07:14:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8fa46c85-0b10-43a1-8f0d-12aa3bd0cd76', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10742', + 'x-ms-correlation-request-id', + '74558b48-3a06-4f09-90fb-dc0f669c965d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071406Z:74558b48-3a06-4f09-90fb-dc0f669c965d', + 'Date', + 'Fri, 19 Nov 2021 07:14:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '43c390c9-e082-40b4-b8c9-ebf89fcd4c52', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10741', + 'x-ms-correlation-request-id', + '82526d2e-2774-40c2-8302-b656ce3598f2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071406Z:82526d2e-2774-40c2-8302-b656ce3598f2', + 'Date', + 'Fri, 19 Nov 2021 07:14:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b5e0936f-2473-4796-8ea2-75528e66eab7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10740', + 'x-ms-correlation-request-id', + '6ae27bf3-cb69-4239-beed-05a7cd43489b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071407Z:6ae27bf3-cb69-4239-beed-05a7cd43489b', + 'Date', + 'Fri, 19 Nov 2021 07:14:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1c225e43-e0bf-477b-a8f4-a9f45b531704', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10739', + 'x-ms-correlation-request-id', + '5efac931-9acb-43d1-8791-feda232be8d6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071407Z:5efac931-9acb-43d1-8791-feda232be8d6', + 'Date', + 'Fri, 19 Nov 2021 07:14:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bc101735-bb0c-43d4-a671-7998b2fe953a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10738', + 'x-ms-correlation-request-id', + 'f29123e4-d466-4bce-a625-c6b9ffa286fe', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071407Z:f29123e4-d466-4bce-a625-c6b9ffa286fe', + 'Date', + 'Fri, 19 Nov 2021 07:14:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '79abaf73-2cd3-44d4-9628-e376af5bf5ce', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10737', + 'x-ms-correlation-request-id', + 'daf9c6f8-f432-4f72-a2d6-ddc96d88d90f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071407Z:daf9c6f8-f432-4f72-a2d6-ddc96d88d90f', + 'Date', + 'Fri, 19 Nov 2021 07:14:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dfa45033-5c1b-41b6-9525-82425999f17b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10736', + 'x-ms-correlation-request-id', + '3e4c9cba-b7d7-4aa9-b75e-53bb97cc8fdc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071408Z:3e4c9cba-b7d7-4aa9-b75e-53bb97cc8fdc', + 'Date', + 'Fri, 19 Nov 2021 07:14:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '339474fb-f779-487f-adfb-1b2e9a2fbbe6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10735', + 'x-ms-correlation-request-id', + '4d128a16-23e9-4deb-8f40-d80f488f6d1a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071408Z:4d128a16-23e9-4deb-8f40-d80f488f6d1a', + 'Date', + 'Fri, 19 Nov 2021 07:14:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2e5ed5e7-efd4-4afc-9427-988ac044e6fb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10734', + 'x-ms-correlation-request-id', + '3123b200-171c-4bf4-bbfb-008b91a95da0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071408Z:3123b200-171c-4bf4-bbfb-008b91a95da0', + 'Date', + 'Fri, 19 Nov 2021 07:14:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ff369e57-63ac-4ebe-b7af-a82c91a60770', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10733', + 'x-ms-correlation-request-id', + '5aff9d6b-7916-4f47-b994-84e27d74af8e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071409Z:5aff9d6b-7916-4f47-b994-84e27d74af8e', + 'Date', + 'Fri, 19 Nov 2021 07:14:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '24e71f2a-3289-444a-b3af-19e732efef13', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10732', + 'x-ms-correlation-request-id', + 'dfd6e9e5-3f0f-438c-b3f0-12dd0690565d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071409Z:dfd6e9e5-3f0f-438c-b3f0-12dd0690565d', + 'Date', + 'Fri, 19 Nov 2021 07:14:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4bd26cd1-1bd3-4228-b811-4e51eca3e55f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10731', + 'x-ms-correlation-request-id', + 'c3a5aa41-efc4-40c2-8dec-ffd03c9e5f15', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071409Z:c3a5aa41-efc4-40c2-8dec-ffd03c9e5f15', + 'Date', + 'Fri, 19 Nov 2021 07:14:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '01e6fd3f-9fbe-4cbd-8db3-811ce6ca52f5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10730', + 'x-ms-correlation-request-id', + 'b6f72160-e602-4138-a733-f51d8c6cc39e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071410Z:b6f72160-e602-4138-a733-f51d8c6cc39e', + 'Date', + 'Fri, 19 Nov 2021 07:14:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8bd587f4-49ed-442f-9eb7-368e3b52069b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10729', + 'x-ms-correlation-request-id', + 'e1178066-b810-4481-99bd-c5bedf7e7abf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071410Z:e1178066-b810-4481-99bd-c5bedf7e7abf', + 'Date', + 'Fri, 19 Nov 2021 07:14:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4aaca562-3259-4ebc-aa54-9fdc4305acbc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10728', + 'x-ms-correlation-request-id', + '429a0f36-c439-422e-a8f5-f636cca94f00', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071410Z:429a0f36-c439-422e-a8f5-f636cca94f00', + 'Date', + 'Fri, 19 Nov 2021 07:14:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '66257f6b-76a9-4fe9-8a10-80ed06f397ab', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10727', + 'x-ms-correlation-request-id', + 'c69cf27b-108f-4b1c-ac69-1dfd50216b1f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071410Z:c69cf27b-108f-4b1c-ac69-1dfd50216b1f', + 'Date', + 'Fri, 19 Nov 2021 07:14:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a4d83aba-9370-4c75-8c8e-b043b7ad54b3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10726', + 'x-ms-correlation-request-id', + 'c403fd88-6fc8-48b6-9cef-6721fb4687d1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071411Z:c403fd88-6fc8-48b6-9cef-6721fb4687d1', + 'Date', + 'Fri, 19 Nov 2021 07:14:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '83695710-a5a3-4b5a-93b8-d96901e28de1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10725', + 'x-ms-correlation-request-id', + '615d76c3-aecb-4f63-bfad-40e0702acd0c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071411Z:615d76c3-aecb-4f63-bfad-40e0702acd0c', + 'Date', + 'Fri, 19 Nov 2021 07:14:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '674bdbbc-f43f-49a6-b69b-9403841371d6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10724', + 'x-ms-correlation-request-id', + '70cb781e-cd10-42d7-b71b-d11004e1d662', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071411Z:70cb781e-cd10-42d7-b71b-d11004e1d662', + 'Date', + 'Fri, 19 Nov 2021 07:14:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9e7037bb-f071-4d2b-b975-ddc0ec472506', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10723', + 'x-ms-correlation-request-id', + '0b652fc8-f51e-4674-858a-23390ca1ceab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071412Z:0b652fc8-f51e-4674-858a-23390ca1ceab', + 'Date', + 'Fri, 19 Nov 2021 07:14:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b2194d08-396f-44c6-a55c-366cbe9e494e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10722', + 'x-ms-correlation-request-id', + '53c907b3-bbbb-424f-bd99-886c76f28b98', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071412Z:53c907b3-bbbb-424f-bd99-886c76f28b98', + 'Date', + 'Fri, 19 Nov 2021 07:14:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '10c2aa85-4142-4824-ba0c-94b495c9241f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10721', + 'x-ms-correlation-request-id', + '8647c2ae-36e8-4230-ac2b-84d036e97900', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071412Z:8647c2ae-36e8-4230-ac2b-84d036e97900', + 'Date', + 'Fri, 19 Nov 2021 07:14:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f2ef41c5-677e-4684-8eac-361ee2965452', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10720', + 'x-ms-correlation-request-id', + '0395d46f-9f84-4525-b135-ca15604d2431', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071413Z:0395d46f-9f84-4525-b135-ca15604d2431', + 'Date', + 'Fri, 19 Nov 2021 07:14:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '56922a81-d932-435c-8d35-da73819f2ecb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10719', + 'x-ms-correlation-request-id', + '2f266458-665e-4a58-8ff0-b7873842970d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071413Z:2f266458-665e-4a58-8ff0-b7873842970d', + 'Date', + 'Fri, 19 Nov 2021 07:14:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ced83c9a-2841-445e-bdcf-5a1546c8ecc8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10718', + 'x-ms-correlation-request-id', + 'a75ee1d0-ce16-46cd-8db3-06e58727c51f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071413Z:a75ee1d0-ce16-46cd-8db3-06e58727c51f', + 'Date', + 'Fri, 19 Nov 2021 07:14:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fcdd8040-7dd9-496c-9515-0cb1d84c52a5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10717', + 'x-ms-correlation-request-id', + 'cb46f129-819e-4e82-8081-a56a6fa17732', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071413Z:cb46f129-819e-4e82-8081-a56a6fa17732', + 'Date', + 'Fri, 19 Nov 2021 07:14:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9d759a98-027b-493c-a937-dd063991e5c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10716', + 'x-ms-correlation-request-id', + 'b56f39d9-904f-4055-8423-9805a1a683ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071414Z:b56f39d9-904f-4055-8423-9805a1a683ca', + 'Date', + 'Fri, 19 Nov 2021 07:14:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0d1c3675-6d3d-4900-b6e3-cbe8c3c651bf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10715', + 'x-ms-correlation-request-id', + 'fe7be6a3-edfe-4d64-bf2b-49d2a47383ca', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071414Z:fe7be6a3-edfe-4d64-bf2b-49d2a47383ca', + 'Date', + 'Fri, 19 Nov 2021 07:14:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0a2d0369-7168-49a8-9cfd-ca978a38a5d2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10714', + 'x-ms-correlation-request-id', + 'd84bc6de-b9f4-43a8-b8c7-9ba2f89e6f3f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071414Z:d84bc6de-b9f4-43a8-b8c7-9ba2f89e6f3f', + 'Date', + 'Fri, 19 Nov 2021 07:14:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b944cc4b-485c-40de-8b9c-7475947fcf2d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10713', + 'x-ms-correlation-request-id', + '2310a12b-3aff-4cce-a2ab-98202a5aabfe', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071415Z:2310a12b-3aff-4cce-a2ab-98202a5aabfe', + 'Date', + 'Fri, 19 Nov 2021 07:14:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a3d93b00-eb71-4d03-8976-0526f08e53d8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10712', + 'x-ms-correlation-request-id', + 'e65176ca-826e-46b8-b754-ca78a7d7e11a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071415Z:e65176ca-826e-46b8-b754-ca78a7d7e11a', + 'Date', + 'Fri, 19 Nov 2021 07:14:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a7061b50-7830-467c-9e3b-9dc4a4e00701', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10711', + 'x-ms-correlation-request-id', + 'cf5308e2-85e4-4942-be51-a51b914079e1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071415Z:cf5308e2-85e4-4942-be51-a51b914079e1', + 'Date', + 'Fri, 19 Nov 2021 07:14:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '56a07ee2-6655-4296-ad76-b6366b46bbf8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10710', + 'x-ms-correlation-request-id', + '01e4a339-7c22-4441-9f0a-275c6a340326', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071416Z:01e4a339-7c22-4441-9f0a-275c6a340326', + 'Date', + 'Fri, 19 Nov 2021 07:14:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e2fd67c7-4fa0-4ce7-924f-f7ccc4fed227', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10709', + 'x-ms-correlation-request-id', + '553eb6e9-87be-4685-a590-d3956b173f9d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071416Z:553eb6e9-87be-4685-a590-d3956b173f9d', + 'Date', + 'Fri, 19 Nov 2021 07:14:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c42e74fc-a836-4b14-ab7e-e98083e69d21', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10708', + 'x-ms-correlation-request-id', + '2a34e7ad-8dcf-48d2-b514-c43ad970ffc7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071416Z:2a34e7ad-8dcf-48d2-b514-c43ad970ffc7', + 'Date', + 'Fri, 19 Nov 2021 07:14:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e7f22432-6b46-4c88-9c4e-e578c6103e42', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10707', + 'x-ms-correlation-request-id', + '5db6435c-1512-46c3-bc91-61edcf86fb3d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071416Z:5db6435c-1512-46c3-bc91-61edcf86fb3d', + 'Date', + 'Fri, 19 Nov 2021 07:14:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a75a84e5-31ee-48db-99fa-a3539ab7c503', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10706', + 'x-ms-correlation-request-id', + '5bfb3d61-ed10-4f5a-8cd0-599457e91524', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071417Z:5bfb3d61-ed10-4f5a-8cd0-599457e91524', + 'Date', + 'Fri, 19 Nov 2021 07:14:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '41500f84-c7fe-4bdb-a2cd-56b9b5215119', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10705', + 'x-ms-correlation-request-id', + '66c67a86-2dbe-486c-a952-7c28a5023163', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071417Z:66c67a86-2dbe-486c-a952-7c28a5023163', + 'Date', + 'Fri, 19 Nov 2021 07:14:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a25e9eca-464b-4ad8-b8eb-ceccb90f4136', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10704', + 'x-ms-correlation-request-id', + 'cfbbf529-8938-486f-89ac-356c763f3b9d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071417Z:cfbbf529-8938-486f-89ac-356c763f3b9d', + 'Date', + 'Fri, 19 Nov 2021 07:14:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0b648825-0c7e-4518-93ee-9e08964c9868', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10703', + 'x-ms-correlation-request-id', + '7827aa51-408a-488c-adcf-71c6fa480a84', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071418Z:7827aa51-408a-488c-adcf-71c6fa480a84', + 'Date', + 'Fri, 19 Nov 2021 07:14:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '728f016e-1b08-484c-a83d-b04ef54c9c14', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10702', + 'x-ms-correlation-request-id', + '6aff3739-0f5f-412a-b9d6-c6e0f4c172d3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071418Z:6aff3739-0f5f-412a-b9d6-c6e0f4c172d3', + 'Date', + 'Fri, 19 Nov 2021 07:14:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '503e8edc-d769-46cd-8749-88a6c7df1a8d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10701', + 'x-ms-correlation-request-id', + 'd57ec904-ac2c-42ff-b853-1caad9cc9567', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071418Z:d57ec904-ac2c-42ff-b853-1caad9cc9567', + 'Date', + 'Fri, 19 Nov 2021 07:14:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '91c011a4-f0b0-4275-947b-1ef47d434266', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10700', + 'x-ms-correlation-request-id', + '79f768e6-7f54-428a-a3c5-59b93fd6ff27', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071418Z:79f768e6-7f54-428a-a3c5-59b93fd6ff27', + 'Date', + 'Fri, 19 Nov 2021 07:14:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6f4f114b-2a85-480b-885e-3cfbfadc6a00', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10699', + 'x-ms-correlation-request-id', + '09af1471-e923-46a8-8ffc-724e766d3338', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071419Z:09af1471-e923-46a8-8ffc-724e766d3338', + 'Date', + 'Fri, 19 Nov 2021 07:14:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cab82d17-dbc3-4e44-9afc-712554ccf24d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10698', + 'x-ms-correlation-request-id', + '76f8e5f0-c01e-45aa-9f44-5bc28e084d40', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071419Z:76f8e5f0-c01e-45aa-9f44-5bc28e084d40', + 'Date', + 'Fri, 19 Nov 2021 07:14:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8453f2e4-03c4-4a58-b11f-24278a3a9958', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10697', + 'x-ms-correlation-request-id', + 'dfb7e191-1f6c-4452-852a-e9c72919b7a9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071419Z:dfb7e191-1f6c-4452-852a-e9c72919b7a9', + 'Date', + 'Fri, 19 Nov 2021 07:14:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cb952675-e1c6-4819-bfae-746c3c5ed490', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10696', + 'x-ms-correlation-request-id', + '77569673-3c7e-48d0-a045-d7b576a67190', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071420Z:77569673-3c7e-48d0-a045-d7b576a67190', + 'Date', + 'Fri, 19 Nov 2021 07:14:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b2ddbae6-f7e8-427c-8326-b97e8b43fd81', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10695', + 'x-ms-correlation-request-id', + 'ee2b5dc7-074c-4527-8af5-a1462331741d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071420Z:ee2b5dc7-074c-4527-8af5-a1462331741d', + 'Date', + 'Fri, 19 Nov 2021 07:14:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ad526ac8-f354-4577-87b1-815d670a3590', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10694', + 'x-ms-correlation-request-id', + 'dc1c6d6f-c4f8-4014-920b-919640714365', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071420Z:dc1c6d6f-c4f8-4014-920b-919640714365', + 'Date', + 'Fri, 19 Nov 2021 07:14:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '74cd0801-22b4-4408-8a19-eac84afe7890', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10693', + 'x-ms-correlation-request-id', + 'c52575a8-1ae6-420f-a0ff-46557f80086b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071421Z:c52575a8-1ae6-420f-a0ff-46557f80086b', + 'Date', + 'Fri, 19 Nov 2021 07:14:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b6957c5c-d581-4189-a794-7fb4104560f7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10692', + 'x-ms-correlation-request-id', + '933035b5-4c23-4165-adf1-868161017b7f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071421Z:933035b5-4c23-4165-adf1-868161017b7f', + 'Date', + 'Fri, 19 Nov 2021 07:14:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7c73b898-962d-4282-9f44-866d7507f43a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10691', + 'x-ms-correlation-request-id', + 'fae2f0ab-e83e-42ff-a5a9-9811762e6902', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071421Z:fae2f0ab-e83e-42ff-a5a9-9811762e6902', + 'Date', + 'Fri, 19 Nov 2021 07:14:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '38807382-43c5-4ba1-9d9c-8d4f0550af3c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10690', + 'x-ms-correlation-request-id', + 'bb284b9a-a223-4f6c-8b02-f5f0ad82430a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071421Z:bb284b9a-a223-4f6c-8b02-f5f0ad82430a', + 'Date', + 'Fri, 19 Nov 2021 07:14:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eb26ad04-44af-4f2e-a45b-7292907fcea8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10689', + 'x-ms-correlation-request-id', + 'ea19a418-301d-46ee-9dc6-e543b5abd173', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071422Z:ea19a418-301d-46ee-9dc6-e543b5abd173', + 'Date', + 'Fri, 19 Nov 2021 07:14:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '50e7345a-99d9-422f-970c-2bd021d1d89b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10688', + 'x-ms-correlation-request-id', + '777871ff-77f5-47a9-8f0e-5eb361572a85', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071422Z:777871ff-77f5-47a9-8f0e-5eb361572a85', + 'Date', + 'Fri, 19 Nov 2021 07:14:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e5cab69d-ea6f-4831-a21d-337ce62b6eb9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10687', + 'x-ms-correlation-request-id', + 'e8b25ed6-20b2-43ab-a645-7eea58fcfa93', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071422Z:e8b25ed6-20b2-43ab-a645-7eea58fcfa93', + 'Date', + 'Fri, 19 Nov 2021 07:14:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0678a674-5570-450c-a086-cbfcb5ff1503', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10686', + 'x-ms-correlation-request-id', + '58a884d2-3f2e-4a5a-9bd5-fa2b1c2efcc0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071423Z:58a884d2-3f2e-4a5a-9bd5-fa2b1c2efcc0', + 'Date', + 'Fri, 19 Nov 2021 07:14:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '97618ff1-fe0d-49ba-b777-64923462c5e0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10685', + 'x-ms-correlation-request-id', + '7058d269-239d-4b32-b20b-bbe53cf60ba4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071423Z:7058d269-239d-4b32-b20b-bbe53cf60ba4', + 'Date', + 'Fri, 19 Nov 2021 07:14:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2fde36ca-3dac-454f-8c85-6ff89c9e3af5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10684', + 'x-ms-correlation-request-id', + 'dd94ef4c-4ea7-444d-b8e6-6017ba607247', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071423Z:dd94ef4c-4ea7-444d-b8e6-6017ba607247', + 'Date', + 'Fri, 19 Nov 2021 07:14:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eb4e4485-7e6d-463e-ad44-d475cfa24090', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10683', + 'x-ms-correlation-request-id', + '85ca5c28-ca10-4ff1-ae40-3e3bd14fb46e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071424Z:85ca5c28-ca10-4ff1-ae40-3e3bd14fb46e', + 'Date', + 'Fri, 19 Nov 2021 07:14:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a13ba7c8-f4bd-4f65-ae6d-cfab4d78a1c7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10682', + 'x-ms-correlation-request-id', + '61e3193c-2d75-4a35-995a-eb8110e744a4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071424Z:61e3193c-2d75-4a35-995a-eb8110e744a4', + 'Date', + 'Fri, 19 Nov 2021 07:14:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/accountOperationResults/myaccountxxx-1751e2ee-22c0-4472-a8ee-e5d756fc1a70') + .query(true) + .reply(200, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'x-ms-request-id', + 'a11484e3-4c16-4bbf-a95d-a21a7f59fa0b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '10681', + 'x-ms-correlation-request-id', + '2229c144-6aed-4b90-af1a-e53eae0aae01', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071424Z:2229c144-6aed-4b90-af1a-e53eae0aae01', + 'Date', + 'Fri, 19 Nov 2021 07:14:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/batchAccounts') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bdefff","92ff0742ea40440c000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '10680', + 'x-ms-request-id', + 'ef634c3e-50e4-4b7d-a5b4-6f24cc4ea331', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '6b616916-5991-43ff-b5f0-f465ee962094', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T071424Z:6b616916-5991-43ff-b5f0-f465ee962094', + 'Date', + 'Fri, 19 Nov 2021 07:14:24 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_get_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_get_test.js new file mode 100644 index 000000000000..e784d018dcc2 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_get_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "dac387774bebabe89b72ccf178285fa7"; + +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', + 'e888f668-d476-4f20-9388-b8b5abb23100', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Am7XmCydffdFjArM4JRFYk8; expires=Sun, 19-Dec-2021 07:07:24 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcHxP7veVjZ9Hr3wPn_cylnSaTniWwzFighkDajEFYt2YaertAxgmjYZSRmcMIb-36MPxqINWDSWoNPAcdjUwcQlV6nCrYEwtL4SCYVh0egSaRejUu73blt76xvMYSvjj9Ii0dqnkDPe6EP1Bx6_aX2oAqwjSlXVZ2N-0eWK4aPogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:23 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'a7763080-2c94-4c8e-a565-c4eaa5a44300', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Aim2p3USk-9LhpNS9xMb9H8; expires=Sun, 19-Dec-2021 07:07:24 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrawW0dR4pkmgjbVr29YqqtMQ_72dPTrXZbdY25ZtmB30D-IZAWrK8H1v5aQcmIv_dNpFTaRyhE_TjMCmRkmTnxKVywMZZIbLImWHMNNKhjTtpBbXFwl_GO4gRp5NWpRYrUHG739Hxzb63lwsJjeaEMOYO1LkcLaW8pg_ngM-OFQcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:23 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=5b5c5720-6bb0-4119-b471-3c20d3fe353b&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', + 'a6af092e-d9ef-4345-8611-2f0f75744400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AmZbgFFrXS5Ik4mXWlM1kbMWPr5BAQAAACxEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:24 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:23 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eea3d147cb6c9113269d4fdbeb153edd08899a95d53403ead434cf9a768dcf088f555eb745de7cf4e8177fa4504f97b355552c5b6ae8f73496b7c60c779cfd605de7e369b51028974543a08be5c5eb366b81cdebf5749ae7b37c46dfd3bf05f59dcf4eaa3aff8975d5661f3dbabfb313fbe2655effe417cfb245515e7ff4e87bbfd88cb869b3e52cab67c7977bfae5e8a3a9798781fd9251aff1d378e3bdfbf1c6f7628de3904fdfa7f1d3d7ef85c7ebf7817dfa5ead9f0d60b21b6dfde224d6766f3fd6f4276fddf4e9d3cbfd58e3380e4f891cefd1fcf4bd809fbe1ff0e39ddffff841ac79b4f1c1ef7fbcbb7bdbd64f6fdbf0f39b1a4eb2a6981edfd4ca807b76db862f7ef2655d2daa5b373f79afe6dfbe75c3f702fbc5ebdbb67c7aeb96cf6eddf2f35bb77cfe1e2de3021c6bfbe2e47d1adf9e02801bd539b1c6df7e726bb8df3eb975d3173ff95e28d4cded09f1f438ae12e26d07f447acf1e97b003e7d1fc05fbcc7349f9edd9e6e20f28d4890b5e7c6e98b13c2f9deefff663fbde91503fff73e3d1bd2bf7e73d703939bb4eaceceadfb784abc7a6be27cfbc97b10e7e5ad99f5d9effdc5d39f1c68fdfd1b5ca0d3e57945de23799f6dbdcee1c25dbdac8baa2eda6bdb9c8d3df9605555eadf44a111f9726d71997fa79a1c2f67f4efebe93c9fad4bf3ca3d6eb26eabd76d55671784ef2f2684f957f518cfa8d39f7597577bbf1b768d97f413e77d12e9caac697faffcfaf5f5724ab8ededeced6eefd2ff1ebed979f088feb7b733deddbfb7fb60f7a7a82d8d6d9e2f5b909650ffa29ad11089971828c1683efa2542b2e3d2b8c5da867de7d7797d594c7382b35a4fca62fa226fafaafa2de19737e4297f74bacc26254dcbe8a37c39adaf993c20e15bc28e074f6ddc2819243acca8b3ab7c76dcc38d607eefa3d7f3acce67841c813d3e7e4affbec99ab761e337d5db7cf9d1f7091691923e6dc94bfec5260078512df38f7ec9","2ff97f00fb9db93eaf0c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:23 GMT', + 'ETag', + '"0x8D9AB2B3C835CC0"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11985', + 'x-ms-request-id', + 'adfce19c-9fc1-4fb1-93eb-5d6a6a77607c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'cb708747-1dff-4afd-a2f5-a0e0b5498543', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070724Z:cb708747-1dff-4afd-a2f5-a0e0b5498543', + 'Date', + 'Fri, 19 Nov 2021 07:07:23 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_getkeys_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_getkeys_test.js new file mode 100644 index 000000000000..3a3d1d639ff9 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_getkeys_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "a7ceecf4731d2bc401e7214ce9c687e9"; + +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', + '9197b2f8-42de-4c59-8d11-f2d03d9c5500', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AghBZtabQmJNpkFdrHfzHY4; expires=Sun, 19-Dec-2021 07:07:24 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevriK8MGvom9a2WioncIgeUCcCXyOPvp-kynVCRssHGprZHKxeuG4AzI8_iKnljKtgdacTz9ZVuCftF6eDKPXZ8CZj8bvZiYbFR7p--YE0WuI3imIaIBgpWjm2m0e3DpUZR1DKXjLjl0qwZL8a2huwxkf1IUJsFiSlJ3ZlMlIatJbsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:23 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + '3c88997b-98c8-4a59-9b64-19da27e03f00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AgGjd9pT5Q1At64hTRy-PSA; expires=Sun, 19-Dec-2021 07:07:24 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2cMJElx54rveEpXHJWbPWcy15OtQJH14U9odbAFbH2bUvKrry6UgDmXh3ejwqivl0W3vXXH3t6dQ6Xz5I_75xsGAv4jAXQVmiPd2ViZKj-gWNvCXwPCNXUsm7z_SZQnswEftH3lFbaKiWASgUwkhhQeL5BaQVxAF_5bFbTOLdhEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:23 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=77d036db-b527-42f2-ae81-24a668f4abcf&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', + '4bbbbf0d-6bf6-458d-b125-20bde1933500', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgLtvQ4CzuRDqeFFAoBxSOcWPr5BAQAAACxEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:24 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .post('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/listKeys') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d9745aad97ed8b6c917ff4e8a3c5b5fefdeeddbb8f461fadea6291d5d7f4c5979fbc7e75fcfafeab4f27f39dcf0f66cd4fd55fbdf8e96fbf28beb8ff6ce7b4baf7e9777fef9fa85f3e7cf9acf9bdeffda22f7faac99ad9bb7b3f386b5e4c9f96efbefcc91f549fff5e8bc5e2e2db3fd1dcfb767e3af94efd74f5c9bd9fbaf8ec33eaa4c9a7d57226ddbcb87c52fec4f2e193ef3c7977ef27bed87db97b595d65bff74f7efe606fffdbf38bd3b3ebfad5efbdded9f9bd0f9e3efc74b15fbd5e3e5b7cf97b3dfbeefdeaf5a7af3f2d9fbfae9f35dfa9ca57bff717cbeccdf177be9afcd44ffc3e7baf7f82baf9","25ff0f521f848eea000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1199', + 'x-ms-request-id', + '896b5041-0886-4e21-b53a-4638284d3cd5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'ab61ad90-f519-40ed-96ed-e861ddf73c20', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070725Z:ab61ad90-f519-40ed-96ed-e861ddf73c20', + 'Date', + 'Fri, 19 Nov 2021 07:07:24 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_list_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_list_test.js new file mode 100644 index 000000000000..526d11fcc962 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_list_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "3d002ffb633f8952a71c359b5b5d1db7"; + +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', + 'b3c86951-a9f7-4277-be0c-141e5d6e1700', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AoW7cAd2-XNPs2K_cB6ap2Y; expires=Sun, 19-Dec-2021 07:07:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevresUw1OzxEY5kULPKC5Wg3CIk2qWI44l88VuPdeRjTokiWA0UB0AO4m0LYDI9AkQDiTcwZbOkNqdQPGj-uVROKx8LVWOSn0EIaG0ag-7XhsqPEEuDMqKXfXjhivH8VaCVkaEen-OcwPtH1jH-NFTtM6zpDUyTqYz5WgYsVK79dNogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:25 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'b7b271c6-fddd-4f57-a418-98cb75243700', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AiN7BR2UmqNLgNHvLGba_bE; expires=Sun, 19-Dec-2021 07:07:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrb1yIsDmorDyPVXdKRJ4SIQg-Asvs9pi9VU8asIhlnfYmhhI-pHgSAS9LWgWFJELAe7z_wu0gWnJkGcqxRIdrJwMvs7Oq3bO3NVuZxSwXYW2AV8xJoZGsyQTeujKt2krgK0r5DIAvS3w03-kkeDZTtbnUZLLsWbai2L3LZ_0bYZAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:25 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=c2c6bf33-9ab3-4948-8348-d839619a8dd1&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', + 'f2cd5188-710b-40eb-b71f-1e616f891900', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AtQtFMdZ_xBCgjdvuCndpf4WPr5BAQAAAC5EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:26 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:25 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/batchAccounts') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffc5131fbe8d147779bf5a499d6c5aa2daa6573f7e1def9c3fbb383f3ed7bd34f1f6cefefeeed6f3fdc9d3ed83e989eef3c98ce26e77bfbbb77ebbca9d6f534ffbcaed6abe6eee2faa79b366fdabbabbaba2c6679dddcfda298d655539db7e327593b9ddf9de0dfe3e9b45a2f5bbc90c9afefdebdfb68f4d1325b10421f753e6daf57f87423246a5656d30ca853d33c6bda353e233c5679dd1679f3d1a35ffc91423d5dce5655b16ca9a1dfd358de1a33dc71f683759d8fa7d542a05c160d812e9617afdbac0536afd7d3699ecff2197d4fff16d4773e3ba9eafc27d6559b7df4e8fece4eec8b9779fd935f3ccb164579cd94d711376db69c65f5ecf8724fbf1c7d3435ef30b05f32ea357e1a6fbc773fdef85eac711cf2e9fb347efafabdf078fd3eb04fdfabf5b3014c76a3ad5f9cc4daeeedc79afee4ad9b3e7d7ab91f6b1cc7e12991e33d9a9fbe17f0d3f7037ebcf3fb1f3f88358f363ef8fd8f77776fdbfae96d1b7e7e53c349d614d3e39b5a1970cf6edbf0c54fbeacab4575ebe627efd5fcdbb76ef85e60bf787ddb964f6fddf2d9ad5b7e7eeb96cfdfa3655c80636d5f9cbc4fe3db530070a33a27d6f8db4f6e0df7db27b76efae227df0b85bab93d219e1ec75542bced80fe88353e7d0fc0a7ef03f88bf798e6d3b3dbd30d44be1109b2f6dc387d714238dffbfddfeca737bd62e0ffdea76743fad76fee7a60729356ddd9b9751f4f89576f4d9c6f3f790fe2bcbc35b33efbbdbf78fa9303adbf7f830b74ba3cafc87b24efb3add7395cb8ab977551d5457b6d9bb3b1271facaa4afd9b2834225fae2d2ef3ef5493e3e58cfe7d3d9de7b375695eb9c74dd66df5baadeaec82f0fdc58430ffaa1ee31975fab3eef26aef77c3aef1927ee2bc4f225d9935edef955fbfbe5e4e09b7bd9dbddded5dfadfc3373b0f1ed1fff676c6bbfbf7761fecfe14b5a5b1cdf3650bd212ea5f54331a22f112032518cd47bf4448765c1ab758dbb0effc3aaf2f8b694e7056eb49594c5fe4ed5555bf25fcf2863ce58f4e97d9a4a469197d942fa7f5359307247c4bd8f1e0a98d1b2583448719757695cf8e7bb811ccef7df47a9ed5f98c9023b0c7c74fe9df3759f3366cfca67a9b2f3ffa3ec12252d2a72d79c9bfd804002faa65fed12ff925dfff25","ff0fa0c5f849bb0c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11984', + 'x-ms-request-id', + '1e248aae-2bb1-4f94-8d81-bae7b661a785', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'e7a0c548-2843-47f6-b18e-71473120062a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070727Z:e7a0c548-2843-47f6-b18e-71473120062a', + 'Date', + 'Fri, 19 Nov 2021 07:07:26 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_regeneratekey_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_regeneratekey_test.js new file mode 100644 index 000000000000..8a269c79d6b3 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_regeneratekey_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "29133059352d7c2ebf204fe8100c75f4"; + +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', + '5c6fb399-2db6-49e9-b6bf-9132a567af00', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AhX9kPdrPJFAqRwRh4QfF9c; expires=Sun, 19-Dec-2021 07:07:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrCmRHWw3YvnflAuWPLxAbyuHbiMaR8ezue5z8mJA9fGme2_aGhpLEUlOs5Ma7xjPUHq2NXXlEY9clf4PogIB3siF0Er3EEz8RgwyRv4us4x2dGGMmtiFbnjNtU6XH0BiV9id1KzAp0oU05DQpf8ta9jk9Tg8gvA2cvqq-iDTxE5YgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:24 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'f4ed96f2-9537-472a-b9ab-348f8f4e4500', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Aha8IhzznVhPlTV4F-E9vuw; expires=Sun, 19-Dec-2021 07:07:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4OVbfZRmayN57CSGo0fv2Yz98GefK70LLk5VMzUHdRTqqUbWbUl71EGDtDQBEieq5cWbezdS74JZFul7i-UTq3pcv1CcRrE7B_FuABDt_TEZ-rRAthKsdx4IQZrOXWHgBx0rXmPIHl2EDKOJqfLfHJozTbFILR2dYgBmAVMynDYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:24 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ea2fb2ac-1161-4b65-a3c0-576db5dc34de&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', + 'b7b271c6-fddd-4f57-a418-98cb41243700', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Am8OF4WKU95FiJLcRLiwUKwWPr5BAQAAAC1EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:25 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:24 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .post('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/regenerateKeys', {"keyName":"Primary"}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d9745aad97ed8b6c917ff4e8a3c5b5fefdeeddbb8f461fadea6291d5d7f4c5e9770e7ee2e183d3ea277eaa9c3c9cbf79f9e0d9cbebe9c5f9f4deecf7ba7879fff3e63bdf7df2e27e7bbe7af67b7f523e5d5e7ef5fbd4ef56076f9f9e3c797bfaeea71fe4cdbb9793e9cbc5eb5757afbe7af5f2a77ed1cb5ff47bfde0c1e5c5679f51274d3ead9633e9e6c5e593f227960f9f7ce7c9bb7b3ff1c5eecbddcbea2afbbd7ff2f3077bfbdf9e5f9c9e5dd7af7eeff5ceceef7df0f4e1a78bfdeaf5f2d9e2cbdfebd977ef57af3f7dfd69f9fc75fdacf94e55befabdbf58666f8ebff3d5e4a77ee2f7d97bfd13d4cd","2ff97f0098d51e73ea000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1198', + 'x-ms-request-id', + '3957a199-7db9-4da5-bdc3-d57ab276e127', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '122caceb-eef1-41aa-9fa1-4fc18cce9cec', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070726Z:122caceb-eef1-41aa-9fa1-4fc18cce9cec', + 'Date', + 'Fri, 19 Nov 2021 07:07:25 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_update_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_update_test.js new file mode 100644 index 000000000000..458bff43eb16 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_batchaccountoperations_update_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "c10d8352eee813454b7cbdfd02ecf2dd"; + +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', + '680f5cc5-01db-4cb3-b576-45b075dc1200', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Ak13iwJ5jsVBma3zIVcKuGU; expires=Sun, 19-Dec-2021 07:07:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrh-GVurAnLywB900ggm_v4rzTEb7Xhpx1qClUml7yCajkeloJQ3VcvjxMcBM6Bk_l5-g7erIuxD-dE6ANJYXdMICuqAb6rpmSD7R7osbi12y91XMw_MzBpGVpxtaFhbNcn8W5y1I003HFfdRRKD05ylgxgA-RnjWy0Agr94vdSzIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:26 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'cb0f8a18-9cf2-4235-8927-6ea924543e00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AqPxuFiJHrxMsXX1-h5V_OE; expires=Sun, 19-Dec-2021 07:07:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr2UBlW1ThO5UJevzqgAkmT1fcMZATyVw100SkWbnnnjMEDaBdcZ4Dv1sHuNx92vd7jQncZXzyfXcZwEoAvfhwdCVs4M-JV32NlDy0Zqbvbhvhc40oifLMPaInxP7bGzqbjbLVyM-5PRVrnYtQgiyaUFqIGF-1w91cKyg6Ao3JtHYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:26 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=6d7430ac-2944-431a-aeb9-0ffa29f4910d&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', + 'f2cd5188-710b-40eb-b71f-1e6199891900', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AjZVW-XgU6BMiTeMagu8MMkWPr5BAQAAAC9EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:27 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:26 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .patch('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx', {"tags":{"key1":"value1"}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eea3d147cb6c9113269d4fdbeb153edd08899a95d53403ead434cf9a768dcf088f555eb745de7cf4e8177fa4504f97b355552c5b6ae8f73496b7c60c779cfd605de7e369b51028974543a08be5c5eb366b81cdebf5749ae7b37c46dfd3bf05f59dcf4eaa3aff8975d5661f3dbabfb313fbe2655effe417cfb245515e7ff4e87bbfd88cb869b3e52cab67c7977bfae5e8a3a9798781fd9251aff1d378e3bdfbf1c6f7628de3904fdfa7f1d3d7ef85c7ebf7817dfa5ead9f0d60b21b6dfde224d6766f3fd6f4276fddf4e9d3cbfd58e3380e4f891cefd1fcf4bd809fbe1ff0e39ddffff841ac79b4f1c1ef7fbcbb7bdbd64f6fdbf0f39b1a4eb2a6981edfd4ca807b76db862f7ef2655d2daa5b373f79afe6dfbe75c3f702fbc5ebdbb67c7aeb96cf6eddf2f35bb77cfe1e2de3021c6bfbe2e47d1adf9e02801bd539b1c6df7e726bb8df3eb975d3173ff95e28d4cded09f1f438ae12e26d07f447acf1e97b003e7d1fc05fbcc7349f9edd9e6e20f28d4890b5e7c6e98b13c2f9deefff663fbde91503fff73e3d1bd2bf7e73d703939bb4eaceceadfb784abc7a6be27cfbc97b10e7e5ad99f5d9effdc5d39f1c68fdfd1b5ca0d3e57945de23799f6dbdcee1c25dbdac8baa2eda6bdb9c8d3df9605555eadf44a111f9726d71997fa79a1c2f67f4efebe93c9fad4bf3ca3d6eb26eabd76d55671784ef2f2684f957f518cfa8d39f7597577bbf1b768d97f413e77d12e9caac697faffcfaf5f5724ab8ededeced6eefd2ff1ebed979f088feb7b733deddbfb7fb60f7a7a82d8d6d9e2f5b909650ffa29ad11089971828c1683efa2542b2e3d2b8c5da867de7d7797d594c7382b35a4fca62fa226fafaafa2de19737e4297f74bacc26254dcbe8a37c39adaf993c20e15bc28e074f6ddc2819243acca8b3ab7c76dcc38d607eefa3d7f3acce67841c813d3e7e4affbec99ab761e337d5db7cf9d1f709569b5dd05bdce52ef5769995eb7c179d108da9794beef32f3691c18b6a997ff44b7e","c9ff0386763447c80c0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:28 GMT', + 'ETag', + '"0x8D9AB2B3F2BA456"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1195', + 'x-ms-request-id', + '3e8571b4-c6e2-4b94-9957-7e7957a58ef5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'a905878f-a07e-40ca-a0e9-c9f12a6880e8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070729Z:a905878f-a07e-40ca-a0e9-c9f12a6880e8', + 'Date', + 'Fri, 19 Nov 2021 07:07:28 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_canceldeletion_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_canceldeletion_test.js new file mode 100644 index 000000000000..8dd6bc9b5fd5 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_canceldeletion_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "4af27329d42c330c0f0060c70779382f"; + +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', + '252c3b4d-43bf-4910-b497-74d55a311600', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Ansq-txxZmNDv6ariuvybYg; expires=Sun, 19-Dec-2021 07:07:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrcHmkDwvHBJrhUK0A0bR4UXabrkAf6NhV-uzb1z7G2mM7L3S7sjzIw5WXZDgSrNVAczzmlKKTrwQVXNUW0hzHi9my4pA1h5WVjqcaMohZRrW8XGMNzSeAq0orDLP5lCvvp-zWbo7I2_-bWElnFE6L1_HxGEGWO9JP1qxxOtFbhjogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:34 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'a928a7b3-5033-4d2f-a2fd-cb4b7a684100', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Ahn9f43M84dPswfmEDtVkg8; expires=Sun, 19-Dec-2021 07:07:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr7ShVf_39efROnMmqbKBjQjQFDuJw5midHp4xizcgz7Kj1ewSzYzxxp-CxbefskkFVrA1Yw6mljgpSIfFfDuQr8dG5pgYy2Fs-0Ysp4eZ395Ls9lWzIB802Dvm2cEgfiBUQld8O24_vFJlNYj-5Vbzc7K42gjahoK8Jmj-bFiecUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:35 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=0bef3b4e-8ba0-4565-9c13-cc45880ec2e4&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', + 'c711cb4a-a339-477b-a362-3121d5773600', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AqyQAO5efU9NvL3R5BFpEAgWPr5BAQAAADdEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:35 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .post('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7/cancelDelete') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147cb6c917ff4e8a3669eed6e4fcfcff7b2c9a7f7a607d387f7ef67d9f983dd87070ff3f3ecd3fdddc9c39d4fefdf3f983d3c9f3cf868f45131a397ee36eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc74fb2763abf3bc1bfc7d369b55eb67821935fdfbd7b77779ad76d715e4c330271f77d87d05eaf30f2cdddf93dd03b799b5dd03bdfbdfbfb7eb4f3eee0e9c3e3277b4ff6f7eeededdd3f3efe7d3fa206348c155ea1d68f7ef147ed7cbd98acea62d91e9717555db4f305bd0d44a9a9fb923e7b0fbca98bcba2218a17cb8bd72d2146afbf5e4fa7793ecb67b1efdfd4d9b22930476f0a9eecbd9dbddded5dfadfc3373b0f1ed1ffeedd1befeddefbf4e1bdfb3f4500ceab7a9101a997e7efe8cfd57a5216d3a7599bd1475f9c9d3da97f707272fc937b17c757674f8e2fce7ee2db3ff579bbf776e7f9c9f367bfd7eff3fb9c3c7b577e67f9f6cdf1779e5c7c553fbdf8e2e4db3ff1d5f1174f7e9f77cf9e1ebf7e72f1e2279f1c7ff1e664f73b97937b3f71f113df9d9593c58bfb5f3cd9ffbd9fbe39ddfbe2e9e9d5176f8eef7df1f4f8ea8b67153edbef7c7675fad3a73ff1c5f1fee7c7bb5f9d1ebffbe2db93c5c3b73ff57bbf789bfde0e4c9f207c72f9e5cbcfd45f3b7c5e70faf769e1cffc4e9b3e3e32f9ffcf44f1c5f5dfc3e6f4f2e7e9fd3e3f5efbdff7b7ff1ddeb5707d39f7875727cb0fbe6a7bffd655ebff8f2d9972b6ab8f7e5c14f9fce7eeaf2175dbd2abffa7d2ebe28f3d3df67efcbf2e5ec936556bebb2a7fe2e127bf68f2e2ed8bcfcf7f7a393ffbe2a2f8cefd932fcadffb62f6ea8b67f74e3f7dbafc62f9b65d7cfbd9e70f9feffce4e2273e7d7ed13e98cc7fef57076745fbeadbf9ef535e5edf7ffe9df2ead3e7d332bfff7b65cdde4fefbf99ff3e3ffdfc27263ffde48ba7af7fefa7fbdfbefca917f9fe57bfcfe95727c757a7c7c7d98be75f9cbebd7a75f5fb3cfdc9573b4f9e9c1e5fbdac6864eb9ff8cef39ff87d66dffeeae0f8a7bf7b3abff7e4a7defe3e9f9efe3e37d1fa627efcf98bbdabe35f74f1e46d31fff6cbf58bd7bfe8f77efa7bef7c71fcf6f327af9b2f695e674f7ee2f8e94ffcc493fbb39f7e99ef7cfee9f4de4f1d3c5dbffaf4f4272667f3275fbc599eecfce0f779392f2e7ed127ef769f7f7e70efc1a7bb67f5c1cbe2f5f5279f56efae4ebefd65f6fbfcd4f5e53cffeececb27d7cbf6e4ee779f5d7d55acce970f0e3efa25","bfe4ff0162be310078040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:33 GMT', + 'ETag', + 'W/"0x8D9AB2B423225AA"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1197', + 'x-ms-request-id', + 'd171d0de-f2ab-4271-99b2-b13576457a8c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '97323ee7-bd42-486d-958e-4b6add504ba4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070736Z:97323ee7-bd42-486d-958e-4b6add504ba4', + 'Date', + 'Fri, 19 Nov 2021 07:07:36 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_create_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_create_test.js new file mode 100644 index 000000000000..6b2083e7a4cf --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_create_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "2e19f76ccd3565c22e46689a4a6286e8"; + +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', + 'a5e97a7d-06d0-4cf2-9901-c6b3a5e84801', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AgFu_GdcFEdGkqfj8RtkT2s; expires=Sun, 19-Dec-2021 07:07:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr-UrcXrgGJfW30a8x8L9bkepEal8UgswkNz1rEwP5UiE3TyrfqNYPTciHq80QFZe9B4wC753omV9lgNiWrQWURinUvkVvod9ifjDFqyfDRruyxG0hU7ejaDQ612952GNds_756f4_bVI10UH-zJ88YbB-31h5mdKnNvQ394T3VnggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:31 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '3144b304-c4ce-4f00-bf92-0eb7b3113c00', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AtLAroUdiINPqwyRoShXJNE; expires=Sun, 19-Dec-2021 07:07:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrZ4suJZN6JqxusI7JtvFjmaV2QYLcigPAB5zPCAEj2jTwCkbtHrdyUIvioxlccP6oM1Ah-kDEZmksvxeKIx6Nd6houf0lRUcNzoIF0-DrCwxYLqPNnDdrrTJn5KNVK9CaNO20Xv03tnRTbtP9-sdi_7XZH5n_AU5mPoM6l1_-vYIgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:31 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=0a919d1e-0962-483e-94a1-59d506e8b185&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', + 'a6af092e-d9ef-4345-8611-2f0f60764400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Al2ZA3yYbU5NvDxul9Rh4zkWPr5BAQAAADREKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:32 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:31 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7', {"properties":{"thumbprintAlgorithm":"sha1","thumbprint":"cff2ab63c8c955aaf71989efa641b906558d9fb7","format":"Pfx","data":"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=","password":"nodesdk"}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147cb6c917ff4e8a3669eed6e4fcfcff7b2c9a7f7a607d387f7ef67d9f983dd87070ff3f3ecd3fdddc9c39d4fefdf3f983d3c9f3cf868f45131a397ee36eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc74fb2763abf3bc1bfc7d369b55eb67821935fdfbd7b77779ad76d715e4c330271f77d87d05eaf30f2cdddf93dd03b799b5dd03bdfbdfbfb7eb4f3eee0e9c3e3277b4ff6f7eeededdd3f3efe7d3fa206348c155ea1d68f7ef147ed7cbd98acea62d91e9717555db4f305bd0d44a9a9fb923e7b0fbca98bcba2218a17cb8bd72d2146afbf5e4fa7793ecb67b1efdfd4d9b22930476f0a9eecbd9dbddded5dfadfc3373b0f1ed1ffeedd1befeddefbf4e1bdfb3f4500ceab7a9101a997e7efe8cfd57a5216d3a7599bd1475f9c9d3da97f707272fc937b17c757674f8e2fce7ee2db3ff579bbf776e7f9c9f367bfd7eff3fb9c3c7b577e67f9f6cdf1779e5c7c553fbdf8e2e4db3ff1d5f1174f7e9f77cf9e1ebf7e72f1e2279f1c7ff1e664f73b97937b3f71f113df9d9593c58bfb5f3cd9ffbd9fbe39ddfbe2e9e9d5176f8eef7df1f4f8ea8b67153edbef7c7675fad3a73ff1c5f1fee7c7bb5f9d1ebffbe2db93c5c3b73ff57bbf789bfde0e4c9f207c72f9e5cbcfd45f3b7c5e70faf769e1cffc4e9b3e3e32f9ffcf44f1c5f5dfc3e6f4f2e7e9fd3e3f5efbdff7b7ff1ddeb5707d39f7875727cb0fbe6a7bffd655ebff8f2d9972b6ab8f7e5c14f9fce7eeaf2175dbd2abffa7d2ebe28f3d3df67efcbf2e5ec936556bebb2a7fe2e127bf68f2e2ed8bcfcf7f7a393ffbe2a2f8cefd932fcadffb62f6ea8b67f74e3f7dbafc62f9b65d7cfbd9e70f9feffce4e2273e7d7ed13e98cc7fef57076745fbeadbf9ef535e5edf7ffe9df2ead3e7d332bfff7b65cdde4fefbf99ff3e3ffdfc27263ffde48ba7af7fefa7fbdfbefca917f9fe57bfcfe95727c757a7c7c7d98be75f9cbebd7a75f5fb3cfdc9573b4f9e9c1e5fbdac6864eb9ff8cef39ff87d66dffeeae0f8a7bf7b3abff7e4a7defe3e9f9efe3e37d1fa627efcf98bbdabe35f74f1e46d31fff6cbf58bd7bfe8f77efa7bef7c71fcf6f327af9b2f695e674f7ee2f8e94ffcc493fbb39f7e99ef7cfee9f4de4f1d3c5dbffaf4f4272667f3275fbc599eecfce0f779392f2e7ed127ef769f7f7e70efc1a7bb67f5c1cbe2f5f5279f56efae4ebefd65f6fbfcd4f5e53cffeececb27d7cbf6e4ee779f5d7d55acce970f0e3efa25","bfe4ff0162be310078040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:33 GMT', + 'ETag', + 'W/"0x8D9AB2B423225AA"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1193', + 'x-ms-request-id', + 'a315d0c9-d7ed-48ab-9c4d-60e544353ff7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'f00cecbe-3d07-4cfd-b667-0e63d7e4466d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070733Z:f00cecbe-3d07-4cfd-b667-0e63d7e4466d', + 'Date', + 'Fri, 19 Nov 2021 07:07:33 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_delete_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_delete_test.js new file mode 100644 index 000000000000..fd233421fd83 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_delete_test.js @@ -0,0 +1,6603 @@ +let nock = require('nock'); + +module.exports.hash = "47a2654c969bbea676e1176463d2f93e"; + +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', + '9d247688-040d-4d92-b3d3-0bd0a02d5a00', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AktAlxNh1z9PtmQGVBWARZ0; expires=Sun, 19-Dec-2021 07:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWeZ7QUbjo05DWXcUJIG6ijIAOooS-jmt_ZMAEIBISXd7sYOKkweBxwCpDLNFDuKHBSGkykxq2CQRIVBRU7FYjnE31hvsMjDAqLuYGSNnyV--_xolyjM8uVkj7981rzMR_6NATrWK5PXOckZ58uEz-r_IGsfH3W8S5S7yJCujU04gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:47 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', + 'a928a7b3-5033-4d2f-a2fd-cb4b6a6b4100', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Am0EFXFBvytIkEnoLdWi22E; expires=Sun, 19-Dec-2021 07:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4krJ4IiPyZutB2io3qs2toIwjTP3EUuMZ4YOji0y073Qmh_9ZOgER-pqn6L8NBnb_UXM4Bat7AjBkpFtDRKpIB-SDc_4xC7dwbqm87W0FduI8MZn8NCloJUMSVSrDPNqduF0a2JtzEBXL-QawdBcEwmZ8-6Kgv1BtG86XaJFjG8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:47 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a71d8a84-bb09-40cf-b9d8-ae54e7e9a7bf&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', + '3c88997b-98c8-4a59-9b64-19da92e43f00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AmtQTDER0TZGqyD1VkZyhk0WPr5BAQAAAEREKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:48 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:47 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D9AB2B4B9DF498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a37c6761-1401-464b-a7da-df4df458d82c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-deletes', + '14998', + 'x-ms-correlation-request-id', + 'a88b8db3-3796-475b-b70a-edb9db77c2c4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070749Z:a88b8db3-3796-475b-b70a-edb9db77c2c4', + 'Date', + 'Fri, 19 Nov 2021 07:07:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8D9AB2B4B9DF498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a8502eef-1427-4c40-be00-959c5e6b9fab', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11969', + 'x-ms-correlation-request-id', + '3690c090-ca6d-4cc4-b0bb-9ec3d0830b59', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070749Z:3690c090-ca6d-4cc4-b0bb-9ec3d0830b59', + 'Date', + 'Fri, 19 Nov 2021 07:07:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e347fbf6-f3f4-4684-8539-7649b557bd92', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11968', + 'x-ms-correlation-request-id', + 'f80c0f60-8071-475a-a420-8cdef459d1e6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070749Z:f80c0f60-8071-475a-a420-8cdef459d1e6', + 'Date', + 'Fri, 19 Nov 2021 07:07:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eb1d89a5-6af4-4a9e-90ea-0a4e029f9a0a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11967', + 'x-ms-correlation-request-id', + 'beb1845b-d4de-480a-ad70-db108ecc5028', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070750Z:beb1845b-d4de-480a-ad70-db108ecc5028', + 'Date', + 'Fri, 19 Nov 2021 07:07:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6408fb07-acba-40ff-9249-79daa5d417dd', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11966', + 'x-ms-correlation-request-id', + 'fea8ac18-b341-4f56-a6b5-2b2076a71007', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070750Z:fea8ac18-b341-4f56-a6b5-2b2076a71007', + 'Date', + 'Fri, 19 Nov 2021 07:07:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f7f66760-cd67-4663-88f6-0f647309fca4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11965', + 'x-ms-correlation-request-id', + 'ee71a09e-8f03-46d9-9832-844c84ad2dc3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070750Z:ee71a09e-8f03-46d9-9832-844c84ad2dc3', + 'Date', + 'Fri, 19 Nov 2021 07:07:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e7f6ab00-b730-4ed6-af20-463728c01796', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11964', + 'x-ms-correlation-request-id', + '4217d214-3930-49b1-993e-ad741fbf1e68', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070751Z:4217d214-3930-49b1-993e-ad741fbf1e68', + 'Date', + 'Fri, 19 Nov 2021 07:07:50 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '03097422-59c2-4af7-b8d6-3ceadac93b32', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11963', + 'x-ms-correlation-request-id', + 'f4bf642d-9877-46ee-a0b8-041069d2160f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070751Z:f4bf642d-9877-46ee-a0b8-041069d2160f', + 'Date', + 'Fri, 19 Nov 2021 07:07:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8beeeae3-dea4-468f-970b-08bf6bfee285', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11962', + 'x-ms-correlation-request-id', + 'a4817196-1622-42e3-8f0e-96595bb8bccf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070751Z:a4817196-1622-42e3-8f0e-96595bb8bccf', + 'Date', + 'Fri, 19 Nov 2021 07:07:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cbf07865-4ac1-4960-9ce3-298466ed8420', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11961', + 'x-ms-correlation-request-id', + 'ff8ab803-19f0-4df3-8407-06cfa178f0bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070751Z:ff8ab803-19f0-4df3-8407-06cfa178f0bc', + 'Date', + 'Fri, 19 Nov 2021 07:07:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8e12b7f2-d4ea-4acb-ae30-93bc83c717b6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11960', + 'x-ms-correlation-request-id', + 'f51e0a61-82f1-47f2-a11d-144afab1b8f1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070752Z:f51e0a61-82f1-47f2-a11d-144afab1b8f1', + 'Date', + 'Fri, 19 Nov 2021 07:07:51 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '70de58dc-2a92-4dcb-a4bb-9a163d6be9a8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11959', + 'x-ms-correlation-request-id', + '9a536bee-52c9-4f66-ba84-d25a0f925a5c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070752Z:9a536bee-52c9-4f66-ba84-d25a0f925a5c', + 'Date', + 'Fri, 19 Nov 2021 07:07:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fcb9b658-b71c-4a7a-953e-71370cca748b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11958', + 'x-ms-correlation-request-id', + '405457b5-9208-4ffe-aa7c-95dadd5b1f89', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070753Z:405457b5-9208-4ffe-aa7c-95dadd5b1f89', + 'Date', + 'Fri, 19 Nov 2021 07:07:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7d93aa34-6bee-48b3-a71d-0f421257c9cc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11957', + 'x-ms-correlation-request-id', + 'a709b717-6be4-473c-a5ad-b36aa1827e07', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070753Z:a709b717-6be4-473c-a5ad-b36aa1827e07', + 'Date', + 'Fri, 19 Nov 2021 07:07:52 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '579984bd-9e26-40ae-8961-97401871064c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11956', + 'x-ms-correlation-request-id', + 'bf71e115-8dc7-4f43-aae5-e17efa704c8c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070753Z:bf71e115-8dc7-4f43-aae5-e17efa704c8c', + 'Date', + 'Fri, 19 Nov 2021 07:07:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '21a3d2e4-d6fd-494e-a07c-3142380bc603', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11955', + 'x-ms-correlation-request-id', + '3e5c3c0b-6a8e-4154-900e-474a5f73e358', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070753Z:3e5c3c0b-6a8e-4154-900e-474a5f73e358', + 'Date', + 'Fri, 19 Nov 2021 07:07:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b7404fd6-7be5-4bc5-8627-876374072e73', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11954', + 'x-ms-correlation-request-id', + '00eb0c45-edaf-40af-97b4-275b0cc48821', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070754Z:00eb0c45-edaf-40af-97b4-275b0cc48821', + 'Date', + 'Fri, 19 Nov 2021 07:07:53 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a97b4eb5-2752-4db6-8308-2deaf4d14903', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11953', + 'x-ms-correlation-request-id', + '8140c1dc-b0ed-46c2-8c19-4aa84c3007a0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070754Z:8140c1dc-b0ed-46c2-8c19-4aa84c3007a0', + 'Date', + 'Fri, 19 Nov 2021 07:07:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '669de15e-110b-45f9-a63b-fbba4837136e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11952', + 'x-ms-correlation-request-id', + '5d90fe1c-dcc1-47eb-918a-753f0ec1c816', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070754Z:5d90fe1c-dcc1-47eb-918a-753f0ec1c816', + 'Date', + 'Fri, 19 Nov 2021 07:07:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '839368e9-4c68-487d-813b-83b1bb99a02c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11951', + 'x-ms-correlation-request-id', + 'c9ea6c77-9eb1-4a61-b7ee-486d925f25db', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070755Z:c9ea6c77-9eb1-4a61-b7ee-486d925f25db', + 'Date', + 'Fri, 19 Nov 2021 07:07:54 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e8d5668a-e40b-4d76-a6ef-0e5080f76862', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11950', + 'x-ms-correlation-request-id', + '99b061bc-90e9-40d9-91c6-6bce4de5dc35', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070755Z:99b061bc-90e9-40d9-91c6-6bce4de5dc35', + 'Date', + 'Fri, 19 Nov 2021 07:07:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '231007d9-c761-4cc3-9db7-90c6af7665b6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11949', + 'x-ms-correlation-request-id', + 'c0f925cc-906d-4f60-baad-443a8be52197', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070755Z:c0f925cc-906d-4f60-baad-443a8be52197', + 'Date', + 'Fri, 19 Nov 2021 07:07:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3d410aed-dc13-48e0-bc3d-7fedd19e5085', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11948', + 'x-ms-correlation-request-id', + '26d149bd-2b81-4ed3-8417-65dda0c2667f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070756Z:26d149bd-2b81-4ed3-8417-65dda0c2667f', + 'Date', + 'Fri, 19 Nov 2021 07:07:55 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '64fc12dc-69b8-436e-a94d-214ae9579f78', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11947', + 'x-ms-correlation-request-id', + '63682d38-c8e7-407c-bfb8-bc45ab221a85', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070756Z:63682d38-c8e7-407c-bfb8-bc45ab221a85', + 'Date', + 'Fri, 19 Nov 2021 07:07:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0d1e6855-df8c-4e9c-b6e4-703c5a78cee9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11946', + 'x-ms-correlation-request-id', + 'a0d238a0-ba27-4043-9e63-5a7d31715204', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070756Z:a0d238a0-ba27-4043-9e63-5a7d31715204', + 'Date', + 'Fri, 19 Nov 2021 07:07:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f080e2da-f9c7-4b71-aaee-9d37901d8938', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11945', + 'x-ms-correlation-request-id', + '337b3a5e-edbe-45de-a7fe-ff0f5d31aae9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070757Z:337b3a5e-edbe-45de-a7fe-ff0f5d31aae9', + 'Date', + 'Fri, 19 Nov 2021 07:07:56 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd0d8030e-2974-480c-9824-854df8d22d09', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11944', + 'x-ms-correlation-request-id', + '193c376a-e54e-4c6d-8550-ed73d235ebd1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070757Z:193c376a-e54e-4c6d-8550-ed73d235ebd1', + 'Date', + 'Fri, 19 Nov 2021 07:07:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f80b9dff-46e6-4234-9987-f74d87129732', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11943', + 'x-ms-correlation-request-id', + 'ccc956b7-6991-49da-94fb-6e59f5298c68', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070757Z:ccc956b7-6991-49da-94fb-6e59f5298c68', + 'Date', + 'Fri, 19 Nov 2021 07:07:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '448797a3-06b7-4e90-9ad7-70e55932ea2c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11942', + 'x-ms-correlation-request-id', + 'a76546b3-0489-469d-9a08-47ca69439c5d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070758Z:a76546b3-0489-469d-9a08-47ca69439c5d', + 'Date', + 'Fri, 19 Nov 2021 07:07:57 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1456b8f6-34cc-4d58-b07a-8f103ef08660', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11941', + 'x-ms-correlation-request-id', + '1749875d-a350-4458-a4e5-ff0f32760a22', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070758Z:1749875d-a350-4458-a4e5-ff0f32760a22', + 'Date', + 'Fri, 19 Nov 2021 07:07:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '53afc983-297d-43e0-b0f0-cff7c8528567', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11940', + 'x-ms-correlation-request-id', + 'f9cb847c-7556-4a2e-b9c5-71df266836c1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070758Z:f9cb847c-7556-4a2e-b9c5-71df266836c1', + 'Date', + 'Fri, 19 Nov 2021 07:07:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '46c27c9f-1762-42b6-aa0a-3d86d5b6d484', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11939', + 'x-ms-correlation-request-id', + '18ce8e29-7df3-4b4c-aa4d-ee2776c2ad9f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070759Z:18ce8e29-7df3-4b4c-aa4d-ee2776c2ad9f', + 'Date', + 'Fri, 19 Nov 2021 07:07:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8ad569f0-d1d0-44a7-961a-0704c0d976da', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11938', + 'x-ms-correlation-request-id', + '9298fcc6-8ce8-43ff-9096-e009239ee603', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070759Z:9298fcc6-8ce8-43ff-9096-e009239ee603', + 'Date', + 'Fri, 19 Nov 2021 07:07:58 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7fd3c48d-2888-4ea2-a507-8d49f982a2ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11937', + 'x-ms-correlation-request-id', + 'f4821b58-c9b4-4641-b22f-49b9b8a5252c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070759Z:f4821b58-c9b4-4641-b22f-49b9b8a5252c', + 'Date', + 'Fri, 19 Nov 2021 07:07:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '93f1cb01-d410-4ff1-82ae-58c7e062837e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11936', + 'x-ms-correlation-request-id', + 'd773c32a-711a-4306-90a3-7b4411a35517', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070800Z:d773c32a-711a-4306-90a3-7b4411a35517', + 'Date', + 'Fri, 19 Nov 2021 07:07:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fc49942d-efb3-40ee-8f28-d46c16ade5e7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11935', + 'x-ms-correlation-request-id', + '7483b8b9-b277-46b7-86b4-6366b6ca579b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070800Z:7483b8b9-b277-46b7-86b4-6366b6ca579b', + 'Date', + 'Fri, 19 Nov 2021 07:07:59 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7d351c5a-5b13-4ea4-b146-227f9057d2ba', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11934', + 'x-ms-correlation-request-id', + '991b8751-454b-4114-82e4-6618f7875417', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070800Z:991b8751-454b-4114-82e4-6618f7875417', + 'Date', + 'Fri, 19 Nov 2021 07:08:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '171d4534-745d-402a-8451-d147d5933853', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11933', + 'x-ms-correlation-request-id', + 'c2d859f5-9017-48ed-9721-88efb33ad7f9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070801Z:c2d859f5-9017-48ed-9721-88efb33ad7f9', + 'Date', + 'Fri, 19 Nov 2021 07:08:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '69d6e346-949c-457a-8842-83256448da30', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11932', + 'x-ms-correlation-request-id', + '7ae3060f-ec13-49ad-bb13-d4248918ff2a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070801Z:7ae3060f-ec13-49ad-bb13-d4248918ff2a', + 'Date', + 'Fri, 19 Nov 2021 07:08:00 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd38b014d-38fb-4003-936f-d1649f72d8bc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11931', + 'x-ms-correlation-request-id', + 'f9348bb4-1d9a-4d52-88c2-b979cc5a021a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070801Z:f9348bb4-1d9a-4d52-88c2-b979cc5a021a', + 'Date', + 'Fri, 19 Nov 2021 07:08:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cf1bd59f-be74-4ec8-9417-4dafe5801455', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11930', + 'x-ms-correlation-request-id', + 'c2a10ff2-0fdf-4458-9208-6cc8bf4fb046', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070801Z:c2a10ff2-0fdf-4458-9208-6cc8bf4fb046', + 'Date', + 'Fri, 19 Nov 2021 07:08:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9bb13fc7-463c-4b11-a953-d6f612b445c3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11929', + 'x-ms-correlation-request-id', + '2661de93-afab-41ec-b226-30c09860dde2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070802Z:2661de93-afab-41ec-b226-30c09860dde2', + 'Date', + 'Fri, 19 Nov 2021 07:08:01 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '10885a1e-536f-47d1-958b-5b9135faffde', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11928', + 'x-ms-correlation-request-id', + '7098d8da-fcfc-4c2c-a65c-fc620966b412', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070802Z:7098d8da-fcfc-4c2c-a65c-fc620966b412', + 'Date', + 'Fri, 19 Nov 2021 07:08:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c8f9d91f-3772-49c1-af72-07c6ce49761e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11927', + 'x-ms-correlation-request-id', + '7862478a-7f22-4a56-a321-dc7310fed73d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070802Z:7862478a-7f22-4a56-a321-dc7310fed73d', + 'Date', + 'Fri, 19 Nov 2021 07:08:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '90dc7552-d07b-47d4-b336-790eeb93fcc0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11926', + 'x-ms-correlation-request-id', + '07856ad1-9581-4738-91e7-0ee209056ae6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070803Z:07856ad1-9581-4738-91e7-0ee209056ae6', + 'Date', + 'Fri, 19 Nov 2021 07:08:02 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '95f9bf46-ca7f-475d-85d7-9296dd1da2fc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11925', + 'x-ms-correlation-request-id', + 'aa21444e-4dd8-4ff4-b54a-aa8213ba10a7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070803Z:aa21444e-4dd8-4ff4-b54a-aa8213ba10a7', + 'Date', + 'Fri, 19 Nov 2021 07:08:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '37963a43-4e06-4035-a639-2c9aeb2cccb3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11924', + 'x-ms-correlation-request-id', + 'd5e18188-59be-4f78-88fd-f43a1d9e7bef', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070803Z:d5e18188-59be-4f78-88fd-f43a1d9e7bef', + 'Date', + 'Fri, 19 Nov 2021 07:08:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0c8380aa-0684-440b-a037-620a8b6038f6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11923', + 'x-ms-correlation-request-id', + 'b1e815cf-6e33-418f-93b8-e101a2f863a7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070804Z:b1e815cf-6e33-418f-93b8-e101a2f863a7', + 'Date', + 'Fri, 19 Nov 2021 07:08:03 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8593490c-d800-4fb8-aa69-f45383da0eba', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11922', + 'x-ms-correlation-request-id', + '800d2020-aafe-420f-ad57-df8c78ca575b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070804Z:800d2020-aafe-420f-ad57-df8c78ca575b', + 'Date', + 'Fri, 19 Nov 2021 07:08:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6b3bedb3-6075-456f-b871-bf2f29bebda9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11921', + 'x-ms-correlation-request-id', + '1c9abc73-7b10-4612-92e5-63683b61c4bb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070804Z:1c9abc73-7b10-4612-92e5-63683b61c4bb', + 'Date', + 'Fri, 19 Nov 2021 07:08:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6747c074-fe8f-4fc1-aafb-6fb95eee59aa', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11920', + 'x-ms-correlation-request-id', + 'bd014f94-1696-4fa3-b5ce-baa0f9b2c761', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070805Z:bd014f94-1696-4fa3-b5ce-baa0f9b2c761', + 'Date', + 'Fri, 19 Nov 2021 07:08:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c84802d1-3f03-4912-9b8f-2c83294e3666', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11919', + 'x-ms-correlation-request-id', + '81c630a6-3739-4a5e-ab3e-db9354df7e87', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070805Z:81c630a6-3739-4a5e-ab3e-db9354df7e87', + 'Date', + 'Fri, 19 Nov 2021 07:08:04 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8e848a8f-5270-4927-a710-6c98ae6444f1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11918', + 'x-ms-correlation-request-id', + 'a1c78fe6-1acb-49bc-b8ab-086c47094ca8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070805Z:a1c78fe6-1acb-49bc-b8ab-086c47094ca8', + 'Date', + 'Fri, 19 Nov 2021 07:08:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ee9d227d-9106-46a3-925d-e3ecf4e967de', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11917', + 'x-ms-correlation-request-id', + '25a1874c-eeb4-484c-a241-d3706387824e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070806Z:25a1874c-eeb4-484c-a241-d3706387824e', + 'Date', + 'Fri, 19 Nov 2021 07:08:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '593c9ec3-c30e-4f8c-bc45-93434446aadf', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11916', + 'x-ms-correlation-request-id', + 'd10bf6dc-afce-497e-a08a-94aa7fc93b8f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070806Z:d10bf6dc-afce-497e-a08a-94aa7fc93b8f', + 'Date', + 'Fri, 19 Nov 2021 07:08:05 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f0d49875-1674-44c0-b7ef-56fee94d945a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11915', + 'x-ms-correlation-request-id', + '7461c061-aaaf-4d1a-b80d-c83ae11d941c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070806Z:7461c061-aaaf-4d1a-b80d-c83ae11d941c', + 'Date', + 'Fri, 19 Nov 2021 07:08:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1b89c18a-33e5-456b-806a-5b9a75ae81e4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11914', + 'x-ms-correlation-request-id', + '13394906-bc8f-4077-826f-07ed43cd5267', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070807Z:13394906-bc8f-4077-826f-07ed43cd5267', + 'Date', + 'Fri, 19 Nov 2021 07:08:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7e63df86-24f0-48d4-9385-1a5c5bb9e380', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11913', + 'x-ms-correlation-request-id', + '8e433734-a26f-4bcd-8b8d-0d3a72de12e8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070807Z:8e433734-a26f-4bcd-8b8d-0d3a72de12e8', + 'Date', + 'Fri, 19 Nov 2021 07:08:06 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5dda3ccf-3aed-4540-8f24-758f1bea8687', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11912', + 'x-ms-correlation-request-id', + 'fadbb4e4-f096-4242-8cf2-afcf9f3be01a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070807Z:fadbb4e4-f096-4242-8cf2-afcf9f3be01a', + 'Date', + 'Fri, 19 Nov 2021 07:08:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '56eb8932-7bf3-4225-a95f-f7d01ae3c522', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11911', + 'x-ms-correlation-request-id', + 'c18efff9-9d7c-4f84-bb86-3e0c30ce54b3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070808Z:c18efff9-9d7c-4f84-bb86-3e0c30ce54b3', + 'Date', + 'Fri, 19 Nov 2021 07:08:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c3fa4367-bf9b-4a66-8933-ca42b63df989', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11910', + 'x-ms-correlation-request-id', + 'f9e3f0b9-4928-4e7d-8dcd-f4ed8aff1d70', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070808Z:f9e3f0b9-4928-4e7d-8dcd-f4ed8aff1d70', + 'Date', + 'Fri, 19 Nov 2021 07:08:07 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0715f543-6258-43ed-9e32-cebc90218683', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11909', + 'x-ms-correlation-request-id', + '4bec3196-bdda-4def-a25a-a59241f74fb5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070808Z:4bec3196-bdda-4def-a25a-a59241f74fb5', + 'Date', + 'Fri, 19 Nov 2021 07:08:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f5540879-bbc1-4366-915b-0d0878746fd4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11908', + 'x-ms-correlation-request-id', + '208dc318-b19c-4f2c-bc4c-f737c57b9056', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070808Z:208dc318-b19c-4f2c-bc4c-f737c57b9056', + 'Date', + 'Fri, 19 Nov 2021 07:08:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '233af61f-6d9e-4ccb-a23f-3c0509c11bd9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11907', + 'x-ms-correlation-request-id', + '145e4ac2-7a18-4d4c-8eba-045f956e0dbe', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070809Z:145e4ac2-7a18-4d4c-8eba-045f956e0dbe', + 'Date', + 'Fri, 19 Nov 2021 07:08:08 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '586cba8f-2c3d-44a3-ae67-28e952614250', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11906', + 'x-ms-correlation-request-id', + '2ab104e0-0584-48d0-ba83-c63915bba7fe', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070809Z:2ab104e0-0584-48d0-ba83-c63915bba7fe', + 'Date', + 'Fri, 19 Nov 2021 07:08:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '2ebccfc7-feeb-46c4-b809-5d7f16ebc024', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11905', + 'x-ms-correlation-request-id', + '28a2589c-064c-4619-a945-02fd516fb012', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070809Z:28a2589c-064c-4619-a945-02fd516fb012', + 'Date', + 'Fri, 19 Nov 2021 07:08:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '73f37921-ecdd-4589-8414-241c2e861b7f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11904', + 'x-ms-correlation-request-id', + '4f91eb8f-234c-4c36-8316-c41f88b29936', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070810Z:4f91eb8f-234c-4c36-8316-c41f88b29936', + 'Date', + 'Fri, 19 Nov 2021 07:08:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e458b4f0-1492-4753-a62a-d771ae9edbb5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11903', + 'x-ms-correlation-request-id', + '80b20dac-b961-4261-9fa2-e2a5aa2c250a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070810Z:80b20dac-b961-4261-9fa2-e2a5aa2c250a', + 'Date', + 'Fri, 19 Nov 2021 07:08:09 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '76189b5d-c375-4403-a8ab-fd3b4534a403', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11902', + 'x-ms-correlation-request-id', + 'a0f15cf4-c298-4e4b-98e7-7bc9b15ebaed', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070810Z:a0f15cf4-c298-4e4b-98e7-7bc9b15ebaed', + 'Date', + 'Fri, 19 Nov 2021 07:08:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '20d5c229-f0d0-4e0b-885e-85b0e9d25810', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11901', + 'x-ms-correlation-request-id', + '2c9a50d9-396e-4f35-888c-32764fd946c4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070811Z:2c9a50d9-396e-4f35-888c-32764fd946c4', + 'Date', + 'Fri, 19 Nov 2021 07:08:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '979bbbc9-311d-4a3b-8e3d-cbd1aa3e178d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11900', + 'x-ms-correlation-request-id', + '540e50d8-6012-4245-b0fb-cfae392221eb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070811Z:540e50d8-6012-4245-b0fb-cfae392221eb', + 'Date', + 'Fri, 19 Nov 2021 07:08:10 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '68e790d7-55f8-4c2d-8c4a-495d4771b18f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11899', + 'x-ms-correlation-request-id', + '8c43b558-48cd-4094-ac13-6482601af708', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070811Z:8c43b558-48cd-4094-ac13-6482601af708', + 'Date', + 'Fri, 19 Nov 2021 07:08:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '74262a10-eaab-418d-b5ad-2efa22ba3925', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11898', + 'x-ms-correlation-request-id', + '97fe6844-c43c-434d-9ed7-939db00ec70d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070812Z:97fe6844-c43c-434d-9ed7-939db00ec70d', + 'Date', + 'Fri, 19 Nov 2021 07:08:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'caeef8e3-63d3-43cc-a630-ef6368c77226', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11897', + 'x-ms-correlation-request-id', + '2ed3d12e-90a6-4a15-90c2-a16f742f684f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070812Z:2ed3d12e-90a6-4a15-90c2-a16f742f684f', + 'Date', + 'Fri, 19 Nov 2021 07:08:11 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '81dd5d69-e70f-49d9-8313-2e4b9fd6fd48', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11896', + 'x-ms-correlation-request-id', + '3b9629e5-2838-4374-91e4-1ce2b38a1ad3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070812Z:3b9629e5-2838-4374-91e4-1ce2b38a1ad3', + 'Date', + 'Fri, 19 Nov 2021 07:08:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '910d1225-5ca7-42a5-9d51-7e4ad80821d4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11895', + 'x-ms-correlation-request-id', + '73094e36-f480-411b-97c8-6aa3000fbb1b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070813Z:73094e36-f480-411b-97c8-6aa3000fbb1b', + 'Date', + 'Fri, 19 Nov 2021 07:08:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9acfb852-41c2-429e-a050-c50f3bf96123', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11894', + 'x-ms-correlation-request-id', + 'e2110753-0ea3-45c3-a17c-b5aab5494945', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070813Z:e2110753-0ea3-45c3-a17c-b5aab5494945', + 'Date', + 'Fri, 19 Nov 2021 07:08:12 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '98ac70c1-ccea-460a-af58-7c6adcb235c9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11893', + 'x-ms-correlation-request-id', + '8fab8267-3d25-4853-8066-ff5df5d3fc39', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070813Z:8fab8267-3d25-4853-8066-ff5df5d3fc39', + 'Date', + 'Fri, 19 Nov 2021 07:08:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '00c9977f-bfec-4ea8-a298-3bea35e8fa43', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11892', + 'x-ms-correlation-request-id', + '098d6ed5-ed48-404d-bedb-4c716ad1745c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070814Z:098d6ed5-ed48-404d-bedb-4c716ad1745c', + 'Date', + 'Fri, 19 Nov 2021 07:08:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4d31874b-489a-4441-908d-57bf6feaab0a', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11891', + 'x-ms-correlation-request-id', + '70172f40-e756-4b13-be7a-a28c81bf9fb4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070814Z:70172f40-e756-4b13-be7a-a28c81bf9fb4', + 'Date', + 'Fri, 19 Nov 2021 07:08:13 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8f7b29e2-58a8-4ecf-ad95-d752b7b0e394', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11890', + 'x-ms-correlation-request-id', + 'bdb1e1b3-98bf-4845-8343-e04e03cab8ec', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070814Z:bdb1e1b3-98bf-4845-8343-e04e03cab8ec', + 'Date', + 'Fri, 19 Nov 2021 07:08:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '072f4102-a456-4f47-9879-1f4647d14100', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11889', + 'x-ms-correlation-request-id', + 'e807c678-68b2-4e49-8db1-b4bf88a4465d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070815Z:e807c678-68b2-4e49-8db1-b4bf88a4465d', + 'Date', + 'Fri, 19 Nov 2021 07:08:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1bae4a07-5ccf-4632-80ab-249df8924201', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11888', + 'x-ms-correlation-request-id', + 'a77d3144-bbd7-49da-b931-525078e064ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070815Z:a77d3144-bbd7-49da-b931-525078e064ce', + 'Date', + 'Fri, 19 Nov 2021 07:08:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e09f9ecc-01d2-4e89-9385-af91ad3f21b0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11887', + 'x-ms-correlation-request-id', + 'ded5b262-8731-4aa1-8406-4a0cc60bd0e9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070815Z:ded5b262-8731-4aa1-8406-4a0cc60bd0e9', + 'Date', + 'Fri, 19 Nov 2021 07:08:14 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0062b8eb-5778-45ba-9646-196f1f6dc128', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11886', + 'x-ms-correlation-request-id', + '21cc1c68-d7b6-4c4b-bb7a-1c6fa755d102', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070816Z:21cc1c68-d7b6-4c4b-bb7a-1c6fa755d102', + 'Date', + 'Fri, 19 Nov 2021 07:08:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f7ecabb8-a9c2-4b5b-a0bb-2d3f8f4c2dcb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11885', + 'x-ms-correlation-request-id', + 'e759de2e-9855-40d0-b5fb-32d40738d53b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070816Z:e759de2e-9855-40d0-b5fb-32d40738d53b', + 'Date', + 'Fri, 19 Nov 2021 07:08:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e8fc4e58-9b61-4f7b-abda-3e744d589e13', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11884', + 'x-ms-correlation-request-id', + 'c8c31752-dcb1-4d20-a5ec-e5bc13820bfd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070816Z:c8c31752-dcb1-4d20-a5ec-e5bc13820bfd', + 'Date', + 'Fri, 19 Nov 2021 07:08:15 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a22e7fb4-22ed-4596-b359-462ae6e529ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11883', + 'x-ms-correlation-request-id', + 'cba29e6f-fb40-431a-97c2-966f624a7ff1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070816Z:cba29e6f-fb40-431a-97c2-966f624a7ff1', + 'Date', + 'Fri, 19 Nov 2021 07:08:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '06155555-b9a9-4048-8a8e-f9f34ff09aad', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11882', + 'x-ms-correlation-request-id', + '84a3758e-356c-4a38-9f6f-9a27e94836ec', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070817Z:84a3758e-356c-4a38-9f6f-9a27e94836ec', + 'Date', + 'Fri, 19 Nov 2021 07:08:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '622fe6c4-1330-4d95-b941-ff3e7d73ec6f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11881', + 'x-ms-correlation-request-id', + '9c64be44-ac9b-424b-a28d-54e26038022b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070817Z:9c64be44-ac9b-424b-a28d-54e26038022b', + 'Date', + 'Fri, 19 Nov 2021 07:08:16 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a539aa12-c5cc-4a81-b320-23185c201659', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11880', + 'x-ms-correlation-request-id', + '0fe2427f-3523-4a67-a347-1e806fe1c858', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070817Z:0fe2427f-3523-4a67-a347-1e806fe1c858', + 'Date', + 'Fri, 19 Nov 2021 07:08:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dd3176c8-e3d4-4d7d-a7b8-5a6894738da3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11879', + 'x-ms-correlation-request-id', + '98358cb5-663e-4077-a190-2e58bba33666', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070818Z:98358cb5-663e-4077-a190-2e58bba33666', + 'Date', + 'Fri, 19 Nov 2021 07:08:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '75fe6289-65a7-45b7-aef4-0e8488233cc2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11878', + 'x-ms-correlation-request-id', + '5dd4b0a8-e6b0-4c12-9644-f443470d1ef9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070818Z:5dd4b0a8-e6b0-4c12-9644-f443470d1ef9', + 'Date', + 'Fri, 19 Nov 2021 07:08:17 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '29f313c4-0d7b-4a5d-b861-df38c6f31a88', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11877', + 'x-ms-correlation-request-id', + '4b791195-7022-4acf-847d-34e00cb8f6e2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070818Z:4b791195-7022-4acf-847d-34e00cb8f6e2', + 'Date', + 'Fri, 19 Nov 2021 07:08:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '928d60c1-f343-4478-8719-2e500e3c6bd9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11876', + 'x-ms-correlation-request-id', + '43c91125-6534-40df-b9f6-dc7d10006200', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070819Z:43c91125-6534-40df-b9f6-dc7d10006200', + 'Date', + 'Fri, 19 Nov 2021 07:08:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4dd5da93-55a4-4ead-8bb1-889193dd9532', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11875', + 'x-ms-correlation-request-id', + '1fbff930-9efe-4e01-8db1-304665adae37', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070819Z:1fbff930-9efe-4e01-8db1-304665adae37', + 'Date', + 'Fri, 19 Nov 2021 07:08:18 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd3b18b67-8d57-4f9c-958b-d085604945f0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11874', + 'x-ms-correlation-request-id', + '6a2ec751-0fba-4860-b234-fee48e9f3ce5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070819Z:6a2ec751-0fba-4860-b234-fee48e9f3ce5', + 'Date', + 'Fri, 19 Nov 2021 07:08:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '075386c4-7155-400d-8214-7666f972994e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11873', + 'x-ms-correlation-request-id', + 'bf33b3e2-4dd2-4f9d-abe1-1bd41373ade2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070820Z:bf33b3e2-4dd2-4f9d-abe1-1bd41373ade2', + 'Date', + 'Fri, 19 Nov 2021 07:08:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1a93fdfe-c68f-4c87-894c-6a1feb098178', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11872', + 'x-ms-correlation-request-id', + 'e445626d-b46d-4459-be9e-ff5b52f9e09d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070820Z:e445626d-b46d-4459-be9e-ff5b52f9e09d', + 'Date', + 'Fri, 19 Nov 2021 07:08:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b3b36604-76c3-4b9c-a2fc-4bdc9acdbb12', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11871', + 'x-ms-correlation-request-id', + '781e3580-218f-4ebb-9bca-398899f77417', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070820Z:781e3580-218f-4ebb-9bca-398899f77417', + 'Date', + 'Fri, 19 Nov 2021 07:08:19 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '900f6360-995b-4b44-964f-e6a92c6ff077', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11870', + 'x-ms-correlation-request-id', + '8cd9d076-15e4-47ec-9438-a82a0fe17506', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070821Z:8cd9d076-15e4-47ec-9438-a82a0fe17506', + 'Date', + 'Fri, 19 Nov 2021 07:08:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '974125f9-c24a-466e-a30c-a3dc80f713de', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11869', + 'x-ms-correlation-request-id', + 'be7f47ae-de6b-46d2-866a-664f7c06d2a1', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070821Z:be7f47ae-de6b-46d2-866a-664f7c06d2a1', + 'Date', + 'Fri, 19 Nov 2021 07:08:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '20d4c718-9373-44d9-a574-d466f879fbdb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11868', + 'x-ms-correlation-request-id', + '0c658a0f-23cf-481d-a4aa-97c827167cb9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070821Z:0c658a0f-23cf-481d-a4aa-97c827167cb9', + 'Date', + 'Fri, 19 Nov 2021 07:08:20 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c96ed934-bd33-445d-b731-086714f9cf4b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11867', + 'x-ms-correlation-request-id', + '3d99d229-f939-4a3e-a051-5c9d7c7c5c56', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070822Z:3d99d229-f939-4a3e-a051-5c9d7c7c5c56', + 'Date', + 'Fri, 19 Nov 2021 07:08:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aabdb3b0-5953-496a-8844-eea54585be59', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11866', + 'x-ms-correlation-request-id', + '3bd29b94-77c7-4367-a713-1c4b6be23600', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070822Z:3bd29b94-77c7-4367-a713-1c4b6be23600', + 'Date', + 'Fri, 19 Nov 2021 07:08:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6482f53a-8ed8-4635-a252-d4e6f2016f6f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11865', + 'x-ms-correlation-request-id', + '1724cb5e-8fc2-4081-ae0b-f45a92a3f601', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070822Z:1724cb5e-8fc2-4081-ae0b-f45a92a3f601', + 'Date', + 'Fri, 19 Nov 2021 07:08:21 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '552738f4-e890-4ca9-a539-90fb61a2a9f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11864', + 'x-ms-correlation-request-id', + '846ed670-38d6-4636-93ae-18e081d18650', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070822Z:846ed670-38d6-4636-93ae-18e081d18650', + 'Date', + 'Fri, 19 Nov 2021 07:08:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f7f24e1c-5803-4252-b411-b56416ee1621', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11863', + 'x-ms-correlation-request-id', + 'd366f805-9cbf-4906-ba32-a6699ef0f335', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070823Z:d366f805-9cbf-4906-ba32-a6699ef0f335', + 'Date', + 'Fri, 19 Nov 2021 07:08:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b6f9dc0f-3469-4d79-a738-81e2eb166242', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11862', + 'x-ms-correlation-request-id', + '75bb247b-722f-4fea-a5ad-ef267fda62e2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070823Z:75bb247b-722f-4fea-a5ad-ef267fda62e2', + 'Date', + 'Fri, 19 Nov 2021 07:08:22 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f29923e8-2db5-41d1-94f6-1374b83a69b8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11861', + 'x-ms-correlation-request-id', + '1bd2b2f6-e4a5-4cbf-848b-010d0ba6c50a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070823Z:1bd2b2f6-e4a5-4cbf-848b-010d0ba6c50a', + 'Date', + 'Fri, 19 Nov 2021 07:08:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a12e6def-7c8b-4b7e-a2ac-d39b2f701aca', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11860', + 'x-ms-correlation-request-id', + '2ddefaf1-61fd-4107-9867-01f0f774c699', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070824Z:2ddefaf1-61fd-4107-9867-01f0f774c699', + 'Date', + 'Fri, 19 Nov 2021 07:08:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '29e6cab5-d7c6-4e9e-9841-00dad9f3db10', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11859', + 'x-ms-correlation-request-id', + '8e2a351a-5c49-4e27-8048-3e99306e6a4d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070824Z:8e2a351a-5c49-4e27-8048-3e99306e6a4d', + 'Date', + 'Fri, 19 Nov 2021 07:08:23 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6722fc69-12ec-4252-ae28-3590f047fa54', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11858', + 'x-ms-correlation-request-id', + '3605f7b6-5a70-4ec7-b6b8-afefc0533856', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070824Z:3605f7b6-5a70-4ec7-b6b8-afefc0533856', + 'Date', + 'Fri, 19 Nov 2021 07:08:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a776fa50-4130-47f4-ad0e-0a62df455a9e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11857', + 'x-ms-correlation-request-id', + '34934702-c29e-4dcf-93bf-23331c9d859e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070825Z:34934702-c29e-4dcf-93bf-23331c9d859e', + 'Date', + 'Fri, 19 Nov 2021 07:08:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c3c6647e-4dc7-496a-aa7e-23f2df53ea5d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11856', + 'x-ms-correlation-request-id', + '41a37120-b682-474a-b85d-bc5a203680d7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070825Z:41a37120-b682-474a-b85d-bc5a203680d7', + 'Date', + 'Fri, 19 Nov 2021 07:08:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3be3381a-3a85-41e2-a36d-e7b0df2af0e3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11855', + 'x-ms-correlation-request-id', + '739e2fbc-7267-4105-8a7b-c96fc3bd4c9c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070825Z:739e2fbc-7267-4105-8a7b-c96fc3bd4c9c', + 'Date', + 'Fri, 19 Nov 2021 07:08:24 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '581e8d05-4a15-4835-b2f9-1163752dd94d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11854', + 'x-ms-correlation-request-id', + 'f8360e54-238f-4224-bf51-17a0b99fa5b0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070826Z:f8360e54-238f-4224-bf51-17a0b99fa5b0', + 'Date', + 'Fri, 19 Nov 2021 07:08:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c29282d2-3a2e-444d-98f2-e052637246cb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11853', + 'x-ms-correlation-request-id', + '4823893c-e054-4a3c-86dd-1c45da4f0a5b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070826Z:4823893c-e054-4a3c-86dd-1c45da4f0a5b', + 'Date', + 'Fri, 19 Nov 2021 07:08:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '94668171-3ffc-4a75-af9a-fe2f75c9ba3b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11852', + 'x-ms-correlation-request-id', + '273a152e-03c2-4fc7-95e6-781361ba218f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070826Z:273a152e-03c2-4fc7-95e6-781361ba218f', + 'Date', + 'Fri, 19 Nov 2021 07:08:25 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0326b07e-f76c-4fe1-82c1-4320dcfe20ed', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11851', + 'x-ms-correlation-request-id', + '1b1dff23-70e6-4d6c-ae5f-55997e6a6e85', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070827Z:1b1dff23-70e6-4d6c-ae5f-55997e6a6e85', + 'Date', + 'Fri, 19 Nov 2021 07:08:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '16a83600-1336-4cba-8470-fdd910aa817f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11850', + 'x-ms-correlation-request-id', + '98d0e731-477a-44c8-b199-eee6b5184539', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070827Z:98d0e731-477a-44c8-b199-eee6b5184539', + 'Date', + 'Fri, 19 Nov 2021 07:08:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b1405039-7ff3-4eea-85af-f76773fb2fa9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11849', + 'x-ms-correlation-request-id', + '167912b4-efb0-4895-895c-9bd2072fa2ee', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070827Z:167912b4-efb0-4895-895c-9bd2072fa2ee', + 'Date', + 'Fri, 19 Nov 2021 07:08:26 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a24fc80d-56c7-4bab-aea2-641215c0446f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11848', + 'x-ms-correlation-request-id', + '40eda9b4-8198-4257-a9dd-f55ad8a0a706', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070828Z:40eda9b4-8198-4257-a9dd-f55ad8a0a706', + 'Date', + 'Fri, 19 Nov 2021 07:08:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c9506536-eaf2-4382-816e-4b27c7f15cb5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11847', + 'x-ms-correlation-request-id', + '0c4f9d47-0901-4cde-9c71-049256199e49', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070828Z:0c4f9d47-0901-4cde-9c71-049256199e49', + 'Date', + 'Fri, 19 Nov 2021 07:08:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '47a54272-bc66-44f6-8fa8-30dbb0fcda1f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11846', + 'x-ms-correlation-request-id', + '78cc605c-aa40-4cd0-88cc-9bfc70ab2640', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070828Z:78cc605c-aa40-4cd0-88cc-9bfc70ab2640', + 'Date', + 'Fri, 19 Nov 2021 07:08:27 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '77e2efb4-5dad-41e3-aa9a-28a2b45d50a9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11845', + 'x-ms-correlation-request-id', + '92ef94c3-0ab1-4a0f-949b-2fd10587f28c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070829Z:92ef94c3-0ab1-4a0f-949b-2fd10587f28c', + 'Date', + 'Fri, 19 Nov 2021 07:08:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '625679cc-5928-4051-a750-8503401f8933', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11844', + 'x-ms-correlation-request-id', + 'dae90de1-b3e7-4e15-898d-cec9436fd722', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070829Z:dae90de1-b3e7-4e15-898d-cec9436fd722', + 'Date', + 'Fri, 19 Nov 2021 07:08:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'c60a999b-c2b9-47bb-befa-1179021d4862', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11843', + 'x-ms-correlation-request-id', + '87324ed5-cb17-4d45-95bc-cab6221ccdfc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070829Z:87324ed5-cb17-4d45-95bc-cab6221ccdfc', + 'Date', + 'Fri, 19 Nov 2021 07:08:28 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fd0c12b0-36e3-4539-a5a4-2b25ef140298', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11842', + 'x-ms-correlation-request-id', + 'd64425a7-898e-4632-b96b-c5e3084db029', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070830Z:d64425a7-898e-4632-b96b-c5e3084db029', + 'Date', + 'Fri, 19 Nov 2021 07:08:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'cf7dd791-0b4f-4ba0-b583-81cec951187f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11841', + 'x-ms-correlation-request-id', + '21efed50-f16b-475b-bbbd-64ac7bda7df9', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070830Z:21efed50-f16b-475b-bbbd-64ac7bda7df9', + 'Date', + 'Fri, 19 Nov 2021 07:08:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '58afcc58-6fb1-41bd-8e00-acc659ea62c2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11840', + 'x-ms-correlation-request-id', + 'a4607812-3fa5-48cf-a0e7-42e0089158f3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070830Z:a4607812-3fa5-48cf-a0e7-42e0089158f3', + 'Date', + 'Fri, 19 Nov 2021 07:08:29 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '69253ab6-0a44-4577-8657-1666693be9b7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11839', + 'x-ms-correlation-request-id', + '4d88f45e-7934-4f66-9d5a-72d86b758537', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070831Z:4d88f45e-7934-4f66-9d5a-72d86b758537', + 'Date', + 'Fri, 19 Nov 2021 07:08:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9d8d5f5d-7294-42ca-973c-b48b76f19de4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11838', + 'x-ms-correlation-request-id', + 'd73a99fe-1895-4432-b8e3-0917cc11635f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070831Z:d73a99fe-1895-4432-b8e3-0917cc11635f', + 'Date', + 'Fri, 19 Nov 2021 07:08:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'dc791a36-34fb-4b4f-9e65-56725ccd3876', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11837', + 'x-ms-correlation-request-id', + 'de1b1fa2-4ba5-432f-b2aa-f18f060613c7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070831Z:de1b1fa2-4ba5-432f-b2aa-f18f060613c7', + 'Date', + 'Fri, 19 Nov 2021 07:08:31 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '8f07bc7d-dc93-4a4b-b8ea-25a013fb10f1', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11836', + 'x-ms-correlation-request-id', + '2f9f0304-e0d4-4d1f-ac91-338725a4a6e4', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070832Z:2f9f0304-e0d4-4d1f-ac91-338725a4a6e4', + 'Date', + 'Fri, 19 Nov 2021 07:08:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6363aed6-5745-4823-a0a1-cd2a35b433a8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11835', + 'x-ms-correlation-request-id', + '3a1da0d7-ad0e-4805-a222-1fd176377a3a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070832Z:3a1da0d7-ad0e-4805-a222-1fd176377a3a', + 'Date', + 'Fri, 19 Nov 2021 07:08:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '4fe0f614-0135-4e9c-b7cb-4012b2847525', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11834', + 'x-ms-correlation-request-id', + 'fa7fafda-d7de-4396-b0f8-dc886bb61152', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070832Z:fa7fafda-d7de-4396-b0f8-dc886bb61152', + 'Date', + 'Fri, 19 Nov 2021 07:08:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6a2ce82b-2b75-4059-8adc-2e4d236b9fd8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11833', + 'x-ms-correlation-request-id', + '8744c917-8b28-405d-a2b8-5f4d6d2ce481', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070832Z:8744c917-8b28-405d-a2b8-5f4d6d2ce481', + 'Date', + 'Fri, 19 Nov 2021 07:08:32 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '81c4865a-1028-4f47-929a-83ace6e13699', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11832', + 'x-ms-correlation-request-id', + '768e79e8-e02c-4157-8d0e-6789f8f0a561', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070833Z:768e79e8-e02c-4157-8d0e-6789f8f0a561', + 'Date', + 'Fri, 19 Nov 2021 07:08:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '9ed01bb3-c67d-4078-b8a7-0129f67f5f20', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11831', + 'x-ms-correlation-request-id', + 'b5b0f013-3997-4e76-a001-05e03351527e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070833Z:b5b0f013-3997-4e76-a001-05e03351527e', + 'Date', + 'Fri, 19 Nov 2021 07:08:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'eb314ea8-3f17-49e9-8032-23e35b3e3bb7', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11830', + 'x-ms-correlation-request-id', + 'c7ed352b-b06f-4b93-b8c5-361a8ec9172d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070833Z:c7ed352b-b06f-4b93-b8c5-361a8ec9172d', + 'Date', + 'Fri, 19 Nov 2021 07:08:33 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '33e50586-638f-4677-b125-6aa9b44f9977', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11829', + 'x-ms-correlation-request-id', + 'a067acc4-8296-44a8-ae1f-17c9ea31fcd8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070834Z:a067acc4-8296-44a8-ae1f-17c9ea31fcd8', + 'Date', + 'Fri, 19 Nov 2021 07:08:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b2978edb-4e47-4a26-b5c8-0e49b0674777', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11828', + 'x-ms-correlation-request-id', + '53a76d86-56ae-4b2d-b068-bce728662faa', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070834Z:53a76d86-56ae-4b2d-b068-bce728662faa', + 'Date', + 'Fri, 19 Nov 2021 07:08:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '145bb52e-6ef1-4e5f-bd82-c064b4c6be91', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11827', + 'x-ms-correlation-request-id', + '27bac67e-a0ac-4151-8983-cfbdb9014ee7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070835Z:27bac67e-a0ac-4151-8983-cfbdb9014ee7', + 'Date', + 'Fri, 19 Nov 2021 07:08:34 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0a3f6d7b-2751-4b00-87e4-9afe0abec845', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11826', + 'x-ms-correlation-request-id', + '35176810-d811-47c6-9ce2-2478a6ef605d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070835Z:35176810-d811-47c6-9ce2-2478a6ef605d', + 'Date', + 'Fri, 19 Nov 2021 07:08:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '07f44cc3-bcca-4d2c-ac07-63f1876b2a04', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11825', + 'x-ms-correlation-request-id', + '6b52a268-217b-4cb9-83f2-be56bf63099a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070835Z:6b52a268-217b-4cb9-83f2-be56bf63099a', + 'Date', + 'Fri, 19 Nov 2021 07:08:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '950f6d81-0372-4f15-b068-218468dcb8b6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11824', + 'x-ms-correlation-request-id', + '183525ce-6607-470b-b884-af58d30ed80d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070836Z:183525ce-6607-470b-b884-af58d30ed80d', + 'Date', + 'Fri, 19 Nov 2021 07:08:35 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '374fe9e2-685e-486d-a283-fdff991661ba', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11823', + 'x-ms-correlation-request-id', + 'b6238d0f-4402-43a9-86b9-e568eebbbc32', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070836Z:b6238d0f-4402-43a9-86b9-e568eebbbc32', + 'Date', + 'Fri, 19 Nov 2021 07:08:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '6810ce79-47d3-4d8b-8cbe-22ce37f6da01', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11822', + 'x-ms-correlation-request-id', + '76441c03-bb07-4d8a-8db7-ccb680a0d6b5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070836Z:76441c03-bb07-4d8a-8db7-ccb680a0d6b5', + 'Date', + 'Fri, 19 Nov 2021 07:08:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '58a07b0c-601d-4ae4-bc1d-8b98ba71e8b5', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11821', + 'x-ms-correlation-request-id', + '53dfe60d-0e7e-4882-90f8-0adbaa47d7b6', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070837Z:53dfe60d-0e7e-4882-90f8-0adbaa47d7b6', + 'Date', + 'Fri, 19 Nov 2021 07:08:36 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '758ab0ca-a106-49db-a094-d65c75090423', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11820', + 'x-ms-correlation-request-id', + 'f3ea7a2c-177a-43c3-964f-ab1df513b907', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070837Z:f3ea7a2c-177a-43c3-964f-ab1df513b907', + 'Date', + 'Fri, 19 Nov 2021 07:08:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'aa25c770-382b-452a-b884-0fba12a0dbd3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11819', + 'x-ms-correlation-request-id', + '06868538-3519-484f-a975-5df117178297', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070837Z:06868538-3519-484f-a975-5df117178297', + 'Date', + 'Fri, 19 Nov 2021 07:08:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'ed38ccb6-9126-46e5-a5fe-6e345039baa9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11818', + 'x-ms-correlation-request-id', + '384baba6-06cc-4835-92fc-e0eb0a90ca8a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070838Z:384baba6-06cc-4835-92fc-e0eb0a90ca8a', + 'Date', + 'Fri, 19 Nov 2021 07:08:37 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a91d3502-b76d-4370-a0d0-a99f0251bffb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11817', + 'x-ms-correlation-request-id', + 'e16d9a26-0376-43ed-8a72-c29f4bbfef2e', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070838Z:e16d9a26-0376-43ed-8a72-c29f4bbfef2e', + 'Date', + 'Fri, 19 Nov 2021 07:08:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f3895a91-6702-4d71-a26c-162108e3f17b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11816', + 'x-ms-correlation-request-id', + '5a74e17c-f2d0-4ccb-9f5a-8f332cb7c11f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070838Z:5a74e17c-f2d0-4ccb-9f5a-8f332cb7c11f', + 'Date', + 'Fri, 19 Nov 2021 07:08:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '18ea252d-9c21-4f87-981f-4dd1030020d3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11815', + 'x-ms-correlation-request-id', + 'c161b796-03f4-44a2-9c8d-bec637190311', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070838Z:c161b796-03f4-44a2-9c8d-bec637190311', + 'Date', + 'Fri, 19 Nov 2021 07:08:38 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '12f34976-4d4e-493a-b603-4e23c91e9efb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11814', + 'x-ms-correlation-request-id', + '5e0eae02-4713-4215-94de-fe64beea5895', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070839Z:5e0eae02-4713-4215-94de-fe64beea5895', + 'Date', + 'Fri, 19 Nov 2021 07:08:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7911071c-73f5-4902-b8ac-4e7d876a8fa9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11813', + 'x-ms-correlation-request-id', + '83ca6760-f5cc-4fb8-99fe-0165f54abe34', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070839Z:83ca6760-f5cc-4fb8-99fe-0165f54abe34', + 'Date', + 'Fri, 19 Nov 2021 07:08:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '03a62043-b4cf-47c3-95d4-e48ca29335fb', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11812', + 'x-ms-correlation-request-id', + '78598516-a3d2-4764-a258-51e24c4827ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070839Z:78598516-a3d2-4764-a258-51e24c4827ce', + 'Date', + 'Fri, 19 Nov 2021 07:08:39 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b09a6012-e5ff-4084-895b-bd90abd60e40', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11811', + 'x-ms-correlation-request-id', + 'dc4cbf5d-b677-4fa3-a1a1-ef299b726941', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070840Z:dc4cbf5d-b677-4fa3-a1a1-ef299b726941', + 'Date', + 'Fri, 19 Nov 2021 07:08:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a50a40c5-4a9b-4137-acdd-6ed03675d7be', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11810', + 'x-ms-correlation-request-id', + '05f5763e-8d5e-4420-946d-00a146fe9c49', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070840Z:05f5763e-8d5e-4420-946d-00a146fe9c49', + 'Date', + 'Fri, 19 Nov 2021 07:08:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'bcbffa9d-58d3-41d4-94fc-c89108be46ea', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11809', + 'x-ms-correlation-request-id', + 'b1a43e1c-9c0a-4ea5-946b-f3d8e84479cb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070840Z:b1a43e1c-9c0a-4ea5-946b-f3d8e84479cb', + 'Date', + 'Fri, 19 Nov 2021 07:08:40 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '3e7a4a0a-5e3d-40e0-97ff-430e0bd136a2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11808', + 'x-ms-correlation-request-id', + '42da12d2-60a8-44fa-bae6-b54b70a960ce', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070841Z:42da12d2-60a8-44fa-bae6-b54b70a960ce', + 'Date', + 'Fri, 19 Nov 2021 07:08:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'e7d7afbc-a9f3-4214-9855-ddf67d382575', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11807', + 'x-ms-correlation-request-id', + '145ef213-6ce7-4741-97f0-2737415d9e7d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070841Z:145ef213-6ce7-4741-97f0-2737415d9e7d', + 'Date', + 'Fri, 19 Nov 2021 07:08:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5b475ca9-bbf7-44c3-9bcf-2fdf1140ca03', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11806', + 'x-ms-correlation-request-id', + '1f8ea5ab-1f3c-4d08-a2dc-b7cd426fa21f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070841Z:1f8ea5ab-1f3c-4d08-a2dc-b7cd426fa21f', + 'Date', + 'Fri, 19 Nov 2021 07:08:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '20149bb5-ca5f-450f-8a34-95fe21ed3580', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11805', + 'x-ms-correlation-request-id', + 'eda946f1-f347-4d3e-b1a6-53cc18b57ae5', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070842Z:eda946f1-f347-4d3e-b1a6-53cc18b57ae5', + 'Date', + 'Fri, 19 Nov 2021 07:08:41 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'd1d9799a-0ada-4f66-9bc1-c30d2e5dbe8b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11804', + 'x-ms-correlation-request-id', + '15d5df1e-7485-49ba-854d-1bf9ad1377fc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070842Z:15d5df1e-7485-49ba-854d-1bf9ad1377fc', + 'Date', + 'Fri, 19 Nov 2021 07:08:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0203b57d-ba80-4c85-ac5a-22fe5ee2ebd0', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11803', + 'x-ms-correlation-request-id', + 'd24b11b2-523d-48b7-b752-1ecf455ced21', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070842Z:d24b11b2-523d-48b7-b752-1ecf455ced21', + 'Date', + 'Fri, 19 Nov 2021 07:08:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '40566741-02e4-486c-8c4f-6382cfe86b03', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11802', + 'x-ms-correlation-request-id', + 'b7c18b01-5c9a-4302-b978-f3de595770ab', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070843Z:b7c18b01-5c9a-4302-b978-f3de595770ab', + 'Date', + 'Fri, 19 Nov 2021 07:08:42 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '1d40113a-4bf9-4c49-830d-3399923d39e9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11801', + 'x-ms-correlation-request-id', + 'd8530dfc-b628-4f51-9ab8-23e245e63fd2', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070843Z:d8530dfc-b628-4f51-9ab8-23e245e63fd2', + 'Date', + 'Fri, 19 Nov 2021 07:08:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '5cad84f6-ee1a-41d4-a346-f2c1a0fa49d8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11800', + 'x-ms-correlation-request-id', + 'bbeb4b6f-9499-4c26-94aa-82698fcd5553', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070843Z:bbeb4b6f-9499-4c26-94aa-82698fcd5553', + 'Date', + 'Fri, 19 Nov 2021 07:08:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7ff6dae2-6bb3-4231-b9dc-6892eebee3f3', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11799', + 'x-ms-correlation-request-id', + '8d8148a4-7331-4441-a765-54e1c937d68b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070844Z:8d8148a4-7331-4441-a765-54e1c937d68b', + 'Date', + 'Fri, 19 Nov 2021 07:08:43 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '599a695f-f83b-4a9c-825f-c732b22bb6c4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11798', + 'x-ms-correlation-request-id', + 'bdebe7ef-fb28-4385-af2e-e0908a86522a', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070844Z:bdebe7ef-fb28-4385-af2e-e0908a86522a', + 'Date', + 'Fri, 19 Nov 2021 07:08:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '7366f62b-89ba-4771-9000-be4c941264c9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11797', + 'x-ms-correlation-request-id', + 'a9ac53ae-007c-4565-a270-ed068c802b52', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070844Z:a9ac53ae-007c-4565-a270-ed068c802b52', + 'Date', + 'Fri, 19 Nov 2021 07:08:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '518aceec-0bc6-4b6a-a238-151bd912eebe', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11796', + 'x-ms-correlation-request-id', + 'b6cac715-54b0-4bee-a036-f00523066966', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070844Z:b6cac715-54b0-4bee-a036-f00523066966', + 'Date', + 'Fri, 19 Nov 2021 07:08:44 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '81ae3f0c-3a16-435c-9c77-22f1657b14fc', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11795', + 'x-ms-correlation-request-id', + '7662e5bc-c78e-4554-b03b-ce81da232069', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070845Z:7662e5bc-c78e-4554-b03b-ce81da232069', + 'Date', + 'Fri, 19 Nov 2021 07:08:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'b481fb24-e593-407d-bc3e-cb12a4998392', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11794', + 'x-ms-correlation-request-id', + '1ec6f0d3-5ae0-4869-9a3a-7027107cbb4c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070845Z:1ec6f0d3-5ae0-4869-9a3a-7027107cbb4c', + 'Date', + 'Fri, 19 Nov 2021 07:08:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'fc2f3a7b-37cf-42f2-ace7-91cdec0ee006', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11793', + 'x-ms-correlation-request-id', + '70654902-143d-4470-a98e-5342e839bb79', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070845Z:70654902-143d-4470-a98e-5342e839bb79', + 'Date', + 'Fri, 19 Nov 2021 07:08:45 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '0d02930c-4dbe-4121-a8d8-6be3f7c35e75', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11792', + 'x-ms-correlation-request-id', + '53339fbb-3a12-46f9-9b6a-6ac6af46c976', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070846Z:53339fbb-3a12-46f9-9b6a-6ac6af46c976', + 'Date', + 'Fri, 19 Nov 2021 07:08:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a87cb67c-33e5-4ddc-9ca8-28498702aff9', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11791', + 'x-ms-correlation-request-id', + '93d5e1e3-2370-4dbc-a1e1-36fe4e064e61', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070846Z:93d5e1e3-2370-4dbc-a1e1-36fe4e064e61', + 'Date', + 'Fri, 19 Nov 2021 07:08:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '318ded48-a2e7-4e28-99dd-c248e29b967c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11790', + 'x-ms-correlation-request-id', + '82918d40-ad64-4677-a544-2425257ab726', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070846Z:82918d40-ad64-4677-a544-2425257ab726', + 'Date', + 'Fri, 19 Nov 2021 07:08:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'f6e01c00-81a8-4c8e-83b3-92cda57c6328', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11789', + 'x-ms-correlation-request-id', + '6713f546-9079-4c4e-8134-2d53304f4cb7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070847Z:6713f546-9079-4c4e-8134-2d53304f4cb7', + 'Date', + 'Fri, 19 Nov 2021 07:08:46 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '624aad46-8b95-40cc-9b63-3b93c40e0907', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11788', + 'x-ms-correlation-request-id', + '0ba2e51a-08fc-4722-bc77-1f0e8fafe26b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070847Z:0ba2e51a-08fc-4722-bc77-1f0e8fafe26b', + 'Date', + 'Fri, 19 Nov 2021 07:08:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '19e62fdb-07c2-439e-87c6-c4309bcb7cf4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11787', + 'x-ms-correlation-request-id', + 'e6117fe7-d905-4092-81e7-696b94982e48', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070847Z:e6117fe7-d905-4092-81e7-696b94982e48', + 'Date', + 'Fri, 19 Nov 2021 07:08:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '86429fbc-484d-44d5-9c3f-dc42832464b6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11786', + 'x-ms-correlation-request-id', + 'dffdb5f5-e7bb-4c89-9e56-40061a2fbfeb', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070848Z:dffdb5f5-e7bb-4c89-9e56-40061a2fbfeb', + 'Date', + 'Fri, 19 Nov 2021 07:08:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '432adc2d-9eba-4ed0-b55c-90e4e671581b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11785', + 'x-ms-correlation-request-id', + '83fa186c-950d-4291-a5f5-a0cc9221ea10', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070848Z:83fa186c-950d-4291-a5f5-a0cc9221ea10', + 'Date', + 'Fri, 19 Nov 2021 07:08:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '56e8ff1c-839d-4853-b10d-399593c75468', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11784', + 'x-ms-correlation-request-id', + 'ba8dbd9e-3179-40d9-a54d-ed2ce2f50a48', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070848Z:ba8dbd9e-3179-40d9-a54d-ed2ce2f50a48', + 'Date', + 'Fri, 19 Nov 2021 07:08:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '167b699f-f24c-4ae2-a6df-7691a6256834', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11783', + 'x-ms-correlation-request-id', + 'a2bfd5f9-eedc-444a-84a4-3fd305c8fcc8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070849Z:a2bfd5f9-eedc-444a-84a4-3fd305c8fcc8', + 'Date', + 'Fri, 19 Nov 2021 07:08:48 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '34707510-2b8f-49ab-9063-b1fd29a4cd2f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11782', + 'x-ms-correlation-request-id', + '2410783b-1dc6-426a-8915-9a7f59814873', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070849Z:2410783b-1dc6-426a-8915-9a7f59814873', + 'Date', + 'Fri, 19 Nov 2021 07:08:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificateOperationResults/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7-8d9ab2b4b9df498') + .query(true) + .reply(200, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'x-ms-request-id', + 'c888e647-a917-4b98-b803-7e19819eb96f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11781', + 'x-ms-correlation-request-id', + '8fe75639-7571-4e16-8a09-f638e9f37670', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070849Z:8fe75639-7571-4e16-8a09-f638e9f37670', + 'Date', + 'Fri, 19 Nov 2021 07:08:49 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificates') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bdefff","92ff0742ea40440c000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11780', + 'x-ms-request-id', + '45c47c79-0ba0-4dc9-8ecb-d34c03c0a1ff', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '4c358d16-2493-4fb3-b99d-ecf81cb5d5a0', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070850Z:4c358d16-2493-4fb3-b99d-ecf81cb5d5a0', + 'Date', + 'Fri, 19 Nov 2021 07:08:49 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_get_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_get_test.js new file mode 100644 index 000000000000..f4a4816cac4a --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_get_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "efe3a26e7878182504d0754e824bf112"; + +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', + '664eecc4-7611-4b76-8573-207637f31700', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=ArDBvpQUZiRCm9GWWjeAApM; expires=Sun, 19-Dec-2021 07:07:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrkXSyDjQMZjhy7n49nn_l331qoEL_vDRR9jbWZ6cBTBGAa2ZVHIGtPYrJPnZxlZAmDrTM18pQKKyL3BdG4sbWldeMAZH9sZy5l11SAE3apO5TbnVtnkJkCBscOHvbEevc00H0gX3itKTPQP-u-HvVXYW4122sRhNtUsPzskRJZVQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:32 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', + 'f2cd5188-710b-40eb-b71f-1e61918a1900', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AhiDARwU2UxKgmK6Jon0EGA; expires=Sun, 19-Dec-2021 07:07:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrihMsnrWdJjo5pogik6UdZl_R_dIY7_K5hYL9LPQSoHDmfnCYu8qsGr9rd-j-QJv0uNx7yps5K1fJb5z3ftG2OGROnoL8LcApTY5jONbVUVSI8NzlWA-amWFkr5y0MKNiBsd9sM2OzX1OCQpUh9zmlh6QilCXQTNgOPKUEwKOwIEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:32 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=949eadef-d969-416c-8c35-302ae6cac59f&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', + 'a7763080-2c94-4c8e-a565-c4ea85a64300', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=ArG959KVE3BNhP5g1xlb_4YWPr5BAQAAADVEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:33 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:32 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147cb6c917ff4e8a3669eed6e4fcfcff7b2c9a7f7a607d387f7ef67d9f983dd87070ff3f3ecd3fdddc9c39d4fefdf3f983d3c9f3cf868f45131a397ee36eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc74fb2763abf3bc1bfc7d369b55eb67821935fdfbd7b77779ad76d715e4c330271f77d87d05eaf30f2cdddf93dd03b799b5dd03bdfbdfbfb7eb4f3eee0e9c3e3277b4ff6f7eeededdd3f3efe7d3fa206348c155ea1d68f7ef147ed7cbd98acea62d91e9717555db4f305bd0d44a9a9fb923e7b0fbca98bcba2218a17cb8bd72d2146afbf5e4fa7793ecb67b1efdfd4d9b22930476f0a9eecbd9dbddded5dfadfc3373b0f1ed1ffeedd1befeddefbf4e1bdfb3f4500ceab7a9101a997e7efe8cfd57a5216d3a7599bd1475f9c9d3da97f707272fc937b17c757674f8e2fce7ee2db3ff579bbf776e7f9c9f367bfd7eff3fb9c3c7b577e67f9f6cdf1779e5c7c553fbdf8e2e4db3ff1d5f1174f7e9f77cf9e1ebf7e72f1e2279f1c7ff1e664f73b97937b3f71f113df9d9593c58bfb5f3cd9ffbd9fbe39ddfbe2e9e9d5176f8eef7df1f4f8ea8b67153edbef7c7675fad3a73ff1c5f1fee7c7bb5f9d1ebffbe2db93c5c3b73ff57bbf789bfde0e4c9f207c72f9e5cbcfd45f3b7c5e70faf769e1cffc4e9b3e3e32f9ffcf44f1c5f5dfc3e6f4f2e7e9fd3e3f5efbdff7b7ff1ddeb5707d39f7875727cb0fbe6a7bffd655ebff8f2d9972b6ab8f7e5c14f9fce7eeaf2175dbd2abffa7d2ebe28f3d3df67efcbf2e5ec936556bebb2a7fe2e127bf68f2e2ed8bcfcf7f7a393ffbe2a2f8cefd932fcadffb62f6ea8b67f74e3f7dbafc62f9b65d7cfbd9e70f9feffce4e2273e7d7ed13e98cc7fef57076745fbeadbf9ef535e5edf7ffe9df2ead3e7d332bfff7b65cdde4fefbf99ff3e3ffdfc27263ffde48ba7af7fefa7fbdfbefca917f9fe57bfcfe95727c757a7c7c7d98be75f9cbebd7a75f5fb3cfdc9573b4f9e9c1e5fbdac6864eb9ff8cef39ff87d66dffeeae0f8a7bf7b3abff7e4a7defe3e9f9efe3e37d1fa627efcf98bbdabe35f74f1e46d31fff6cbf58bd7bfe8f77efa7bef7c71fcf6f327af9b2f695e674f7ee2f8e94ffcc493fbb39f7e99ef7cfee9f4de4f1d3c5dbffaf4f4272667f3275fbc599eecfce0f779392f2e7ed127ef769f7f7e70efc1a7bb67f5c1cbe2f5f5279f56efae4ebefd65f6fbfcd4f5e53cffeececb27d7cbf6e4ee779f5d7d55acce970f0e3efa25","bfe4ff0162be310078040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:33 GMT', + 'ETag', + 'W/"0x8D9AB2B423225AA"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11981', + 'x-ms-request-id', + '06b57bd8-cfb2-43c4-aa81-ec9d8e9eb747', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '602ad4c1-6b56-4eb2-bfbc-1d18d163b2a3', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070734Z:602ad4c1-6b56-4eb2-bfbc-1d18d163b2a3', + 'Date', + 'Fri, 19 Nov 2021 07:07:34 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_list_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_list_test.js new file mode 100644 index 000000000000..60b03c8a43e0 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_list_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "a177cac3c8e72d1b80e7e593dfef054c"; + +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', + '0b42958c-c19f-4177-9106-df50116d1c01', + 'x-ms-ests-server', + '2.1.12231.7 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AjpYMb3f1q9Jhpj8Pa9bgJE; expires=Sun, 19-Dec-2021 07:07:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrA1s0kMSdnVPjPGjC4KWdzEaVmj_y-mKGhX1HDfMh6Dnb-lCMTk75W6V1cjl5mQofjug5nj7gzcFz4nVy3vpgKK2nFwGwg0YuTFT_KPXP16XtMdClvD51yr4JHlwSW4m9BLHhkeL5LmgMXcWdrAyvPgqX-pAC9CE72nDlsPkx_jYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:33 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + '3144b304-c4ce-4f00-bf92-0eb725123c00', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AtPHiZc-saNLmDc6WLyMKmQ; expires=Sun, 19-Dec-2021 07:07:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr4nFx6XWALRuQkDmJWzbpVuJS8H_2vz_8Z30ZTICwLyObFGJ8MVKvabZIBmYkfPrylxVc1Crv7xxXSseMkkL4WyPeD58_WIpwiOFLkVhtDS0dopl3EwUtW5_uabsS3kfoXt8gRNdmD8tsaRbdavx6fLsIEu5UcDsVqxpR08fO1hQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:33 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=1f5d5c2c-7a6f-484f-8445-5069102e3f4a&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', + 'f4ed96f2-9537-472a-b9ab-348f57504500', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AtzGotA7rQ1BgiZCMWqJlhQWPr5BAQAAADZEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:34 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:33 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificates') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1325bd02f1f35f36c777b7a7ebe974d3ebd373d983ebc7f3fcbce1fec3e3c78989f679feeef4e1eee7c7afffec1ece1f9e4c147a38f8a19bd74b7594f9a695dacdaa25a36771fee9d3fbc3f3b38dfbe37fdf4c1f6feeedefef6c3dde983ed83e9f9ce83e96c72beb7bf7bb7ce9b6a5d4ff3cfeb6abd6aee2eae7fba69f3a6bdbbaaabcb6296d7cddd2f8a695d35d5793b7e92b5d3f9dd09fe3d9e4eabf5b2c50b99fcfaeeddbbbbd3bc6e8bf3629a1188bbef3b84f67a85916feeceef81dec9dbec82def9eedddff7a39d77074f1f1e3fd97bb2bf776f6feffef1f1effb1135a061acf00ab57ef48b3f6ae7ebc5645517cbf6b8bca8eaa29d2fe86d204a4ddd97f4d97be04d5d5c160d51bc585ebc6e09317afdf57a3acdf3593e8b7dffa6ce964d81397a53f064efedeced6eefd2ff1ebed979f088fe77efde786ff7dea70fefddff2902705ed58b0c48bd3c7f477faed693b2983ecdda8c3efae2ecec49fd839393e39fdcbb38be3a7b727c71f613dffea9cfdbbdb73bcf4f9e3ffbbd7e9fdfe7e4d9bbf23bcbb76f8ebff3e4e2abfae9c51727dffe89af8ebf78f2fbbc7bf6f4f8f5938b173ff9e4f88b3727bbdfb99cdcfb898b9ff8eeac9c2c5edcffe2c9feeffdf4cde9de174f4fafbe78737cef8ba7c7575f3cabf0d97ee7b3abd39f3efd892f8ef73f3fdefdeaf4f8dd17df9e2c1ebefda9dffbc5dbec07274f963f387ef1e4e2ed2f9abf2d3e7f78b5f3e4f8274e9f1d1f7ff9e4a77fe2f8eae2f7797b72f1fb9c1eaf7feffddffb8bef5ebf3a98fec4ab93e383dd373ffded2ff3fac597cfbe5c51c3bd2f0f7efa74f65397bfe8ea55f9d5ef73f145999ffe3e7b5f962f679f2cb3f2dd55f9130f3ff94593176f5f7c7efed3cbf9d91717c577ee9f7c51fede17b3575f3cbb77fae9d3e517cbb7ede2dbcf3e7ff87ce727173ff1e9f38bf6c164fe7bbf3a382bda57dfce7f9ff2f2fafef3ef94579f3e9f96f9fddf2b6bf67e7affcdfcf7f9e9e73f31f9e9275f3c7dfd7b3fddfff6e54fbdc8f7bffa7d4ebf3a39be3a3d3ece5e3cffe2f4edd5ababdfe7e94fbeda79f2e4f4f8ea6545235bffc4779effc4ef33fbf65707c73ffdddd3f9bd273ff5f6f7f9f4f4f7b989d617f3e3cf5fec5d1dffa28b276f8bf9b75fae5fbcfe45bff7d3df7be78be3b79f3f79dd7c49f33a7bf213c74f7fe2279edc9ffdf4cb7ce7f34fa7f77eeae0e9fad5a7a73f31399b3ff9e2cdf264e707bfcfcb7971f18b3e79b7fbfcf3837b0f3edd3dab0f5e16afaf3ff9b47a7775f2ed2fb3dfe7a7ae2fe7f977775e3eb95eb62777bffbeceaab6275be7c70f0d12ff925dfff25","ff0fa510cccd84040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11980', + 'x-ms-request-id', + '305bc426-f8dd-4f3c-b490-b67d407972ac', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '8a261698-333e-4acf-a032-9195ab76813c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070734Z:8a261698-333e-4acf-a032-9195ab76813c', + 'Date', + 'Fri, 19 Nov 2021 07:07:34 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_update_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_update_test.js new file mode 100644 index 000000000000..7708d71f409d --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_certificateoperations_update_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "eebe1442abae58c88e5a1e7cc198834a"; + +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', + 'a74fc7ad-f5dc-468b-a6a8-d8b2117b5800', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AuFSU_5IXpNLryt6dRQJib0; expires=Sun, 19-Dec-2021 07:07:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr3nkTci5ETVnxTfYsVH3v4EwDvkl-4epSSMueHnsHst6Wxpme__vTqLzb9tS8ZVPt7-3_In3ueAcmu_923dGAtEForv7f3EnYLIii8kmWr0ZxwAenxFNN30nNjGF9G3PmM8E-O4IOTth9JLNa6I212wSLgad6mFQ26a7uTWL56QAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:34 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'a6af092e-d9ef-4345-8611-2f0ffb764400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Asjb1vc4ptFAiR0WvUueJYs; expires=Sun, 19-Dec-2021 07:07:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMkc-cvPeJv78m_7Wq8dr4ZfyBzT-hR4iTyE4hMYU3hzNqTjt4Z1bhqsIRPrIa3z4o2aWE8lYkMbpOSlncEmcPFI97RZYEjh7jJC2Wmbac5tHwc1W3gBHVJWal1qa6jQmHJSRO9I-pIw-XSMy7-vdDVk4EY_AaUKovoJbIKOeQqEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:34 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=34b74fef-92ca-4a42-a6d9-8de94baefe7e&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', + 'a6af092e-d9ef-4345-8611-2f0fff764400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AsdP0aj-bhFLlW6xczyD3cYWPr5BAQAAADdEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:35 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:34 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .patch('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/certificates/sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7', {"properties":{"data":"MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=","password":"nodesdk"}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147cb6c917ff4e8a3669eed6e4fcfcff7b2c9a7f7a607d387f7ef67d9f983dd87070ff3f3ecd3fdddc9c39d4fefdf3f983d3c9f3cf868f45131a397ee36eb4933ad8b555b54cbe6eec3bdf387f76707e7dbf7a69f3ed8dedfdddbdf7eb83b7db07d303ddf79309d4dcef7f677efd67953adeb69fe795dad57cdddc5f54f376ddeb47757757559ccf2bab9fb4531adaba63a6fc74fb2763abf3bc1bfc7d369b55eb67821935fdfbd7b77779ad76d715e4c330271f77d87d05eaf30f2cdddf93dd03b799b5dd03bdfbdfbfb7eb4f3eee0e9c3e3277b4ff6f7eeededdd3f3efe7d3fa206348c155ea1d68f7ef147ed7cbd98acea62d91e9717555db4f305bd0d44a9a9fb923e7b0fbca98bcba2218a17cb8bd72d2146afbf5e4fa7793ecb67b1efdfd4d9b22930476f0a9eecbd9dbddded5dfadfc3373b0f1ed1ffeedd1befeddefbf4e1bdfb3f4500ceab7a9101a997e7efe8cfd57a5216d3a7599bd1475f9c9d3da97f707272fc937b17c757674f8e2fce7ee2db3ff579bbf776e7f9c9f367bfd7eff3fb9c3c7b577e67f9f6cdf1779e5c7c553fbdf8e2e4db3ff1d5f1174f7e9f77cf9e1ebf7e72f1e2279f1c7ff1e664f73b97937b3f71f113df9d9593c58bfb5f3cd9ffbd9fbe39ddfbe2e9e9d5176f8eef7df1f4f8ea8b67153edbef7c7675fad3a73ff1c5f1fee7c7bb5f9d1ebffbe2db93c5c3b73ff57bbf789bfde0e4c9f207c72f9e5cbcfd45f3b7c5e70faf769e1cffc4e9b3e3e32f9ffcf44f1c5f5dfc3e6f4f2e7e9fd3e3f5efbdff7b7ff1ddeb5707d39f7875727cb0fbe6a7bffd655ebff8f2d9972b6ab8f7e5c14f9fce7eeaf2175dbd2abffa7d2ebe28f3d3df67efcbf2e5ec936556bebb2a7fe2e127bf68f2e2ed8bcfcf7f7a393ffbe2a2f8cefd932fcadffb62f6ea8b67f74e3f7dbafc62f9b65d7cfbd9e70f9feffce4e2273e7d7ed13e98cc7fef57076745fbeadbf9ef535e5edf7ffe9df2ead3e7d332bfff7b65cdde4fefbf99ff3e3ffdfc27263ffde48ba7af7fefa7fbdfbefca917f9fe57bfcfe95727c757a7c7c7d98be75f9cbebd7a75f5fb3cfdc9573b4f9e9c1e5fbdac6864eb9ff8cef39ff87d66dffeeae0f8a7bf7b3abff7e4a7defe3e9f9efe3e37d1fa627efcf98bbdabe35f74f1e46d31fff6cbf58bd7bfe8f77efa7bef7c71fcf6f327af9b2f695e674f7ee2f8e94ffcc493fbb39f7e99ef7cfee9f4de4f1d3c5dbffaf4f4272667f3275fbc599eecfce0f779392f2e7ed127ef769f7f7e70efc1a7bb67f5c1cbe2f5f5279f56efae4ebefd65f6fbfcd4f5e53cffeececb27d7cbf6e4ee779f5d7d55acce970f0e3efa25","bfe4ff0162be310078040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:33 GMT', + 'ETag', + 'W/"0x8D9AB2B423225AA"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1192', + 'x-ms-request-id', + '5b6412c3-3b61-465f-a01b-447a05d9874c', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'b9068c2d-631a-479b-a289-6e932db4b51c', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070735Z:b9068c2d-631a-479b-a289-6e932db4b51c', + 'Date', + 'Fri, 19 Nov 2021 07:07:35 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_checknameavailability_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_checknameavailability_test.js new file mode 100644 index 000000000000..bec60a918ae0 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_checknameavailability_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "87238f45e07f13757d60937aa25d8808"; + +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', + 'e6c00834-9b63-4a86-b4ca-26f0fbb65c00', + 'x-ms-ests-server', + '2.1.12231.7 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AiX206x750NCnOcG5bi8V0U; expires=Sun, 19-Dec-2021 07:07:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrBlhLlNhzOeIdRURbVBWOqbpJsgaYkYGQStL2CmQf8ijjIM5xiw3PV7vgG__wiDFRxv6FLt3smug7X5XzEltBFw0gCKTHYcpHdFcd-9gYKhSb1yDNTdpEMalvhvFIM_ADl9aFk17_loUE9HNDjfmj7eTBGNn7bBUVyFPMdjEbCy0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:35 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', + '3c88997b-98c8-4a59-9b64-19da3ce23f00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=ApULelVvHolEhQVWu4qEG1E; expires=Sun, 19-Dec-2021 07:07:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvdiTdFg5bBIjFgw2_Noc5waLdbuPRpIba3YNCi8HEHQYsq3c1wTEodkJvqwF57RHEnp1m56419JrnM835CS0o4by05R0j6mwLJFsH9-r3GaXOZaP3wb66x2VNWSWAM1OSe126yKNZz0qNPg_iJDLp7W9sOc2oIwFv-ovUMfpvoggAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:35 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=1fc9b86f-f2a7-4716-98d4-42997084b5dd&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', + 'cb0f8a18-9cf2-4235-8927-6ea966563e00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AggBzfdoPpdNvS8KuF2nfiYWPr5BAQAAADhEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:36 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:35 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .post('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/checkNameAvailability', {"name":"myaccountxxx","type":"Microsoft.Batch/batchAccounts"}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147cb6c911f5f6645994dcafca347e759d9e4a38fea3c6baae5478f3e3a2ee9d7d9f5e9bba2699b8f461f2df2a6c92ea8e147c7cb349b4eabf5b24d0163967ebcb8d60fdebd7bf7715a3469262fa7c5325d37f9f8a3","5ff2ff00ddfcadf56f000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1196', + 'x-ms-request-id', + 'c5b957c4-989d-4bf1-874b-646c93d3f9f6', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'b97ee8c3-e6fa-4378-8f51-181001de9e77', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070737Z:b97ee8c3-e6fa-4378-8f51-181001de9e77', + 'Date', + 'Fri, 19 Nov 2021 07:07:37 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_getquotas_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_getquotas_test.js new file mode 100644 index 000000000000..a2a853eaed95 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_getquotas_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "e80c93c72a9ba360dbf09aaba9e4b7b5"; + +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', + '68a42a4b-08aa-4894-b208-c8018cf21400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AoThs6_j7XlAnkWEkSP0eTM; expires=Sun, 19-Dec-2021 07:07:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrryDglleEguBY7mViuNyvphiDRevApZoa8tE5RPpZHGgOD10Wm7CeZT5XUUPT5mps7ST7ANa8UIPNhJ7hsJ50FFa513arbsnkFMqEZ1luMune3TVK1ytTygMXN98s5CYNzvYq432Q-XJOTX_9ludLGaZTXpNxKI2jAr4hYwIPXPEgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:36 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + '4bbbbf0d-6bf6-458d-b125-20bd9b963500', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AgfP_GBO6PVFiDx7nff3G-c; expires=Sun, 19-Dec-2021 07:07:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrgg8EhpAk_ZkxQPHlkOefMmWS40EvAMZRT0ydu3Ttzbu9COJlKoln81OrDL_LUt4LKaDQIJ8FO6XVGVIMXcx6ooIp2MuLciNTC09CUbRP3_K4GttCE2KhCJowFIrWcjxIAnwP3-xbjQ4BbHEwc-199NXA0rT4CKSzFbN26OcKViogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:36 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ebccf64f-3fbe-4d3f-b7e2-ab5c00d1bdd4&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', + 'a928a7b3-5033-4d2f-a2fd-cb4bde684100', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AmLorg6-_LtEuBOaCAa8arcWPr5BAQAAADhEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:37 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:36 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/quotas') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147d9745aad97ed4facab36fbe8d1bd","5ff2ff00defa19c412000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11979', + 'x-ms-request-id', + '25fdb633-62f9-46bd-bd6c-beec344d2d09', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '0bdd4f32-1ba9-4246-b8ec-201506550570', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070737Z:0bdd4f32-1ba9-4246-b8ec-201506550570', + 'Date', + 'Fri, 19 Nov 2021 07:07:37 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedcloudserviceskus_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedcloudserviceskus_test.js new file mode 100644 index 000000000000..bd3d0270a4d8 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedcloudserviceskus_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "0428fa6bf02d601dfe177bd5c6bdbd0d"; + +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', + '28c05690-0988-4995-88b0-4641063a3600', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=ApYNUlQybaFIrsuaSoStyAA; expires=Sun, 19-Dec-2021 07:07:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrRlXJiBxDTmRVizk3C9qp-GsLF8yOvaO0qgxbaAvXshspGRGew5BNUHsGqLSCZxkiZe9ooBgUxTMir-U5skdoTwgsi4gkpUnpMz58Re7dtknTgVMwNWGaWuApcZbW4Hz4PwLZ_KB6pSmgUAoCSqvCd16Xq0uzdkwG1FmVfIJna_8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:37 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'dacf03b6-bde0-4e46-97b5-da4851a03c00', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AsD96ROidn1HpKhjf33ZX9s; expires=Sun, 19-Dec-2021 07:07:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrpk_q_jlS90Ye2KI1dPOnx1ChaqMPlU8reHbFL-D5ZLAcpdKQFAhl3FBO-3wZql_3qd-u_65rbiUPiZkQNErtPBL-w6iyRr0UDj3j-clRHd7TAm2c3XtV_ggmebAz2ukns9VfAbjz_ACWJCiq_RjViNw3_cZID65F7vcgyLutbOkgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:37 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=4dce4116-0b7a-4f8f-9cb2-185b92eaaa3f&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', + 'f2cd5188-710b-40eb-b71f-1e612b8b1900', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AkxCDJA18uRPlgGgzDUtUlkWPr5BAQAAADlEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:37 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/cloudServiceSkus') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1325bd02f1f1ddfff68f4d179b628caeb17f249d366cb5956cf8e777effe307cff81b6a32cd56d9a4288bb6c81bfffd93aaa60f4606f0477b1ffd9291fdf28b7c51d5d767cb2f265e8bddfd7bf73ef55bbd5eaf5655dde6b327d7dfcd27dfadeab779fdaa2a03b06d4d3fe2effc6451b7ebacfc229bce8be5c697bec8de3dcddaec69d1bc3da9d6cbd66bbaefb77358e44db5aea739de785dfc20ef8ce4feceee834f77fc37435c6e787df7dec1de3ebdfe7d0fc0f1a7d4e01b9c8e605cd1e9d83bf8f44130691e691d217ec8d371e0b77358dc40cf1d22e70e11d4bd1a2273c3fb7b0f770f7af3f1801a7c83f3110c2c3a1ff71fdcdb0f66cda3ada3c40f793e7603817568dc40d09d8383871f20209fee3ebcbf47affb1372faaeadb3e7597d9153c31feac4fcbf526ffdbf67627e16e6241083e89c3cd8fd3498388fbc8e163fe429091072586ca6e8cf86eefa229f15eb0535fa06a724b014d129b977ff2098378fbc8e183fe429091072586c26e9cf82757fbdc8ca92da7c8313b2eb23189d90dd070f8359f388eb48f1439e90002187c5668aeedddb2119f1df0c71b9e175e80a7afbfbbfe4fb","bfe4ff01d02260f8080b0000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11978', + 'x-ms-request-id', + 'd444c4ef-d7f6-4354-a027-11c0dd429186', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'aa2a5746-764e-4b48-800c-49b28ffe5bf8', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070738Z:aa2a5746-764e-4b48-800c-49b28ffe5bf8', + 'Date', + 'Fri, 19 Nov 2021 07:07:38 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedvirtualmachineskus_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedvirtualmachineskus_test.js new file mode 100644 index 000000000000..5ad8441718ed --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_location_listsupportedvirtualmachineskus_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "9878c7bfbd41c58936db569ac014248e"; + +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', + 'e91c1196-cc6f-44cc-9908-13662d322900', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AmJHWTMWj-5Ho5DH6nSy2rk; expires=Sun, 19-Dec-2021 07:07:38 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrccc7v8B-dmFCpmggWOFnEMw_-mVhISJcZs7BBVNvxgjwKMgOyvBkimzoE22eQeEuyRuBWE3u9qi5QULmq6R7E2F2_GXcKQ95U5ggxJX2unf8Pn2oTtgvrIvf61KBUVQI3MH_22Qdd7kz5Y7hFnNM4j_CkxBQZT7VhT6SK5_TgRYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:37 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '906e4ea3-a767-46f3-ad6e-942a802a3400', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AmQSiqcpvzZAhXyZRixMZlg; expires=Sun, 19-Dec-2021 07:07:39 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrbr8FEUR_P10Yfvai1JX6bLuMmuX1bGDqpJXH1TSeMv-4BU_qIbRbiyJaScMJCwNTQFfrKuQIXfhv_bUW4skrPGQ_97ipmpnyngrC6i2VbUydvUCTw2YEUBewMXDYguA5oKXui_mflIht0pPiWFEp9MNX7RTWhWEdqpWbjjcr8akgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:38 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=40eef5a6-73f8-4ac3-a0a2-d13d797ec32a&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', + 'a7763080-2c94-4c8e-a565-c4ea9da74300', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AuAVYcEnMBpFn94EJU7KxNIWPr5BAQAAADpEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:39 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:38 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/providers/Microsoft.Batch/locations/eastus/virtualMachineSkus') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffcd1325bd02f1f3dc99a62fafb1fef7e34fae83c5b14e5f50bf97c82cf8f9ff147f4dd345b6593a22cda226ffcd7bfc8debdca9b6a5d4ff39faccaf522ffe209b5d65e3edadf79f8e9ce47bf64649b7ff9fa27e7b3d7c50fc266bb3bfb0feedfdff31b5e9ebcfcaaf19bf85f7e912faafafa659d37797d592c2fbec88a659b2fb3e5347fbd5eadaabacd67debb6f6afae1bdfeedeb555effe4e7f932afb3b6a8967e3f3f19e9e8f300d7f183fb4193ecddd3accd9e16cddb936abd6cbda6c1804e56ebe37a3a2fda7cdaaeebfc0de1e0357df7e9bedff87975f5b22eaaba68af4f40f8d26fdb1d0ed16151ac17675f7a6d9e65651334fac92f9ee6abb2ba5ee4cb167dfb633ecbb2d77e5ba6fdf16556949d9e03da1c9f8413b4134c34c37899d727553d08e17435cf173407e597af41bed8d4f5c671ba9cd6d72bccda71fbedaa696ff5126838255a12a712c3f09cdfea3d6191f2e5ba5e554dfefaed7a53e3e3e9342fa939c17c91b75755fd9638f37409126eece4d56c91dda219f199823d235eafcfb369308701af7d4eb4f7bea389f9bef7ad4afc1eb5f8e625fed3ddfd7deacff5f6b5253ef8520491381d134874fd614afcbdf16d053e90e1ff3f087c30073f12f8b0f1ffd704fe1eb5f8e6057e776fefe0803a74dd7d6d890f24420491581d334884fd614afc83e0fb61793ff0dbfdff41de031c7f24ef61e3ffafc9fb3eb5f8e6e57d6ffffe836fc8a70fc447c490581d334884fd61cafb6ec0f734fe2181dffdd46ff8ff07890fe6e047121f36feff8cc4bf6eb3e52cab6714c7fffe973dc7bed16f8f2ff73e50f87777f6be21ef3ee01a1149627acc2591f88729fb019634fa21d10fdafdbf5cf2472fe91fff05a67e4cfc03ea7cb8f89f548b49b1cc676ff2c50a443c5ece4eb2e93c9f9d7df9f2b5ffd24e087bf0bd5779367b72dde6e8f8753ead963e1feced3c7cb07b7fef7690be4bf4cf074111c71e74eddaffdb7459975584e1e3aaacdbf6ff839a6cef675593edd18453d7aee3afadc9822f45c19010632689c43f4c4d16281d1afd90260bdafdff469305d3f0c3d3647bdf8826dbdf7db87f6f2734ad8390366bb29852fc9126fbb9d5648b1fa9b2f75365619c45c3ff912e33dffd4897fd4897fddce9b2a7bb9f66cdef7fd94b2d196df6f4f8f5e5fe07eab3dd7bbb3b0f02e4beb642ebe811563424cb9850a2f437aad1463f1960227d054a2dd43f448321a5762f80f44d6a3502ef41264af4b45a77d0372935bf2d533fa6cfc269e06624ee1d95150e7a48617454d6bd6f4667ed7d7ab07feffefefd00cf41503728ad282c7e1150f83daff9fedec3fd879f3ed87bf8693890af9653fb4e67d07bf737b465f831bcf677f63ebd7f6ff720e0c25b68d32e47dc469976dff97f8f2eedbef6cda8d2208b7a5b55baf7b3af493fbd174ef7d756a4c197a2db487b603289ca3f643d1a109b0830a4468391ffbf5b8b7e4dd7905b91ac7f139a74ff1b51a4f7eeddbfbfbfdf3160439036ebd128287e0f40f835aff5fd7b9f1e3cd879b84bf6c07fc1d78c9d01c3740c3565e831a4eeefdcbbb7fbe97ec0823fd2a1df880e0d26fab63af4decfbe12ddfb746f773f500f5f5b8b86cc2caa8dd407e69308fd4356a3bb7b0117131186146988f6ffbb35a9df96c91f53a2e180b81909fb37a1453ffd66d4a8d566b702b5598fc661f18b80c2ef79cd0fee1f3c7c786ffffec30deab133e8fb9bb42ec38fe175b073ffdecea7849cffe68f74e937a24b039ade5697ee1ffcacebd27b0fefed85c1e0d7d6a5a10d16fd460a04f34984fe61ebd287618b9f47ba349c076e46d2fe4de85244c4c4acb77871a32e8dea9941509b75691c16bf0828fc9ed79c4cecc1fec39ddd8383837024be82ec8cfac1a71bda720731c448033f7878ff6147667ea44d7f0eb5e9cfbe32dd235ef151fbfabad4ff52d41be90f4c2651f987ad4a03f3401418d2a4c1d0ffffa0487bad48d0bf093d4afa84b8f416ef6d54a39f3ed8dd39380809390869b3168d82e2f700845ff35ad362c0bd07fbbb077be45afb6ff87ab1336278e1434d197c0c2b5a58fbf4d37b9487f5dffc9106fd463468c0b7b7d5a09ffeecabd0fb7bfb64a27de4beb60e0dd959141be90ecc2711fa87ac446985206831ac45ff7fe78f8638723392f66f428f9237f78d6852a7d06e056bb32e1d00c66f020cbfe8b77fb0fbe0e1c1a70f691d281c8baf233b03c7b007db720751ccf6ee1fec51da217cf5470af51b51a881cebaad42fdd98fef3fbd4fd9261fb5afad4e83018a86231582c9242aff90b569a823890243ca34f45d7f0e94a9d77b54996682e7ad9569300bdc8a24fd1bd1a5df4c6cbf7b6f7f6ff7c18330933d08ea064d1a85c52f020abfe735a7458107fb07f7682d281c88af1bbb838601196acbf06378ededecdea395fb30c3f42335fa8da8d1c068de568d3efcf4675d8f3ea0e828d43a5f5b9186f18c68b79f3b4d7a10509c8830a44ac3d1ffff409586f3c0cd48dabf115d8aa51ae2d65bbcb95999c65dc921583768d338307e1360f845bffd8ffcd20daf89c4fd7f40a106c6f3b60a75f7d3d94685faf4c315eaa7b4841f4ef8d756a8a193274a8eb408e69308fd4356a8a1e6231afcbcd1a7e1341c9f8473f4f0beff2d03215df08d68dbfbc44801270dbeb951db3efcf4c1c1bdfbe43ede0ad46665bb7fb0bf4fceeb6e38207e1150f83dbff9dec37dea9e529de1407cf5d91935259486db32fc285e3be4b8de2395eebff9234dfb73a769f77ed6152d2d49858cf2b5f56cf0a5a83e522e984ca2f20f59cd06c426020c69d980d1ff7fa06403bafc1075ecc36f44c5928f77ffe0535a37ba15a8cd2af6fe43e2ec838e15e5f700845ff35bdffbf4e0c14ecfc9f4956667c8f7363465e851a476eedddbed98901fa9d76f44bddef3dbde56bddefbd9d7afbb7bb46015b2cad7d6b021378bda23d58209254aff90552c25c78216c34a3644fbff075a361cd00f4fcddedb214e0a5869f0cdcd7af62139b20f76c99fbc15accd8a961cd3885fcc2f020abfe7353fb87ff0f0e1bd7d4a8f8623f1f56767d8f737a965861fc3eb60e7febd9d4f49affb6ffe48d97e23ca36a0e96d95edfec1cfbeb23da02c6cc82b5f5bd9860c2d0a90340c269428fdc356b6e16a0251e1e78db20de7e187a76cf73f254e0a58499ae11d563a5e5bb28507fb0f77760fbaa6ded7541df8e49e0eb7e50e68203dad46aaf0c1c3fb0f3bbcfb23b5f673a8d67ef6b51a452721ab7c7da5e67f297a860419b34964fe61ebb4c0fb20120ca9b4605afeffa0d1fc569b151ac3203df04d28b47b07f7432e1a7c71a3f3b8b7bfb7b7b7bb733f98bd41509b7d47d26691809f5f04147ecf6f6ed7a8c281f89ab333e84f373465f051b476763efdf45ec73dfe918efd46746cc0bab7d5b19ffeec2bd9bdfdfb0fbe292d1b2a21517da45d30a144e91fb29aa59580a0c5b09efdff9deb18e2f8c3d3b49fee92a60d58499ae11d563a5edb1fada36f7a4dd8feff036a2df0516eabd67ef603e27b3b0f3af3fdb5955a3042d13324c8984d22f30f59a7859a8a4830a4d2421ff3ff072a2d98851f9e467bf0a0a371065fdce83bc6d7bd87407da3bee3deeefe83fd837b94a70c07e2abcecea029aa1f6ecbf06378ededecdea355f43061f3232dfb8d68d940406fab65773f9d6dd4b21fac643fddddefd8eeafad64437d259a8f740b6693c8fc43d6b2a13e241a0c69d9501dff70b56c8f85be11351bcec30f4fcfeede274e0a5869f0cd8d8a36be2833046ab3a225ad798f168cee0524f99142fb46145a303fb755687b3fcbfaac9799fedaea2cf852340cc930a69268fc43d66601a9890043ca2c504fff7fd06501617e88aaece137a2c9e26ede10a8cd9aecfe4362ed83d05afd48917d238a2ca0e96d15d9bd9f6d4db6bb470b7321177e6d5d16b28d281812624c27d1f987accc2834095a0cabb310edff3fe8b370443f3c85766f875829e0a5c137376b3472a63e7db0db595e1884b559a5451dbd1fe9b46f44a70534bdad4edb3ff8d9d66907fbf7bea99c5ec836a2674890319d44e71fb64e0b532644859f3f3a2d9c881f9e4edbff945829e0a51fe98e6f527708c85beb8e9eeaa0afbf49d541417c38db5f5f73f85f8a3093b4602e89c83f6cc511185222c190de0884ecff176ac36ff5c3d31af70e687df3562f6e7484f6f6f7f6f67677c2f5e941509bfda06898f8235df68de8b280476eabcb3efdd956667bfbf71f7c53da2c1476513124c5984ea2f30f599ded8502415418d267fffff38342247f781aedd35dd268012ffd48777c23ba2330b9b7d51d3fdb21d4bd9d07e4f6fa987d6dcd118c4f8499a405734944fe212b8e501d100986f446e830fdff416f04d3f0c3531b0f1e74b4c6e08b1b1da1fd83fdfdfdbddddddbe1b0d9118a3a553f5266df88320b24e1b6caecf52eb58a6bb2d71fa8c71eec7e1a30fed7d662bbfe97a2594876318944dd1fb6161b07e24a14185263c174fc70b558b7cd37a2c48259e82ab14f89c1dcb70c83c4bfa3c40208830aa4a3c4f6bf111d76efdefdfbfb9499bc15a4cd2a2c0a8adf03107ecd6bbdffe9ee839d8387c88afa2f7cb59cda573a03eea64ffda60cfdb648fdbf4badf6b499c8605caff61adf52b1f6defb66346b40d6db6bd69f3dd5ba77f0e98300a9afad5b832f45df9146c14c12817fc8ba7537d082448121d51a9895ff1fa8d680303f3cd5facd2c18d262e1cec14148e641489b556b1414bf0720fc9ad7fac1837b3b0ff77777ef85abcdbebeec0cf8533226434d19fa6d91fa916afd3956ad7bd4ec6747b5de7f706f3f98ebafad5a0328a2ee48a3602689c03f64d51a8a08516048b5fe5c06dfdd36df886e0d50fce1e956021dea9ac117372ad7dd7b14793f78104edf20a8cdda350e8b5f04147ecf6f7e9f7cd78383bdbd4fc368dd579add41ef9149196acbf06f8dd78f34ec37a5610301b8bd86bd47cd7e7634eceeeefea707c1647f6d151b4011b5478a05534914fe21abd8504a8804432a368cd2febfac62331950300b3f3c158b4039003ef8e24615bbf72905e7f7f7c3e91b04b559c5c661f18b80c2ef79cdc97fddbbf7e0d3fdfbf7c8a1f1def0d56667d0b4fc160eda6fcbf06f8dd78f54ec37a5620301b8bd8a1d5e44fa5015bbb7f790f8cac7ea6babd8d02114bdf773a6633b8b10448421251bbaa63f52b2f4f1d752b2089903e0832f6e54b2f7ef7d7af060e761387d83a0362bd9382c7e1150f83daf3939b1c4e47b0f773edd0ba6d9579c9d41dfdf25d332d496e1df1aaf1f29d99f5b25fbb39728d8ddbf772fd08d5f5bc5065f8ad623b5828924fafe9035ec83e0fb61fd1accc6ff0fd46b40971f9e7aa57839803df8de46ed1a4b510e42daac5ca3a0f83d00e1d7bcd6e4beeeef3e78f869e7055f5d76060c7b32d494a1df16a91f29d66f4ab106ac7f6bc5fab3971ff8e616b702861165470a051349f4fd212b56f2f6fd06c39a3574b8ff7fa05a03147f78aa954087aa66f0c58dba359a9d1c04b559b9c661f18b80c2eff9cd0f285176ef3e8572e11bbeceec0efa471958faaed7f8e756c10602706b05fbb3971df8e696b8028611a5476a051349f4fd212bd8907b8902430af647f9d76f46c1feff20fffae9c37be45b1e3ce8bce12bcdcea07f947fc577bdc63fb70a3610805b2bd8dddddfff72437ae072ef03d5ec37e7c7065f8aea23e582e9242aff90d5ecadfdd86052fe7fa06503c274b4ecde2eb199fb9661901ef826b42cf97301ecc1f7362a59d272bd087a10d2661d1b05c5ef0108bfe6b57ef08016b9f67777ef85e6d9d79a9d017fad0cc1eececea79fdedb7bf8ff6205db7d4d4430ae5fbb6d6fa95ebbaf7d33da3560fcdb6bd7bd9f5dedfacd39b10114d178a454309744e41fb2760da5842830a45d6f9525d0b63f6bea55d1fc46d46b300b9bd5ebcbaca69e30d55e9b1eeb792f70a7a436be097d4c0e75a89f065fdca890a321f720a8cd1a390e8b5f04147ecf6f7e7f9fd6c40ef6f63e0dfd515fd17607fdb5d20a7b3ba4f63fbdff30988b1f29e56f442907e2727ba57c0f92f1b3a7947777296315b0e1d7d6ca0114d1943f675a39941322c19056fe79955ae8686586416ae09b50b2ff3f482decd0dad8834ff7efdfdb0d78c2579c9d417fbdd4c2fe0ea9d87b942af6dffc9192fd46946cc0fdb757b2fb3fbb4a766f8f56040236fcda4a36f42245f3916ec16c12997fc85a7637941422c2909a0d35e7ff0fd46c380f3f3c3d8b583b003ef8e2463d7bffdea7070f761e86f337086ab39e8dc3e2170185dff39a93274b5cbef770e7d3bd609e7dddd919f4fd5db22e436d197e0caf839dfbf7763e25e4fc377fa4677f2ef5ecfd9f653d8bfc2d75ef3affda7a360423ba8f940b6693c8fcc3d6b3fb21363f8ff46c380f3f3c3d4bd173a872065fdca8674deaf576a036ebd9382c7e1150f83dafb997c70ddef0756767d0043b1cb4df96e1c7f0b299dce0d51f29da9f4b45fbb3ab671fec8646f56b6bd9403445f19166c14c12897fc84af6def87ed06258c9066af3ff073a3698851f9e8aed2a9bc1f7366ad87bf7eedfdfdfefa47186206d56b05150fc1e80f06b5e6b4ac93ed83978483986e0055f6576068c1cc95053861e43eafecebd7bbb9fee07f2f623ddfa8de8d660de6ead5b79a9e2674fb7eeeedfbb17c4965f5bb9065f8ac2239582a9241aff9095eb83e0fb61d51ab0f9ff0f546b40971f9e6a85f77aabf736aa56e370de0ad266d51a05c5ef0108bfe6b5a644ecfeee83879f765ef0f56567c0f05c879a32f41852d671f5dffc916efd39d4ad3fcb8b5d9c1ff011fbdaba35e04bd177a453309544e31fb26edd0d911956aebb9f7ee435fcff81760d50fce169d75d5af509800fbeb851bdeededbdfdb7df0602fb47943a036ebd7382c7e1150f83dbff901adfadebb4fab12e11bbedaec0e9ad208c1a0fdb60c3f86d7de0ee51f3ebdff30e0e11fa9d86f44c506dc7f6b15fbb3bcd475ffc1bdfd00b1afad6203c614b5478a05534934fe21abd8504a8802432a368c05ff7fa0628381fff0542c42e500f8e08b1b55ecdea7149edfdfbf1f787883a036abd8382c7e1150f83daff9bd4f1fde23aff7e041e70d5f6d7606bd779f0ccb505b861fc36b7f8714ec3dd2e8fe9b3f52b1df888a0db8ffd62af66779956b77978c7780d9d7d6b1e12ab6283e522d984ca2f20f59c9867242341852b2a1defcff81920da7e187a765113507c0075fdca865efd31afb839d87bbc1040f82daac65e3b0f84540e1f7bce60fee1d90c371efc17ee70d5f7376067d7f976ccb505b861fc3eb60e7febd9d4f0939ffcd1f69d99f3b2dbbfb69f3fb5fdea396436af6de87aad97bbb3bdf50b620946f517da45c309b44e61fb29a0d1522d16048cdfeffce970da7a1a36629a8f7bf6520a4083a6a3624c9908aeb689cffef3bb3fb7b0ff71f52ee8cd6f88381f8aab333e81f39b3f45db7edfff7d4ecdecfb696fdf45e38d95f5bc9065f8ade23cd82a9241aff90756c406a22c0908a0d46feff030d1bd0e587a760bf193736bafc3f0469b37a8d82e2f700845ff35a5b9f371c85af303b038645196acad06348dddfb9776ff7d3fd80377fa45abf11d51a4cf46d55ebbd9f6dddbaf7e9deee37948c0d5959341e6915cc2691f987ac5d6929226831ac5f43b4ff7fa060c301fdf034ecfff7330507f70f1e3ebcb74f4b51e1407cd5d919f48f3205f45db7edcfa99e0d687a5b3dbb7ff0b3ac67ef3dbcb717c696837af6263d1b5a67d17da45c309b44e60fd7b3b6a35be9d987618b9f477a369c871f9e9e45801d001f7c71a39e8deaa041509bf56c1c16bf0828fc9ed79c8cf3c1fec39ddd8383837024bef2ec8cfac1a71bda720731c4483b3f7878ff6147a27ea4697f0e35edcfb6a2dd234ef111fbfa7ad6ff52541fe9164c25d1f887ad6603d3411418d2b2c1d0ffffa064fd563f3c1d4bba26803df8de46154b6bfb3b0707219907216dd6b05150fc1e80f06b5e6b5a95a0f5aedd833d72c9fd377c9dd91931bcf7a1a60c3e86d5eececea79fdea394afffe68fb4eb37a25d03bebdad76fdf4675bbddedfdb27e3eda3f6b5f56bc8cca2f448af603689cc3f64054b4b11418b610dfbff3b3f36c4f187a763c90bfc46b4ac5376b782b559cf0e00e33701865ff4db3fd87df0f0e0d387b41c158ec5d79f9d8163d8836db98328667bf70ff6289511befa2365fb8d28db40a3dd56d9fe6ce70c3ebd4ff92b1fb1afad6a83e189f623f582a9241aff90356da83f8902438a36f479ff7fa0688359f821ead96f265fb07b6f7f6ff7c18330af3e08ea062d1b85c52f020abfe735a7258a07fb07f7685d2a1c88af37bb838671196acbf06378ededecdedbfb94f2bffe9b3f52b1df888a0d04f4b62a76ff60938afd600dbbbb47ce6cc8275f5bc786e940517ca45a309944e56f54c9fa2da5a340c3fe7f2327dbe39f9b74ece825fde3bfc0331053b4e154fcf034ed37949925663bb8ffe0d6b036ab5a09d83ab06ea1d27ad3731b9dd67b09acf1ff67a51630da2d95dae9eea719798efbd434aad64e8f5f5fee7fa062fb0697f543374cd40dc933e69308fd8deab59b9d4732eb418bff77aab66e9b9b349bdf96c91f536ae13c703392f76f426ddda3989298f5162f6e545b7b9f1eecdfbbbf1f265206416dd65a7158fc22a0f07b5ef3fdbd87fb0f3f7d4089c87020bed3d71934257c86db32fc185efb3be41edea360df7ff316dab4cb11b751a6dd77c08bdfb02eeda9bbffef29d3bd9f755dfacdad28055f8a7623f581d9242affb03569205a4401ab483b8a3460f5ff1fe8d18030dc8a04fd9b50a39400242ebdc57b1bb5e8bd7bf7efefef77acd710a4cd4a340a8adf03107ecd6b4db9a683073bbd04a3af163b0386dd186acad06348dddfb9776f972279ffc51f29d06f468106337d5b057aef675f834a0ce223f7b55568c8cda2d74875604289d03f641d4a3e44d06258898668ffff408b8603e26624eddf841ac5423431eb2d5edca847ad3abb15a8cd8a340e8b5f04147ecf6b7e70ffe0e1c37bfb94460c07e2ebc7cea0ef6f52bb0c3f86d7c1cefd7b3b9f1272fe9b3f52a6df8c320d887a5b65ba7ff0b3ae4c1f1c7cdab1e95f5b99865658141c69104c2811fa87ac4cef85411511e1e78d320de7819b91b87f13ca14013131eb2d5edca84ca38a6610d466651a87c52f020abfe735a78ccfc1fec39ddd032431fd577c0dd91935c56bc36db9831862a4821f3cbcffb023333f52a73f97eaf4675d9b7e736bec819e11fd460a04b34954fe61ebd2b0c1b02a0d66e5ff0f9ab4d78a24fd9b50a4a450884b6ff1de463dfae983dd9d03b2dfb782b4598d4641f17b00c2af79ad77771edc7bb0bf7bb047ceb5ff86af183b23861f3ed494c1c7b0daddd9f9f4d37b9487f5dffc910afd665468c0b8b755a19ffeeceb5032d00fbe21251af2b36836521e985022f40f598b525016b41856a3a1befdff811e0d71e46624eedf8422257fee1b51a54ea3dd0ad666653a008cdf04187ed16fff60f7c1c3834f1fd2425038165f4976068e610fb6e50ea298eddd3fd8a3cc43f8ea8f34ea37a35103f7e7b61af5673fc4dfbd470c1948d7d756a8c10845c79112c17412997fc8fa34542a448221751aae4dfdff409d06b3c0ad48d6bf116dfacdc4f7bbf7f6f7761f3cd80bf01c0475832e8dc2e2170185dff39aefedee3fd83fb8472b42e1407cedd81d344cc8505b861fc36b6f67f71e2dde3f0ce8fc2345facd28d240066fab481f7efa43d0a40f3eedacd27c6d551a0635a2df4883604689d2b7d7a5fcfa07ebd2d03e10158694e97bfba60eeaff3b9569380fdc8ce4fd1bd1a658b12176bdc59b9bd569dc9d1c8275833e8d03e33701865ff4dbffc837ddf09a48dcff17546a603f6fab52773fcd366ad40f56a8fb3b5852f051fbdafa34f4f244c79112c17412997fc8fa947c8aa0c5ff3bf5698f87be11851a4e04372371dfa4507f24e33f8732bef7b32ce294f6fa86243cf852848eb81a734934fe610b78c0e4448121f90e24f6ffe5e23d7a49fff82ff00cc4643c200fb7fa9188138536f5f1cd887840d4db8af8bd9f6d193f6057d747ed6b0b79680f45f288b9319d44e61fb29477623d22c290988768ffff46cec36171b31f093a9168531fdf8ca07f2d5bbe7ff0b32ce8bb7b7b0714ddf9b87d6d49df0f8628d247ec8df9243aff9025fdde4120934485ff5f48badf96e91f13f27022b8d98f849c48b4a98f9f4b21ffd996f19dbd4eaae7eb8bb8ffa5481db135269388fcc396f0b0c1b0800793f2ff72f9bebd250f10e5563f9271a2d0a63ebe19190f887a5b19fff4675dc83f258bf70d49792804227ac4dd984fa2f30f59cc29dd10b41896f35021fcbf5cd0fdb64cff988c874872b31f09399168531fdf8c900736e3b642feb3edacefed7457c1bfb68807e313a923b6c66412917fc8121e7239916048c0c31cddffcb05fcf6963c980b6ef52321270a6deae39b11f280436e2be40f7fb697d0f6f6ef3ff8a6d6d0c2b570913de26ecc27d1f9ebc9394f2f98c1efe85672fe206c312ce8ffffb3e4e14470b31f09399168531fdf8c9007daf5b642befbe9acd924e54f5f7fb0987fbabbff4df9eba15d14c923d6c68412a17fc852feff8d95f26e9b6f44c8c379383e0927e9e17dff5b0672830a38a916936299cfdee48b150878bc9c9d64d3793e3bfbf2e56befa5ddfbc449012b0dbef92acf664faedb1c5dbfcea7d5d26785879f3e38b877ffd3307d3808eabb44fd7c10d6fec1fefefede6e18bcc98b80c2eff9cdf71eee53f77b0f3b96efabe5d4bed31935ade50cb765f851bc76f63ebd7f6f37cc0eff48d7fe1ceadabd9f7555fbe0d36f2a6c0abe14e547da05b34954fe612bda40db100586f46cc0eaff3f50b301617e885af6e137a26477f776ee1f7c4a19f95b81daac64ef3f24d63ee8d8517e0f40f835bff5bd4f0f1eec3c240482be7db5d919f2bd0d4d197a14a99d7bf7763b46e4470af69b51b0c14cdf56c1defbd9d7b0dfe43272c8cea2f848b7604689d23f64254b4e46d06258cb8668ffff40cd8603fae1e9d97b3bc449012b0dbeb959d13e245ff6c12eb994b782b559d3926f1a718df94540e1f7bce607f70f1e3ebcb77fffe10605da1936ad730cb765f831bc0e76eedfdbf99414bbffe68fb4ed37a36d03a2de56dbee1ffcec6bdb83fdae65fedada36e468d180a46230a344e91fb2b6a525cca0c5cf236d1bcec30f4fdbee7f4a9c14b09234c33bac75bcb694da39d87fb8b37bd0b5f5beaaeac0270775b82d774003e9a935d2850f1ede7fd8e1dd1fe9b59f4bbdf6b3afd628400979e5eb6b35ff4b513424c9984e22f30f5ba9850d86755a302dff7f50697eab1f9e46bb77703fe4a2c11737ba8f7bfb7b7b7bbb3ba1ff3f086ab3f748ea2c12f3f38b80c2eff9cd771edc7bb0bf7b402f046ff8aab333e84f373465f051b476763efdf45ec741fe9192fd66946cc0bbb755b29ffeec6bd96f727939d442a2fb48bd604689d23f643d7b7f27c46658d1861af987ad690905aff76f44d386f3f0b3ac6afd7e7749d506acb441a93dd87df0f0e0d38714bc84aff8aaaaa3d5c8751c6ecb1d44d5dadefd83bd5e9af3477aed9bd16b8197725bbdf6b31f13dfdb79d099f0afadd582118aa2f939536aa164130986745ab81af4ff039d16ccc20f4fa53d78d05139832f6ef41ee3cbdf43a0367b8f714f945f04147ecf6fbebbff60ffe01ee52ac381f8bab333680aec87db32fc285e3bbbf76831fd6130c61fa9d96f46cd06127a5b35bbfbe96ca39afd602dfbe9ee7ec77a7f6d2d1b2a2c517da45c309d44e61fb29a2501085a0cebd99f4bdfb1c743df88a20d27e287a76977ef132b05bc34f8e646551b5f9a1902b559d546d5f62d545a6f667ea4d3223a2d98a1dbeab4bd9f6595d64b507f6d8d167c294a86a418734934fe612bb440a8890243fa2cd050ff7f506701657e88daece137a2cc286a8d640a87406d5666f71f126f1f8406eb47baeca36f46970554bdad2ebbf7b3adcc76f768892ee4c3afadce42c6111d43628cf9243aff90f5d95e18fd101586145a88f6ff1f345a38a21f9e4abbb743ac14f0d2e09b9b75da4372cf1eec76d61906616d566a516fef475aeda36f46ab0554bdad56db3ff8d9d66a07fbf7bea9e45ec838a2694894319f44e71fb256bb7710e81fa2c2cf1fad164ec40f4fabed7f4aac14f0d28fb4c7473f97dae3675b79dcbff74d2d77066225e24cf282c92422ffb05547d86058730493f2ff0bc5e1b7fae1e98d7b07b4d679ab17373a43f164fe10a8cdbe503458fc9136fbe89bd1660197dc569b7dfab3adcef6f6ef3ff8a6f45928eea264488e319f44e7218596c9cb5da27fa842bbbf136233acd142d5f7ff7295367a49fff82ff024c4f45a88e90f4fb17dba4b8a2d60a81fa9908fbe191512d8dedbaa909fed68eadece03f2807dccbeb60209c627324d4283c92422ff90f547283e448221f511a6c6ff5fae3efcb64cfd98e608a6e187a7381e3ce8e88dc117377a44d135b741509b3da2a877f52375f6d137a3ce0259b8ad3afb74bff8fd2fef51cbb83e3bbbbcf781fa6cf7534aa3848cf8b5155a28eea265488e319f44e76f54a3f92da5a3409d51c62b6831accfc286ff2fd767df943bf46930df0c84f4c137a1d51e92771d001f7c71a35623663b604ffd76b036abb5fba4d7b0ae13c0fad9526bbd97c01ab7d06bbdf784f3ffbfa0d802037a5bc5b6fb69b349b1bdfe60c5b6f7e9deee7e20055f5baf853e8fa81b9267cc2791f91bd56b377b6abb7b01bd8908ff6f546ddd36376936bf2d933fa6d4c279f8e129352c9f04c0075fdca8d4f63ea59598fbfba17b35086ab34e8bc3e2170185dff39aefef3ddca7b53f5a440c07f2d5726adfe90c9ad68c87db32fc185efb3b7b9fdebf474b4efe9bb7d0b55d7eb98daaedbe034ebd85a6edbe26a2f8ff5b45bbf7b3ac67efed3df83440ec6babd9e04bd17ca45a309744e31fb6960d048b2830a4640346ffff818e0d08f3c353b1148204b007dfdba861efddbb7f7fbfe3fb0f42daac60a3a0f83d00e1d7bcd6b44a76f060e7212d2904a3f0556667c0b029434d197a0ca9fb3bf7eeed7e1aaefdfe48b97e33ca3598e9db2ad77b3fdbda5562171fb5afad5e435e169d476a05d34964fe21eb57f22e8216c30a3644fbff071a361cd00f4fc57efacde858abea6e056ab3928dc3e2170185dff39a1fdc3f78f8f0defefd871b746767d0f737a964861fc3eb60e7febd9d4f0939ffcd1f29da6f46d10644bdada2dd3ff85956b40f0e3eed58fbafad6843fb2cca8fb40ba693c8fc4356b494dd0d5afcbf5dd10a9adf88a20de7e187a768116407c0fd178317372adaa8121a04b559d1c661f18b80c2ef79cd29c774b0ff7067f7006953ff155f7b76464d51e0705bee208618a9e7070fef3fec48d48f54edcfa5aafd59d6b49fde27b3ef23f6f515adffa5e8be9f3b3d1b361856b3c19cfcffc09d0d50fce12959523601ecc1f736ead84f1fecee1c90e5bf15a4cd2a360a8adf03107ecd6bbdbbf3e0de83fddd833d72cafd377ca5d91931fcf7a1a60c3e86d5eececea79fdea3bcafffe68fd4eb37a35e03c6bdad7afdf4675bbf92e97ef00d29d8909b45eb9162c17412997fc81ab6e39e131186546cd8f0ff073a36c4f187a764c90ffc46d4acd376b782b559d10e00e33701865ff4db3fd87df0f0e0d387b428158ec557a09d8163d8836db98328667bf70ff6289b11befa236dfbcd68dbc071baadb6fdd94e1becde23760c64eb6b2bdb607ca2ff48c1603289c83f645d1b2a1c22c190aa0dd7c9fe7fa06a8359f8216ada6f2667b07b6f7f6ff7c183bd601483a06ed0b35158fc22a0f07b5ef3bdddfd07fb07f768752a1c88af39bb838679196acbf06378ededecdedbfb9492c0fe9b3f52b2df8c920d24f4b64a76ff609392fd701dbb47e9a89051beb6920d7382a2f948b7603689cadfa896f55b4a47818afdff4662b6c73f3729d9d14bfac77f816720a669c3a9f8e1a9da6f283d4bcc7670ffc1ad616dd6b5b2ccdb81750b9dd69b9edb28b5de4b608dff5f6bb580d36ea9d59eed52a3a8467bf6a1faecd38eec7f6d6d16d13124c4984422ee0f53990558d2e887545930ecff976b32bf2d133ea6c402c27474d8de2ef196fb966190f07774580061507d7474d8bd8eaa187c6fa30adb3fd8bbb7bf1fe60607216d56607bfbbbbb0ff64295feff36fdd57b4f98fdff0b0a2c90af5b2bb04fa9d5cf8a06dbfb94bcfd403cbfbe0a0bb84f540b892f2692e8fbc3d461a19b4504185262a162faff85160b26e187a7c6102b06c0075fdca8c71ed0b2cb3dcabadd0ed4664576efe1bd3d723e4358dfa0260bf8b7379b608aff7f6bb2c042dc5693ed51a39f1545766fefc1a701465f5b8f055f8a7621f9c52c12717f986a2cd03734fa212d160cfbff0f4a2c98811f9e0eebea8ac1f736aab0870feeef3eb81ff2e220a4cd1a2ce6d5fd4881d1dfdf8c020bd8ecb60a6c9f1afdac28b04fefdfff86d67a031117bd42b28b5924e2fe301558200334fa2105163a2dff7fd060018e3f3c0d8605cb00f8e08b1b55d82e25d60eee3dd80db86c10d4661d1653873fd261f4f737a3c30246bbad0e3ba0463f2b3aecff936ba87e4be9285062a172a2f10f69b130eafcff83160be6e087a7c5f6f6bf112d168dff06416dd662518df82335467f7f336a2ce0b4dbaab1dd4fd12caec85e7fa026fbe6bcb18efe600543228c9924027fa39a6cf4930126d257a0cc421d4524185266a17efae12ab36e9b6f449785d3f0c353669f7e33ca8cb8f1e0c1cec350010d82daaccce2b0f84540e1f7bce67b3b9feede3fd8bfb7b3b71388e957cba97da733e8fb704487da32fc185e073bf7efed7c4ac8f96fde42c976f9e5363ab6fb0e38f5472a56bff5542c5afdec68d8fd9d30b1f1f515acffa5e83cd22a9846a2ee0f59bf86df0fabd74061feff41bbfaad7e78caf59bd1adf7eeddbfbf4fcb0eb782b459b54641f17b00c2af79ad77f70e0ef61feeec1e1c04c2e92bcbce80b13632d494a1c790babf73efdeeea7efbda2db65941fa955d2243db51a4cf56dd5ea1e5afdeca8d583dd87014a5f5bad065f8aaa2375826924eafe90d56aa00169fc436a3560f1ff1fa8d5802e3f3cb5facdace57efa6077e780d6736f0569b35a8d82e2f700845ff35aefdd7ff0e9c3839d7b0f1e040e86af2b3b0386933ed494a1c790daddd9f9f4d37b7ba117f3f348af1a3a7439ffe750afeea3d5cf8e5eddfdf4de41c07f5f7e5dc51a401165470ae5e746b1060a930830a458c3e8f9ff079a3540f187a7596f9f8fdca85a77efedefed3e78b0174cdf20a8cdba350e8b5f04147ecf6b7e7ff7fe3d4a867699dcd798dd31ef913d196acbe06368ededecdedbfbf47ee8ccfc48bb7ef4cd68d780fd6fab5d0fd0ea6747bbdedb7b10a67dbeb6db1a40118d474a05f348e4fd216bd7506b120586d46b2760fcffbe7a0d66e187a75e111e07c0075fdca85ef73ea574e7fdfdfbc1f40d82daac5ee3b0f84540e1f7bce6bb3bf7761e3cdcdbbd4faceebfe1ebcccea0f7ee9351196acbf06378edef9076bdb71bfa343fd2af1f7d33fa35e0ffdbea575acffafd2ff7a8e5808ebddcfb402dfb0d2ecf77541beb3ed22e984f22f30f59cf86ea9368f0f346cf86d3d051b4bb0feffbdf321052051d451b926448c97574ce37a6681fdc3bf8f4e0e076a06e52b43158fc22a0f07b7ef307fb070f1e3cdcf9f4e17e30cfbef2ec0cfaeb29da7b0f0ff6ef53863778f3ff5d8ab6fb9a48e2ff17f46c3075b7d5b37b3fdb6af61b4b15045f8ae223d582b9241aff90956c302222c0908e0ddafdff40c50674f9e16958ca481203dfe2bd8d0af6dedefd9dfb071de77308d266fd1a05c5ef0108bfe6b726a7f72129e4ce6abeaf313b038649196acad06348ed3fdc3b208739a0f0cf3fddda7bef9b51ae01556fab5ceffd6c6bd7bd4ff7764393fdb5d56be80e8ace23bd82f9243aff90f56ba80b8906430a36c4faff071a361cd00f4fc562d587f8f8162f6ed4b1f749c73dd879b87b3b1c362bd9382c7e1150f83dbff9fe43e2f183dd7be45ffa6ff8bab333e8fbbb5f47cf3ea0c53728e8e0cd9f7f8ab6dbc737a36783a9bbad9edd3ff859d6b3f71ededb0bc3cbafad67f783118aee23ed82e92432ff90f56cb85e4b34f879a367c369f8e1e9595a2e0a15c7e08b1bf5ecc1cefd7b3b9f9282bc15a8cd7a360e8b5f04147ecf6fbeb7ffe9bd7b0ff6760e42a6f0756767d0b49e110eda6fcbf06378edd2eadafebd7b4430ffd51f29da9f4b453ba467f1f537a167bfb1a5af400589e623dd82b9241aff90b56c302222c090920ddafdff41c7faad7e782a96740d31f02ddedba8613ffd74e7d39dbdd0951c84b459c14641f17b00c2aff9ad0f1eec3edc7f4019dcc038fb2ab33360f8ee434d197a0ca9fd1f650ba859b78f6f46b70644bdad6efdf4675bb9dedfdbef30e1d7d6aea1f61195476a05d34964fe21abd7ddbd6050448421051b3a2cff3fd0b0218e3f3c154b24ff46942c2dc1de7bb0bf4b2ee5ad606d56b303c0f84d80e11783f60f1fdedfddfd74efc18307b755b51876306ebf2d7710c5ec479e2cbfd7ede39bd1b681f4df56db3ef8d94ecdde3f78d8e1c4afad6d43232d1a90540ca693c8fcc3d6b661be9988f0f346db86f3f043d4b6fbe4e01127dfe2cdcdda766fe7c1c3fb0f3bdc3608eb066d1b07c66f020cbfe8b7ff9472a6070fee3fd8db0f97ff7d0dda19f88fb42dbeebe9c3ffef69db9fedfceca7f769b1c047ec6bebda6078a2fe48bf602e89c63f6c551b0c892830a469c386ff3fd0b4c12cfc10152de90ce2e15bbcb859cfdebbb7fbe9c3dd90d10641dda066a3b0f84540e1f782e60ff6ef1d3c2405181a2b5f7176070d5f7ea82dc38fe2f5f0e1dede43324cfe9b3fd2b1df8c8e0d24f4963af6f9eea79b94ecf30f57b2f73efdb41b5c7d6d351b6a2cd17da45d309f44e71bf46c8f9c1fac687ffe6610c289f87f9700f7e65966f8ff0712ecbee3892105db315fbb43527e6f63dcfa0d48f9837b7bf73edd0fe4e16b4b79282d2278c4d998749a8b1fb694efdd0f789dc8f0f346cac301fd48ca3ffa66a43c90926f52ca37af057c0352bebbff2979880f0381f8da621e4a80481eb136669d26e3872de6f777c316df8898ff7f43cc431c7f98624e74206ea309e729bbd53ccb0cffbc16f3839d9f6d31a725de8794a9f391fcda621ea6ed44f288b531eb34193f6c31a745efa0c5cf23310f27e24762fed1ffdbc5fc8723e53e8a5f5fc8fd2f45ec88af31e534133f7c190f1a0c8b7818c5feff41c4fd563f92f08fbe19090ff8ed1b94f01727247d03f2fde2e403a5fbd3875839f3b1fbdac24d587adf8ac0114b63ba6916be59e9f65b4a4f8168ef76701996ed3017f1c395edde98bf11e10e87dee1c3e03b0611e543d7e616daa1378cdba887de4b20e1ff5bf443efbd6f4c410c0838e5bd7fb6047c77ffc1fefd4fbf19092734bd6f45ee88b1316144c71faa84ef75701996f05068ffff20e1e1d03b121e7cc7207e24e1b710dd6f46c289f80312fe29b5fad911705a90fda662f0c0cf15a123aec66c11117fa8e27deb647a280bff7f90ee60e41de10ec8c6107e24dcb790da6f46b8497406847b77e3b2d98b930f0fc23f3d38e82c237f6d210ffd43913de26e4c1b51f39b95f29b83f0dbdbf1b0e10f57d2bb6dbe11410f27a223e9c1770ce2c325bd3b8adb087af71dd0efff2d72dec5ed9b117392b20131dfdbb86ef64d88f9eebd079f761692bfb69c87f222a247bc8d69236afeb0e57c3f0cb4890c4372feffbb847a38111d390fbe63103f9273d0cfefa48bdbcfb69c7ffab32de6f7f6f77742cefdda521ee80a913b626ccc1991f2872de4b74fbb850dff7f20e4c13c74643c905f86f0231907f9fc4ebab805326e5bf5a0138b29d4a88c13e30cc838bbecf7a8e9a090dffb4021ff91cbdeb17cff3f90f270223a621e7cc7207e24e6a09fdf4917b76f46cc49ca06c47c6fbffed996f31ff9ece4d004a0fe7f20e8e14474043df88e41fc48d041bf8d9dc425bd3b04e23185fade82fe2339c72c62d2fd9e7e24e7f89be9ff2339670ef966e5bc8b5b5ccc7bd089c714ea7bca3962f39f5531ff516c1e36fcff819007f3d091f1407e19c28f641ce4f33be9e2f6cdc838314e5cc69f526c4eede212fef4f507caf78fc2f28ed1fbff81808713d191f0e03b06f1230907fdfc4ebab87d33124e523620e1e4ad53bb9f2509ff91a34e5e4c00eaff07221e4e4447c483ef18c48f441cf4f33be9e2f6b32de29fa2d9cf9284ffc8470f1bfeff40be8379e8887720ba0ce147e20df2f99d7471fb66c49b18272ede3f490c3824de3ff981d2fde9c34fefededf8587e6de9262cbd6f45e288a5315d44c56f56bcfd96d2d3d794edd0c8ff7065bb37e66f44b8c3a177a43bf88e417cb874f786711bf1eebd04127e23f2bda9935bca77efbd6f46c089f803024e0ed7cf9680efee3fd8bfffe97b48b887213388078bd0f4be15b923c6feb990f0db07e0a1d0feff41c2c3a177243cf88e41fc48c26f21badf8c8413f10724fc536af5b323e0f70e1eee7e43163cf00b45e888ab315b44c41faa7887190522c0907487b2f0ff07e90e46de11ee806c0ce147c27d0ba9fd66849b44272adca7073bc58c56ca066df8ef7d7af6f4f5e5fe07caf9febd4fc9e87d33827e108011f9230ec7d411456f90f4ae686c16f49b03f1fb3b815812158684fdff4b89b6d14bfac77f81e72026f0e16470b3be548723af16936299cfdee48b15e874bc9c9d64d3793e3bfbf2e56befa54f77efefec04d0a519de7972dd0638ef3ed87df0f0e0d387bb07fbe12b5f2da7f6a50efc03823ed8963ba081bccea7d5d2e79fddbdfb077bb059c1abb7d054dd29b88da2eabe83c9ff7f8b9eeae2f6cda8a920a0edd80fa2f8f77fc9f77f","c9ff0391266f9be38b0200"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11977', + 'x-ms-request-id', + 'b1717625-3587-473d-86a4-0a6123a5323f', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '8b3fb37c-7bb3-4a14-8654-ecea84ced492', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070740Z:8b3fb37c-7bb3-4a14-8654-ecea84ced492', + 'Date', + 'Fri, 19 Nov 2021 07:07:40 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_create_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_create_test.js new file mode 100644 index 000000000000..c414f30894a9 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_create_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "46b7e82ebcd31805527af3a414f1a40f"; + +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', + 'a81c5db7-88c5-428c-b371-e607e3d4d600', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AqC4ksBjbz5EuB-LDsO3bs8; expires=Sun, 19-Dec-2021 07:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrC____ji_d889UY7Ltoiik_1U8HbGbdWwM2O6MzGtEciOdUC-g-0z2xLeb7Q_A9N3KO8n1pgVxuSvkST6EDFzJtEY4bAalP_nw35jyq5gTCOm-RuAZXOP-kpenaiEkaFLkmOCN1QOcU8ZjWp4FZ7WA-jx-0Xik1JyKWocxKzqtyUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:39 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'a928a7b3-5033-4d2f-a2fd-cb4b89694100', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Ar6zWOHHJnJEjs2UY2_Bbmk; expires=Sun, 19-Dec-2021 07:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrvtAK7L-abktqUyCp4xtieBGOpOgC-7QaGJsDRbqXdViruYGiV7DBwJc_SML6T4SRzl9m1OKQVd5QPKz7Y9XIN-2t7S7gXCNcnqz91pLbaPevzPNCVHh1y0Q9okEOVPPUpWbWnJiZhYIg_ZaRt0ECLxtxIlCeAVUZ5849u8_xBYQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:39 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=f2ed99df-571b-4293-964d-55b9aac18c32&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', + '3c88997b-98c8-4a59-9b64-19dad8e23f00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=ApssBVQNQtBOgr2Azw_mG_UWPr5BAQAAADxEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:40 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:39 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .put('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools/mypoolxxx', {"properties":{"vmSize":"STANDARD_D4","deploymentConfiguration":{"cloudServiceConfiguration":{"osFamily":"5"}},"scaleSettings":{"fixedScale":{"targetDedicatedNodes":3}}}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eeeeaaaa4a7c849ff4f747a38f96d92227ccfc8fdaeb153eda0c16cd1b6a9cb7d90535feeedddff7a39d77074f1f1e3fd97bb2ffe9c9f193d32727bfef47d480f05ce5755be4cd478f7ef14765d6b45f54b3e2bcc84190bd9dbddded5dfadfc3373b0f1ed1fff677c60ff71eecee1fecff14bd3badf30ca47a53309237b4a69e2e8b869a17cb8bd76dd6e295d7ebe934cf67d459e4fb3775b66c8adb77909565356584f8757ae155de143f2070fd2fdf17f6e5e275f103b47bfde6f8c5d3e3574f7fffa7fbf471b16cf3fa4535cb4faac562bd2ca4076af6b468b249c9e36ab3e6edebb26a9b97d2f4a347bbfae1749ecfd625e1f7b22a8be9352660490d9e1565f94626f9f58a483cfbe8978c3e9ae5abb2ba5ee4cbf6a45a9e1717eb5abbfac51f4dcb6a3d7b9dd797c594f0e87c5935cfb2455112f08fee133255f393c493fcdd47dffae89710e0669a95f9ebbc6d090fe681f3e25d3e7b8d4ff1579bd51779fb349f616cf90c03a056f730027cf1bcba7a5917555db4d7fad5cee82392092216085bad5beae8e59bddfb5f7067f2cd97c4718c20a6624def6ce80604799abbd9fb92859380beca7fd13a5fe7342601daed8e4646405b7c4c9f6d9c5e426cbaae6ba26d17011a8c7e1319e82ff925","ff0f923bdb7a38040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:40 GMT', + 'ETag', + 'W/"0x8D9AB2B46CABEBC"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1191', + 'x-ms-request-id', + 'f3490d10-0ad8-419d-a756-35459d05770e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '678e4929-805a-4f50-b010-a9f49c70cbe7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070741Z:678e4929-805a-4f50-b010-a9f49c70cbe7', + 'Date', + 'Fri, 19 Nov 2021 07:07:40 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_delete_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_delete_test.js new file mode 100644 index 000000000000..d6d4b122bc20 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_delete_test.js @@ -0,0 +1,245 @@ +let nock = require('nock'); + +module.exports.hash = "9440f2a3c7b3150ddb3214721fbf3327"; + +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', + '8c9f3f6c-4e40-4e69-a2ea-37d767291400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AtJgl8S1vbxLkMwCb9xcHrQ; expires=Sun, 19-Dec-2021 07:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrfddP9hIcC6qTjTRBhS1rEs89KH23hzVTxws9Qa4j1_jqqlNcTsWRVp_w2zXrz5zKaR6-WabklXwy9iIbi9zBOUVkysWm0ibnc--iAyN0cL96vSjaNAsOT_e2fsyHt0ifgCguu99ghckhq1_Ttaw0DEu5ATb_pJcziRyYN3zH4sogAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:45 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + '3c88997b-98c8-4a59-9b64-19da2fe43f00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AtDucibRiExDhAD56M-1ZFI; expires=Sun, 19-Dec-2021 07:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrykiQ7kFWmU00xJL420CL67tTWI2uATvPrRFeZNLH_xcuyFxGjeXgJgb8dheyC_Wb8X9RrqN4DbV4RoRhO7HS2rC2gmNvYYwZlj1cVxBkIWYEzNacSlxzR2EsBzM-x0Q-zhh0bhbYA1ioMBdnRupEagdV8_cesbIvI2I6tu8RZtQgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:45 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=8fd43047-3132-48e9-aea5-0ac20ba2eb59&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', + 'cb0f8a18-9cf2-4235-8927-6ea937583e00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AqvFr7RtEM9HnxrBOHK5mwQWPr5BAQAAAEJEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:47 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:46 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .delete('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools/mypoolxxx') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/poolOperationResults/delete-mypoolxxx?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + '49128ba4-436c-4714-bd25-c66c5486b131', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-deletes', + '14999', + 'x-ms-correlation-request-id', + '074a2963-f539-4bf0-b71c-5b70c596e22d', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070747Z:074a2963-f539-4bf0-b71c-5b70c596e22d', + 'Date', + 'Fri, 19 Nov 2021 07:07:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/poolOperationResults/delete-mypoolxxx') + .query(true) + .reply(202, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'Location', + 'https://management.azure.com/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/poolOperationResults/delete-mypoolxxx?api-version=2021-06-01', + 'Retry-After', + '15', + 'x-ms-request-id', + 'a0e5e7b8-1a25-41c4-9a9a-ba0c9d2d63f2', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11972', + 'x-ms-correlation-request-id', + '7f693da9-90b3-4ba7-b98d-a568e60d6f22', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070747Z:7f693da9-90b3-4ba7-b98d-a568e60d6f22', + 'Date', + 'Fri, 19 Nov 2021 07:07:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/poolOperationResults/delete-mypoolxxx') + .query(true) + .reply(200, "", [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Expires', + '-1', + 'x-ms-request-id', + '98fef0c0-1b2a-4a9e-aac5-42788eb84aa4', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-ratelimit-remaining-subscription-reads', + '11971', + 'x-ms-correlation-request-id', + '5dc095f9-1cac-4ed0-8a95-97775c195376', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070748Z:5dc095f9-1cac-4ed0-8a95-97775c195376', + 'Date', + 'Fri, 19 Nov 2021 07:07:47 GMT', + 'Content-Length', + '0' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bdefff","92ff0742ea40440c000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11970', + 'x-ms-request-id', + 'd7fddd28-ff06-42ba-bd21-6df1f7743c38', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '34b28a10-5126-4517-9252-a7309952903f', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070748Z:34b28a10-5126-4517-9252-a7309952903f', + 'Date', + 'Fri, 19 Nov 2021 07:07:48 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_disableautoscale_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_disableautoscale_test.js new file mode 100644 index 000000000000..24a45ddfe163 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_disableautoscale_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "373af4d4cc9abbc63997ee30fd3d79ab"; + +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', + '252c3b4d-43bf-4910-b497-74d5f1321600', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AhOLFIotY5RMow9CxAJSH3Q; expires=Sun, 19-Dec-2021 07:07:43 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr18nURrwkIre9fXLbTA0I5YXSD2Msf_rr0GLRTK34laL4F8fbqf5IiJqHHn1_Z0RM5GMQYClBB6U3y54Uru-QqshIWbW9865mB6g7HX3vtE2C2b0SqZf6nOd1Q1iV1FsHqopjyIVbdj5IR2q9p-UcRkinHsXjpKovHIlQuRXmsFUgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:42 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'a6af092e-d9ef-4345-8611-2f0fda784400', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AicX9n_O0ZJHhcHzIB3hXYw; expires=Sun, 19-Dec-2021 07:07:43 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrTo1aiufsATen7n47cK6w4l_WwEY5wLZSFy3XqBjx7pN_mieCcB4G4IbEwdAvGNQiLjgSYwJPqdPuSXnzedWRGp94VysrBPDAoTfcHtnGRvOvsZbn0csxH8xVVunXsjEv8ZIKJ_Pb4t4hNNsUZYzR6Zu3LFPu98bUDZ20ZwnUOJMgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:42 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a2f677f4-4656-4fa3-9435-5be841208c86&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', + 'cb0f8a18-9cf2-4235-8927-6ea9be573e00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AqIPO0bzWZ9OnJhv-K1WFowWPr5BAQAAAD9EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:43 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .post('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools/mypoolxxx/disableAutoScale') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eeeeaaaa4a7c849ff4f747a38f96d92227ccfc8fdaeb153eda0c16cd1b6a9cb7d90535feeedddff7a39d77074f1f1e3fd97bb27ff074e7fefed393dff7236a4078aef2ba2df2e6a347bff8a3326bda2faa59715ee420c8decedeeef62efdefe19b9d078fe87ffbfbe37bbb0fe9e3839fa277a7759e81546f0a46923ea6a6f43fdb7a67fc70efc1eefec13e5a534f974543cd8be5c5eb366bf1caebf5749ae733ea2cf2fd9b3a5b36c5ed3bc8cab29a3242fc3abdf02a6f8a1f10b8fe97b7801d0cf572f1baf801dabd7e73fce2e9f1aba7bfffd37dfab858b679fda29ae527d562b15e16d203357b5a34d9a4e471b559f3f67559b5cd4b69fad1a35dfd703acf67eb92f07b5995c5f41a13b0a406cf8ab27c2393fc7a45249e7df44b461fcdf255595d2ff2657b522dcf8b8b75ad5dfde28fa665b59ebdceebcb624a7874beac9a67d9a22809f847f70999aaf949e249feeea36f7df44b087033cdcafc75deb68407f3c079f12e9fbdc6a7f8abcdea8bbc7d9acf30b67c860150ab1d8c005f3cafae5ed6455517edb5fb8a64828805c256eb963a7af966f7fe17dcd9745dd734840838fd2602ef97","fc92ff079f1b4c3e9f030000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:44 GMT', + 'ETag', + 'W/"0x8D9AB2B48D054DC"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1195', + 'x-ms-request-id', + '6a15eff8-2db3-4c63-8288-7cbc03815a1b', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '2f8adb36-8cb6-4649-816f-af86f84289e7', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070744Z:2f8adb36-8cb6-4649-816f-af86f84289e7', + 'Date', + 'Fri, 19 Nov 2021 07:07:44 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_get_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_get_test.js new file mode 100644 index 000000000000..b5d4c2134650 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_get_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "663eedfaaf86084e1c7502e37d8f0dcf"; + +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', + 'd06c2206-1eea-48ef-b1bf-49fa24446000', + 'x-ms-ests-server', + '2.1.12231.7 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=As3SGEt3X-dBgp5t3h9oI3Q; expires=Sun, 19-Dec-2021 07:07:41 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrWjMzVi-pK_CTtFq_soAwrniurHPUu2m_gu4xacJrUohOArkThYc3sAAma8WwOKZD7IV2Xg5UIvAN95ElQNRyNkD9J5X8QUHVjJ0_SAapPv5jQGJPveJblboq2bWS4dxWBMaBfOzkgWljC2Zqp3tUx7wQ8GMJAlvrd0fGURD-YPYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:40 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + '4bbbbf0d-6bf6-458d-b125-20bd9a973500', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AuiEapsGOHpImXNzLqFiAyw; expires=Sun, 19-Dec-2021 07:07:41 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrPzSSnPysYDKQbCcbdZ-XQBCIVkmOobHW01m6-QG6ffw1IXJYxmiDyZegXO3cup1iJaMFxIX6Xps2ZTwG-XjPbhN51TvMVvI7wkgQRWj8_swSmgHFC_cUKYOAltldngTxLgE8tdK19cTkSE163-Aq89MgoJMX592T8UgwPCD01OsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:40 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=ca671881-7584-44ba-a129-50de58203d33&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', + 'f2cd5188-710b-40eb-b71f-1e61a98b1900', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AgOhCG-4KfRMkaYVBKZCt2AWPr5BAQAAAD1EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:41 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:40 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools/mypoolxxx') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eeeeaaaa4a7c849ff4f747a38f96d92227ccfc8fdaeb153eda0c16cd1b6a9cb7d90535feeedddff7a39d77074f1f1e3fd97bb2ffe9c9f193d32727bfef47d480f05ce5755be4cd478f7ef14765d6b45f54b3e2bcc84190bd9dbddded5dfadfc3373b0f1ed1fff677c60ff71eecee1fecff14bd3badf30ca47a53309237b4a69e2e8b869a17cb8bd76dd6e295d7ebe934cf67d459e4fb3775b66c8adb77909565356584f8757ae155de143f2070fd2fdf17f6e5e275f103b47bfde6f8c5d3e3574f7fffa7fbf471b16cf3fa4535cb4faac562bd2ca4076af6b468b249c9e36ab3e6edebb26a9b97d2f4a347bbfae1749ecfd625e1f7b22a8be9352660490d9e1565f94626f9f58a483cfbe8978c3e9ae5abb2ba5ee4cbf6a45a9e1717eb5abbfac51f4dcb6a3d7b9dd797c594f0e87c5935cfb2455112f08fee133255f393c493fcdd47dffae89710e0669a95f9ebbc6d090fe681f3e25d3e7b8d4ff1579bd51779fb349f616cf90c03a056f730027cf1bcba7a5917555db4d7fad5cee82392092216085bad5beae8e59bddfb5f7067f2cd97c4718c20a6624def6ce80604799abbd9fb92859380beca7fd13a5fe7342601daed8e4646405b7c4c9f6d9c5e426cbaae6ba26d17011a8c7e1319e82ff925","ff0f923bdb7a38040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:40 GMT', + 'ETag', + 'W/"0x8D9AB2B46CABEBC"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11976', + 'x-ms-request-id', + 'cee114ad-0e8a-4f59-b165-7cb3371db61d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'da315371-14a6-491e-a35b-5768a8fd0b8b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070741Z:da315371-14a6-491e-a35b-5768a8fd0b8b', + 'Date', + 'Fri, 19 Nov 2021 07:07:41 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_listbybatchaccount_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_listbybatchaccount_test.js new file mode 100644 index 000000000000..eba1fae13f45 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_listbybatchaccount_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "dfff136b7698a0f933dd0b5724169444"; + +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', + 'b001a4e6-9622-43bd-bc73-28bd4061d801', + 'x-ms-ests-server', + '2.1.12231.7 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AhnxXo6lCdhOh6bDPELVq0g; expires=Sun, 19-Dec-2021 07:07:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEyYZSQOPn_cpGDhxq6ISHJRIoHz6NtrpuKxoJEhOHCw4FGf59EwJ19-q9eP0NLTx6DpW3WKpEjvDKYeBFJfbCxFEncIqgwzSBmjCGr2HHDV6BfcSqiDRzwJ8Ji99YrKfJnMZAECBm5tPtVURjs4Em06ncvAmkwzFvPW_kQK_bQsgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:41 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'cb0f8a18-9cf2-4235-8927-6ea96a573e00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AoH2xSao4fpLtw_A2VUafH0; expires=Sun, 19-Dec-2021 07:07:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrQQV4wg5Kzm8_PbtZyKxkYnjMInkFgIsDASgIAPfo13xahDYaz1yM6mz5Y_pcd5XNXt34Xar6HxOa0SeXAKE4e1-J7TsUfiC9x-eV41cx1AxRtccvxkmRcq6hWixRlB3AGO5zYyDN65jxyMi82Ew-tyFemU4ccT-tft4G4YzEg5AgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:41 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=5f6a2d40-55f9-4492-a893-d2d5f6c6082f&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', + 'a7763080-2c94-4c8e-a565-c4ea3aa84300', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=ArxJFTvAvE1BtsGbbbNiap8WPr5BAQAAAD1EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:41 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bd5ffc5131fbe8d147779bf5a499d6c5aa2daa6573f7e1def9c3fbb383f3ed7bd34f1f6cefefeeed6f3fdc9d3ed83e989eef3c98ce26e77bfbbb77ebbca9d6f534ffbcaed6abe6eee2faa79b366fdabbabbaba2c6679dddcfda298d655539db7e327593b9ddf9de0dfe3e9b45a2f5bbc90c9afefdebdbbbbaaaa121fe127fdfdd1e8a365b620043ff23f6aaf57f8683358346fa871de6617d4f8bb777fdf8f76de1d3c7d78fc64efc9fea727c74f4e9f9cfcbe1f5103c27395d76d91371f3dfac51f9559d37e51cd8af3220741f676f676b777e97f0fdfec3c7844ffdbdf193fdc7bb0bb7fb0ff53f4eeb4ce3390ea4dc148ded09a7aba2c1a6a5e2c2f5eb7598b575eafa7d33c9f516791efdfd4d9b2296edf415696d59411e2d7e985d76d9ecdaefb5fdd02f2de78ffdeceee8387007cb9785dfc00cd5ebf397ef1f4f8d5d3dfffe93e7d5c2cdbbc7e51cdf2936ab1582f0be9809a3d2d9a6c52f2a0daac79fbbaacdae6a534fde8d1ae7e389de7b37549637d5995c5f41ad45f5283674559be91197ebd22face3efa25a38f66f9aaacae17f9b23da996e7c5c5bad6ae7ef147d3b25acf5ee7f56531253c3a5f56cdb36c519404fca3fb844cd5fc2431247ff7d1b73efa2504b8996665fe3a6f5bc28319e0bc7897cf5ee353fcd566f545de3ecd67185b3ec300a8d53d8c005f3cafae5ed6455517edb57eb533fa8804828805ba56eb963a7af966f7fe17dc997cf325b11b23889958d33b1bba01419ee66ef2be64c924a0aff25fb4ce49740dd06e77343202dae263faac3fbb01dfe4755dd5d421a9812975482fa818fde4174458928c93aace7f625db5d9ab3cc3b4d13b8bbc69b20bb47d33cfd366954f59665215e6749e3529cd1e5aa73ff945da309c744a80d25f0448e97955a784e37296d5b3a73a4bbfe4fb44a5e9baae69a2bbd420caea3711aaff925ff2fd","5ff2ff00a1aa14fece040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11975', + 'x-ms-request-id', + '32b16566-6a5b-45c1-b3f7-07322250f817', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'cf28641c-9bb0-43ef-b013-2d41a8eb0d4b', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070742Z:cf28641c-9bb0-43ef-b013-2d41a8eb0d4b', + 'Date', + 'Fri, 19 Nov 2021 07:07:42 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_stopresize_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_stopresize_test.js new file mode 100644 index 000000000000..0d6a89ad6438 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_stopresize_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "e883311e9f4c88bc5810514b16c79386"; + +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', + '59467bfe-cec4-4309-ac20-7d7016782800', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=ApRcCgPi979GnPU0u6vsMqY; expires=Sun, 19-Dec-2021 07:07:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevr06TYzwWe-7naGQL4aIFAqO8gqqTHbCpWkZs2gV7lzUzc4L37XIpDUDbZQu4dgG5LdfisD8XJHLTSeO0YmUTryOff1HOof7RzFCKlCRA9Al0QAcCgvLmvn-FUaiCngTxWTyYpIdiSVYkZu3LCbya1b7u8wKHvZ09uQvn7wJq4Ld8gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:43 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + '3c88997b-98c8-4a59-9b64-19dac0e33f00', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AsQU3CbZc7xIlJcjYHItE2Q; expires=Sun, 19-Dec-2021 07:07:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrX104esk4wz-5C_XQAf5QjHDj2lHWoXQXU75X7YTiNBmvrEkDDOgYajmIR3MAcfFm0FJjlCfAYT_JQUX2OM0m7ir105XW8IRYn-s-qBDpnWnpmefqd8Y5YVh7j7-6bggKWVBJ6mbljndRK3tLLuqMKy3pj9wLRGz8iBNrJQbBO_cgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:43 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.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=f98c0bef-dbd1-4e68-beac-8e4c2ee31985&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', + 'a7763080-2c94-4c8e-a565-c4ead2a84300', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Ah_8dDO3r8dLn78GoDbVXtwWPr5BAQAAAEBEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:44 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:43 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .post('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools/mypoolxxx/stopResize') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eeeeaaaa4a7c849ff4f747a38f96d92227ccfc8fdaeb153eda0c16cd1b6a9cb7d90535feeedddff7a39d77074f1f1e3fd97bb27ff074e7fefed393dff7236a4078aef2ba2df2e6a347bff8a3326bda2faa59715ee420c8decedeeef62efdefe19b9d078fe87ffbfbe37bbb0fe9e3839fa277a7759e81546f0a46923ea6a6f43fdb7a67fc70efc1eefec13e5a534f974543cd8be5c5eb366bf1caebf5749ae733ea2cf2fd9b3a5b36c5ed3bc8cab29a3242fc3abdf0bacdb3d975ffab5b40a6811eecefedec3f00e4cbc5ebe20768f7facdf18ba7c7af9efefe4ff7e9e362d9e6f58b6a969f548bc57a59480fd4ec69d164939247d566cddbd765d5362fa5e9478f76f5c3e93c9fad4b1aeccbaa2ca6d720ff921a3c2bcaf28d4cf1eb151178f6d12f197d34cb576575bdc897ed49b53c2f2ed6b576f58b3f9a96d57af63aaf2f8b29e1d1f9b26a9e658ba224e01fdd2764aae6278923f9bb8fbef5d12f21c0cd342bf3d779db121ecc01e7c5bb7cf61a9fe2af36ab2ff2f6693ec3d8f2190640ad7630027cf1bcba7a5917555db4d7ee2b92082216085bad5beae8e59bddfb5f7067f2cd97c46f8c20a6624def6ce80604799abbd9fb92459380beca7fd13a5fe7342601daed8e4646405b7c4c9ff5a7f7def8feee0171f21ea637afebaaa60ebf47d4a40ee90595a39ffc82084ba27152d5f94facab367b956798367a6791374d7681b66fe679daacf2290b4daad29cceb326a5d943ebf427bf481b86934e0950fa8b00293dafea94705cceb27af65467e9977c9fa8345dd7354d74841afa4d84eabfe4","97fc3f5b72cea5c3040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:44 GMT', + 'ETag', + 'W/"0x8D9AB2B48D054DC"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1194', + 'x-ms-request-id', + 'd155c1cb-d383-4adc-8c47-c99c81d4d16e', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'bca61b61-282f-4497-9a22-6fbc2128a5fd', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070745Z:bca61b61-282f-4497-9a22-6fbc2128a5fd', + 'Date', + 'Fri, 19 Nov 2021 07:07:44 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_update_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_update_test.js new file mode 100644 index 000000000000..53cc50c204cd --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_pooloperations_update_test.js @@ -0,0 +1,151 @@ +let nock = require('nock'); + +module.exports.hash = "d0169502dea2613f7b682ac8b5098299"; + +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', + '581f625e-4f31-4ae3-9e99-482faa0b3500', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'Set-Cookie', + 'fpc=Aq-GA3PBYBhDhogKx16uXrY; expires=Sun, 19-Dec-2021 07:07:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrEjLz2SrN7qYUEGnZ58hF2C5gW0L8yGAF3KjNq_7zWf56uGoiBzVcIp4OBYxMfimneUAf4F7hq_7sun5AAm9xlFfDgAC2e1_jIdAmVta4LQIMd7d_80tFuI669NNR4_Vg40TI8FFBlu1AHIlwmzkq1FSqBghPU6NCaIMZkjgGef0gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:41 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"kerberos_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/kerberos","tenant_region_scope":"WW","cloud_instance_name":"microsoftonline.com","cloud_graph_host_name":"graph.windows.net","msgraph_host":"graph.microsoft.com","rbac_url":"https://pas.windows.net"}, [ + 'Cache-Control', + 'max-age=86400, private', + 'Content-Type', + 'application/json; charset=utf-8', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Access-Control-Allow-Origin', + '*', + 'Access-Control-Allow-Methods', + 'GET, OPTIONS', + 'P3P', + 'CP="DSP CUR OTPi IND OTRi ONL FIN"', + 'x-ms-request-id', + 'a928a7b3-5033-4d2f-a2fd-cb4b176a4100', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR2 ProdSlices', + 'Set-Cookie', + 'fpc=As-JMqr13uJFpoYorU86Nco; expires=Sun, 19-Dec-2021 07:07:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrlCzd4b6aiMyp-YuDllmlZtFI6dXqzwUGAeJMSt4VIAl365CtyaldyXwdB915GU4M3DB4BM9-gU8TrOY7e_g6XSsk9MgTSoQ2FvW0t_fYXZSWPReaWhTtKCKx0V5jop88NT9Bb-HNipgdkB94s-04S1hEaaRPww3YgH5gfUlaBD4gAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:41 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=a7d38913-9cb8-480b-9c10-861a66648ae2&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', + 'c711cb4a-a339-477b-a362-312147793600', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AvUv1jbuiJJBsc2dIdzfiCkWPr5BAQAAAD5EKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:42 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:42 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .patch('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/pools/mypoolxxx', {"properties":{"scaleSettings":{"autoScale":{"formula":"$TargetDedicatedNodes=34"}}}}) + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef147c5eca3471fdd6dd693665a17abb6a896cddd877be70fefcf0eceb7ef4d3f7db0bdbfbbb7bffd7077fa60fb607abef3603a9b9cefedefdeadf3a65ad7d3fcf3ba5aaf9abb8beb9f6edabc69efaeeaeab298e57573f78b625a574d75de8e9f64ed747e77827f8fa7d36abd6cf14226bfbe7bf7eeeeaaaa4a7c849ff4f747a38f96d92227ccfc8fdaeb153eda0c16cd1b6a9cb7d90535feeedddff7a39d77074f1f1e3fd97bb27f70ffd3dd279feefdbe1f5103c27395d76d91371f3dfac51f9559d37e51cd8af3220741f676f676b777e97f0fdfec3c7844ffdbbf37bebf7bb0fb706fefa7e8dd699d6720d59b8291ecb7de193fdc7bb0bb7fb08fd6d4d365d150f36279f1bacd5abcf27a3d9de6f98c3a8b7cffa6ce964d71fb0eb2b2aca68c10bf4e2fbcca9be20704aeffe52d600743bd5cbc2e7e8076afdf1cbf787afceae9efff749f3e2e966d5ebfa866f949b558ac9785f440cd9e164d3629795c6dd6bc7d5d566df3529a7ef468573f9ccef3d9ba24fc5e566531bdc6042ca9c1b3a22cdfc824bf5e1189671ffd92d147b37c5556d78b7cd99e54cbf3e2625d6b57bff8a36959ad67aff3fab298121e9d2fabe659b6284a02fed17d42a66a7e927892bffbe85b1ffd1202dc4cb3327f9db72de1c13c90addbea353ec41fe755bd589719b5feddde64f545de3ecd6718653ec3509acfee810af96556aeb9c733d083fea2f62fdfecdeff827b201121da7d496cc66d40ff35f7d446207ef4e8de3eb13dfdfa347773f6258b24417d95ffa275becea953818ad9abd62d7d23fdd178086a8b8fe9b38d934a984dd7754d14ed62b063bf795e5dbdac8baa2eda6bf79d25d0ab35a1f48bbde1dfa65bc67c5db6046b90a687fa45b7fbcf760e7f37fcd227cd67b512e697fc92","5ff2ff001d7220d6ce040000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Last-Modified', + 'Fri, 19 Nov 2021 07:07:43 GMT', + 'ETag', + 'W/"0x8D9AB2B48561B62"', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-writes', + '1190', + 'x-ms-request-id', + '8a0419c9-734b-45c5-b3b8-fdf9236984ee', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '127c691f-bbe8-477b-92a6-441ed88ea8bf', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070743Z:127c691f-bbe8-477b-92a6-441ed88ea8bf', + 'Date', + 'Fri, 19 Nov 2021 07:07:43 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_privateendpointconnectionoperations_listbybatchaccount_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_privateendpointconnectionoperations_listbybatchaccount_test.js new file mode 100644 index 000000000000..15a323798b9d --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_privateendpointconnectionoperations_listbybatchaccount_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "785c08a9dc3484802d07b46903b9b798"; + +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', + '1ad7a9aa-e140-4fd9-a694-09c297fe1e01', + 'x-ms-ests-server', + '2.1.12231.7 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=AiyuEv_iGu5DtUEQk3cZaBw; expires=Sun, 19-Dec-2021 07:07:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrgnJp52OFlkRwasRKcuqtvNCtiqD8l2mpcppBmnqMB6OS3DYcGehOPTl8VAc7h07Go-SVnw9tEGNpfrkJxEAOhWv7S9EPe734KsRgTmvrsDCdXBrUFPF4FfV4nfc049MIvYEMholAlv0MwjumfxaR-wPTIwlZFkd_pdi0vC47VdwgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:44 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'f4ed96f2-9537-472a-b9ab-348fa5524500', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'Set-Cookie', + 'fpc=AiS5B4BXjVZJqdpx8qUsv1g; expires=Sun, 19-Dec-2021 07:07:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrMcPgdhp7_iR7UKpjLRfEY1R0wDu8Mz2-QbKhbhFpdVxu9JrbiS9MHJUZk_BkLgT8vmbqsT8ArvsJlkgai5-gWZ-COXveJU0A33njn7i-deeKrvjDNrMIQ0mlYdFRLeykxdoLVNNwYUl5QFsCRUUHcHpXKd6Xeo5vVFJOHvWdyyAgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:44 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=f0b3d2ad-7d40-4eb6-a3ca-0ad4d7543f23&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', + 'f4ed96f2-9537-472a-b9ab-348fae524500', + 'x-ms-ests-server', + '2.1.12231.8 - KRSLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=AvHBVOH0pKdAkwRNZWuA1JIWPr5BAQAAAEFEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:45 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:44 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/privateEndpointConnections') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bdefff","92ff0742ea40440c000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11974', + 'x-ms-request-id', + '0061baf3-d835-4590-ab11-3732a8d2e6ab', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + '1f322a14-86ca-41de-ab79-1445daf6b6bc', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070745Z:1f322a14-86ca-41de-ab79-1445daf6b6bc', + 'Date', + 'Fri, 19 Nov 2021 07:07:45 GMT' +]); diff --git a/sdk/batch/arm-batch/recordings/node/batch_test/recording_privatelinkresourceoperations_listbybatchaccount_test.js b/sdk/batch/arm-batch/recordings/node/batch_test/recording_privatelinkresourceoperations_listbybatchaccount_test.js new file mode 100644 index 000000000000..ec5d537bd9c9 --- /dev/null +++ b/sdk/batch/arm-batch/recordings/node/batch_test/recording_privatelinkresourceoperations_listbybatchaccount_test.js @@ -0,0 +1,147 @@ +let nock = require('nock'); + +module.exports.hash = "a5bbb09ac72bb88d370f40a0777763d6"; + +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', + 'd1df96c1-1bbd-4f6b-adf8-9c94bd058100', + 'x-ms-ests-server', + '2.1.12231.7 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Apdygr9dyTZMv1Vmuhq81To; expires=Sun, 19-Dec-2021 07:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7Wevrjis1kuiTC13qTG3NTLqjaOT_euP3QAbtdVKECuBkSg2SMU2XRHJ3WLGUpBVt3HdHxK2Pi3wnHWPqyv1eEX3rmZAI5CnOu8sznbqUubAGP92DQA78jcAZJYixjJGGHIZ6B_FygoWTzNN3Ev1wS-3zLZf5ryvlEe8g6KBcVqIvSvcgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:45 GMT', + 'Content-Length', + '980' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .get('/88888888-8888-8888-8888-888888888888/v2.0/.well-known/openid-configuration') + .reply(200, {"token_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token","token_endpoint_auth_methods_supported":["client_secret_post","private_key_jwt","client_secret_basic"],"jwks_uri":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/discovery/v2.0/keys","response_modes_supported":["query","fragment","form_post"],"subject_types_supported":["pairwise"],"id_token_signing_alg_values_supported":["RS256"],"response_types_supported":["code","id_token","code id_token","id_token token"],"scopes_supported":["openid","profile","email","offline_access"],"issuer":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/v2.0","request_uri_parameter_supported":false,"userinfo_endpoint":"https://graph.microsoft.com/oidc/userinfo","authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/authorize","device_authorization_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/devicecode","http_logout_supported":true,"frontchannel_logout_supported":true,"end_session_endpoint":"https://login.microsoftonline.com/88888888-8888-8888-8888-888888888888/oauth2/v2.0/logout","claims_supported":["sub","iss","cloud_instance_name","cloud_instance_host_name","cloud_graph_host_name","msgraph_host","aud","exp","iat","auth_time","acr","nonce","preferred_username","name","tid","ver","at_hash","c_hash","email"],"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', + 'b7b271c6-fddd-4f57-a418-98cbce273700', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR2 ProdSlices', + 'Set-Cookie', + 'fpc=Ahmeb_EFff1HhBpqd3ZFRC0; expires=Sun, 19-Dec-2021 07:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'esctx=AQABAAAAAAD--DLA3VO7QrddgJg7WevrxTezSxCMc7K0iw-OQDl4TSZeFoWnwXSiksCIcgKyoMelRMTouHDGt0dK_7RpveLj-lv5erGYzzkIDsNrVexJK7j67h_dHwjJvxPft-PIV1jLs2P-UyHoTUnCx9aFiAOPMwoS2hlO-Er-zaEB8d4GYOXoFd0r9ybNddKKJFeP9AYgAA; domain=.login.microsoftonline.com; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:45 GMT', + 'Content-Length', + '1753' +]); + +nock('https://login.microsoftonline.com:443', {"encodedQueryParams":true}) + .post('/88888888-8888-8888-8888-888888888888/oauth2/v2.0/token', "client_id=azure_client_id&scope=https%3A%2F%2Fsanitized%2F&grant_type=client_credentials&x-client-SKU=msal.js.node&x-client-VER=1.3.3&x-client-OS=win32&x-client-CPU=x64&x-ms-lib-capability=retry-after, h429&x-client-current-telemetry=5|771,2,,,|,&x-client-last-telemetry=5|0|||0,0&client-request-id=af3ef4f1-37fb-479e-92f4-f7e439b8817e&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', + 'dacf03b6-bde0-4e46-97b5-da4848a23c00', + 'x-ms-ests-server', + '2.1.12231.8 - SEASLR1 ProdSlices', + 'x-ms-clitelem', + '1,0,0,,', + 'Set-Cookie', + 'fpc=Avi8L6sihjpCkx9zSvbaTU0WPr5BAQAAAEJEKdkOAAAA; expires=Sun, 19-Dec-2021 07:07:46 GMT; path=/; secure; HttpOnly; SameSite=None', + 'Set-Cookie', + 'x-ms-gateway-slice=estsfd; path=/; secure; samesite=none; httponly', + 'Set-Cookie', + 'stsservicecookie=estsfd; path=/; secure; samesite=none; httponly', + 'Date', + 'Fri, 19 Nov 2021 07:07:45 GMT', + 'Content-Length', + '1351' +]); + +nock('https://management.azure.com:443', {"encodedQueryParams":true}) + .get('/subscriptions/azure_subscription_id/resourceGroups/myjstest/providers/Microsoft.Batch/batchAccounts/myaccountxxx/privateLinkResources') + .query(true) + .reply(200, ["1f8b0800000000000400edbd07601c499625262f6dca7b7f4af54ad7e074a10880601324d8904010ecc188cde692ec1d69472329ab2a81ca6556655d661640cced9dbcf7de7befbdf7de7befbdf7ba3b9d4e27f7dfff3f5c6664016cf6ce4adac99e2180aac81f3f7e7c1f3f227ef1479759b9ce3f7af4bdefff","92ff0742ea40440c000000"], [ + 'Cache-Control', + 'no-cache', + 'Pragma', + 'no-cache', + 'Transfer-Encoding', + 'chunked', + 'Content-Type', + 'application/json; charset=utf-8', + 'Content-Encoding', + 'gzip', + 'Expires', + '-1', + 'Vary', + 'Accept-Encoding', + 'x-ms-ratelimit-remaining-subscription-reads', + '11973', + 'x-ms-request-id', + '26b755f0-18ac-413c-ad33-f95cd6ced76d', + 'Strict-Transport-Security', + 'max-age=31536000; includeSubDomains', + 'X-Content-Type-Options', + 'nosniff', + 'Server', + 'Microsoft-HTTPAPI/2.0', + 'x-ms-correlation-request-id', + 'd53265db-2729-401d-800a-1ebfbe295d75', + 'x-ms-routing-request-id', + 'KOREASOUTH:20211119T070746Z:d53265db-2729-401d-800a-1ebfbe295d75', + 'Date', + 'Fri, 19 Nov 2021 07:07:46 GMT' +]); diff --git a/sdk/batch/arm-batch/review/arm-batch.api.md b/sdk/batch/arm-batch/review/arm-batch.api.md new file mode 100644 index 000000000000..5ee66bd55fb7 --- /dev/null +++ b/sdk/batch/arm-batch/review/arm-batch.api.md @@ -0,0 +1,1459 @@ +## API Report File for "@azure/arm-batch" + +> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). + +```ts + +import * as coreAuth from '@azure/core-auth'; +import * as coreClient from '@azure/core-client'; +import { PagedAsyncIterableIterator } from '@azure/core-paging'; +import { PollerLike } from '@azure/core-lro'; +import { PollOperationState } from '@azure/core-lro'; + +// @public +export type AccountKeyType = "Primary" | "Secondary"; + +// @public +export interface ActivateApplicationPackageParameters { + format: string; +} + +// @public +export type AllocationState = "Steady" | "Resizing" | "Stopping"; + +// @public +export type Application = ProxyResource & { + displayName?: string; + allowUpdates?: boolean; + defaultVersion?: string; +}; + +// @public +export interface ApplicationCreateOptionalParams extends coreClient.OperationOptions { + parameters?: Application; +} + +// @public +export type ApplicationCreateResponse = Application; + +// @public +export interface ApplicationDeleteOptionalParams extends coreClient.OperationOptions { +} + +// @public +export interface ApplicationGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type ApplicationGetResponse = Application; + +// @public +export interface ApplicationListNextOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type ApplicationListNextResponse = ListApplicationsResult; + +// @public +export interface ApplicationListOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type ApplicationListResponse = ListApplicationsResult; + +// @public +export interface ApplicationOperations { + create(resourceGroupName: string, accountName: string, applicationName: string, options?: ApplicationCreateOptionalParams): Promise; + delete(resourceGroupName: string, accountName: string, applicationName: string, options?: ApplicationDeleteOptionalParams): Promise; + get(resourceGroupName: string, accountName: string, applicationName: string, options?: ApplicationGetOptionalParams): Promise; + list(resourceGroupName: string, accountName: string, options?: ApplicationListOptionalParams): PagedAsyncIterableIterator; + update(resourceGroupName: string, accountName: string, applicationName: string, parameters: Application, options?: ApplicationUpdateOptionalParams): Promise; +} + +// @public +export type ApplicationPackage = ProxyResource & { + readonly state?: PackageState; + readonly format?: string; + readonly storageUrl?: string; + readonly storageUrlExpiry?: Date; + readonly lastActivationTime?: Date; +}; + +// @public +export interface ApplicationPackageActivateOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type ApplicationPackageActivateResponse = ApplicationPackage; + +// @public +export interface ApplicationPackageCreateOptionalParams extends coreClient.OperationOptions { + parameters?: ApplicationPackage; +} + +// @public +export type ApplicationPackageCreateResponse = ApplicationPackage; + +// @public +export interface ApplicationPackageDeleteOptionalParams extends coreClient.OperationOptions { +} + +// @public +export interface ApplicationPackageGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type ApplicationPackageGetResponse = ApplicationPackage; + +// @public +export interface ApplicationPackageListNextOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type ApplicationPackageListNextResponse = ListApplicationPackagesResult; + +// @public +export interface ApplicationPackageListOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type ApplicationPackageListResponse = ListApplicationPackagesResult; + +// @public +export interface ApplicationPackageOperations { + activate(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, parameters: ActivateApplicationPackageParameters, options?: ApplicationPackageActivateOptionalParams): Promise; + create(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: ApplicationPackageCreateOptionalParams): Promise; + delete(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: ApplicationPackageDeleteOptionalParams): Promise; + get(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: ApplicationPackageGetOptionalParams): Promise; + list(resourceGroupName: string, accountName: string, applicationName: string, options?: ApplicationPackageListOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface ApplicationPackageReference { + id: string; + version?: string; +} + +// @public +export interface ApplicationUpdateOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type ApplicationUpdateResponse = Application; + +// @public +export type AuthenticationMode = "SharedKey" | "AAD" | "TaskAuthenticationToken"; + +// @public +export interface AutoScaleRun { + error?: AutoScaleRunError; + evaluationTime: Date; + results?: string; +} + +// @public +export interface AutoScaleRunError { + code: string; + details?: AutoScaleRunError[]; + message: string; +} + +// @public +export interface AutoScaleSettings { + evaluationInterval?: string; + formula: string; +} + +// @public +export type AutoStorageAuthenticationMode = "StorageKeys" | "BatchAccountManagedIdentity"; + +// @public +export interface AutoStorageBaseProperties { + authenticationMode?: AutoStorageAuthenticationMode; + nodeIdentityReference?: ComputeNodeIdentityReference; + storageAccountId: string; +} + +// @public +export type AutoStorageProperties = AutoStorageBaseProperties & { + lastKeySync: Date; +}; + +// @public +export type AutoUserScope = "Task" | "Pool"; + +// @public +export interface AutoUserSpecification { + elevationLevel?: ElevationLevel; + scope?: AutoUserScope; +} + +// @public +export interface AzureBlobFileSystemConfiguration { + accountKey?: string; + accountName: string; + blobfuseOptions?: string; + containerName: string; + identityReference?: ComputeNodeIdentityReference; + relativeMountPath: string; + sasKey?: string; +} + +// @public +export interface AzureFileShareConfiguration { + accountKey: string; + accountName: string; + azureFileUrl: string; + mountOptions?: string; + relativeMountPath: string; +} + +// @public +export type BatchAccount = Resource & { + identity?: BatchAccountIdentity; + readonly accountEndpoint?: string; + readonly provisioningState?: ProvisioningState; + readonly poolAllocationMode?: PoolAllocationMode; + readonly keyVaultReference?: KeyVaultReference; + readonly publicNetworkAccess?: PublicNetworkAccessType; + readonly privateEndpointConnections?: PrivateEndpointConnection[]; + readonly autoStorage?: AutoStorageProperties; + readonly encryption?: EncryptionProperties; + readonly dedicatedCoreQuota?: number; + readonly lowPriorityCoreQuota?: number; + readonly dedicatedCoreQuotaPerVMFamily?: VirtualMachineFamilyCoreQuota[]; + readonly dedicatedCoreQuotaPerVMFamilyEnforced?: boolean; + readonly poolQuota?: number; + readonly activeJobAndJobScheduleQuota?: number; + readonly allowedAuthenticationModes?: AuthenticationMode[]; +}; + +// @public +export interface BatchAccountCreateHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface BatchAccountCreateOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export interface BatchAccountCreateParameters { + allowedAuthenticationModes?: AuthenticationMode[]; + autoStorage?: AutoStorageBaseProperties; + encryption?: EncryptionProperties; + identity?: BatchAccountIdentity; + keyVaultReference?: KeyVaultReference; + location: string; + poolAllocationMode?: PoolAllocationMode; + publicNetworkAccess?: PublicNetworkAccessType; + tags?: { + [propertyName: string]: string; + }; +} + +// @public +export type BatchAccountCreateResponse = BatchAccount; + +// @public +export interface BatchAccountDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface BatchAccountDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export interface BatchAccountGetKeysOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type BatchAccountGetKeysResponse = BatchAccountKeys; + +// @public +export interface BatchAccountGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type BatchAccountGetResponse = BatchAccount; + +// @public +export interface BatchAccountIdentity { + readonly principalId?: string; + readonly tenantId?: string; + type: ResourceIdentityType; + userAssignedIdentities?: { + [propertyName: string]: UserAssignedIdentities; + }; +} + +// @public +export interface BatchAccountKeys { + readonly accountName?: string; + readonly primary?: string; + readonly secondary?: string; +} + +// @public +export interface BatchAccountListByResourceGroupNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type BatchAccountListByResourceGroupNextResponse = BatchAccountListResult; + +// @public +export interface BatchAccountListByResourceGroupOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type BatchAccountListByResourceGroupResponse = BatchAccountListResult; + +// @public +export interface BatchAccountListNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type BatchAccountListNextResponse = BatchAccountListResult; + +// @public +export interface BatchAccountListOptionalParams extends coreClient.OperationOptions { +} + +// @public +export interface BatchAccountListOutboundNetworkDependenciesEndpointsNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type BatchAccountListOutboundNetworkDependenciesEndpointsNextResponse = OutboundEnvironmentEndpointCollection; + +// @public +export interface BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type BatchAccountListOutboundNetworkDependenciesEndpointsResponse = OutboundEnvironmentEndpointCollection; + +// @public +export type BatchAccountListResponse = BatchAccountListResult; + +// @public +export interface BatchAccountListResult { + nextLink?: string; + value?: BatchAccount[]; +} + +// @public +export interface BatchAccountOperations { + beginCreate(resourceGroupName: string, accountName: string, parameters: BatchAccountCreateParameters, options?: BatchAccountCreateOptionalParams): Promise, BatchAccountCreateResponse>>; + beginCreateAndWait(resourceGroupName: string, accountName: string, parameters: BatchAccountCreateParameters, options?: BatchAccountCreateOptionalParams): Promise; + beginDelete(resourceGroupName: string, accountName: string, options?: BatchAccountDeleteOptionalParams): Promise, void>>; + beginDeleteAndWait(resourceGroupName: string, accountName: string, options?: BatchAccountDeleteOptionalParams): Promise; + get(resourceGroupName: string, accountName: string, options?: BatchAccountGetOptionalParams): Promise; + getKeys(resourceGroupName: string, accountName: string, options?: BatchAccountGetKeysOptionalParams): Promise; + list(options?: BatchAccountListOptionalParams): PagedAsyncIterableIterator; + listByResourceGroup(resourceGroupName: string, options?: BatchAccountListByResourceGroupOptionalParams): PagedAsyncIterableIterator; + listOutboundNetworkDependenciesEndpoints(resourceGroupName: string, accountName: string, options?: BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams): PagedAsyncIterableIterator; + regenerateKey(resourceGroupName: string, accountName: string, parameters: BatchAccountRegenerateKeyParameters, options?: BatchAccountRegenerateKeyOptionalParams): Promise; + synchronizeAutoStorageKeys(resourceGroupName: string, accountName: string, options?: BatchAccountSynchronizeAutoStorageKeysOptionalParams): Promise; + update(resourceGroupName: string, accountName: string, parameters: BatchAccountUpdateParameters, options?: BatchAccountUpdateOptionalParams): Promise; +} + +// @public +export interface BatchAccountRegenerateKeyOptionalParams extends coreClient.OperationOptions { +} + +// @public +export interface BatchAccountRegenerateKeyParameters { + keyName: AccountKeyType; +} + +// @public +export type BatchAccountRegenerateKeyResponse = BatchAccountKeys; + +// @public +export interface BatchAccountSynchronizeAutoStorageKeysOptionalParams extends coreClient.OperationOptions { +} + +// @public +export interface BatchAccountUpdateOptionalParams extends coreClient.OperationOptions { +} + +// @public +export interface BatchAccountUpdateParameters { + allowedAuthenticationModes?: AuthenticationMode[]; + autoStorage?: AutoStorageBaseProperties; + encryption?: EncryptionProperties; + identity?: BatchAccountIdentity; + tags?: { + [propertyName: string]: string; + }; +} + +// @public +export type BatchAccountUpdateResponse = BatchAccount; + +// @public +export interface BatchLocationQuota { + readonly accountQuota?: number; +} + +// @public (undocumented) +export class BatchManagementClient extends BatchManagementClientContext { + constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: BatchManagementClientOptionalParams); + // (undocumented) + applicationOperations: ApplicationOperations; + // (undocumented) + applicationPackageOperations: ApplicationPackageOperations; + // (undocumented) + batchAccountOperations: BatchAccountOperations; + // (undocumented) + certificateOperations: CertificateOperations; + // (undocumented) + location: Location_2; + // (undocumented) + operations: Operations; + // (undocumented) + poolOperations: PoolOperations; + // (undocumented) + privateEndpointConnectionOperations: PrivateEndpointConnectionOperations; + // (undocumented) + privateLinkResourceOperations: PrivateLinkResourceOperations; +} + +// @public (undocumented) +export class BatchManagementClientContext extends coreClient.ServiceClient { + // (undocumented) + $host: string; + constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: BatchManagementClientOptionalParams); + // (undocumented) + apiVersion: string; + // (undocumented) + subscriptionId: string; +} + +// @public +export interface BatchManagementClientOptionalParams extends coreClient.ServiceClientOptions { + $host?: string; + apiVersion?: string; + endpoint?: string; +} + +// @public +export interface BatchPoolIdentity { + type: PoolIdentityType; + userAssignedIdentities?: { + [propertyName: string]: UserAssignedIdentities; + }; +} + +// @public +export type CachingType = "None" | "ReadOnly" | "ReadWrite"; + +// @public +export type Certificate = ProxyResource & { + thumbprintAlgorithm?: string; + thumbprint?: string; + format?: CertificateFormat; + readonly provisioningState?: CertificateProvisioningState; + readonly provisioningStateTransitionTime?: Date; + readonly previousProvisioningState?: CertificateProvisioningState; + readonly previousProvisioningStateTransitionTime?: Date; + readonly publicData?: string; + readonly deleteCertificateError?: DeleteCertificateError; +}; + +// @public +export interface CertificateBaseProperties { + format?: CertificateFormat; + thumbprint?: string; + thumbprintAlgorithm?: string; +} + +// @public +export interface CertificateCancelDeletionHeaders { + eTag?: string; +} + +// @public +export interface CertificateCancelDeletionOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CertificateCancelDeletionResponse = CertificateCancelDeletionHeaders & Certificate; + +// @public +export interface CertificateCreateHeaders { + eTag?: string; +} + +// @public +export interface CertificateCreateOptionalParams extends coreClient.OperationOptions { + ifMatch?: string; + ifNoneMatch?: string; +} + +// @public +export type CertificateCreateOrUpdateParameters = ProxyResource & { + thumbprintAlgorithm?: string; + thumbprint?: string; + format?: CertificateFormat; + data?: string; + password?: string; +}; + +// @public +export type CertificateCreateOrUpdateProperties = CertificateBaseProperties & { + data: string; + password?: string; +}; + +// @public +export type CertificateCreateResponse = CertificateCreateHeaders & Certificate; + +// @public +export interface CertificateDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface CertificateDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type CertificateFormat = "Pfx" | "Cer"; + +// @public +export interface CertificateGetHeaders { + eTag?: string; +} + +// @public +export interface CertificateGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type CertificateGetResponse = CertificateGetHeaders & Certificate; + +// @public +export interface CertificateListByBatchAccountNextOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; + select?: string; +} + +// @public +export type CertificateListByBatchAccountNextResponse = ListCertificatesResult; + +// @public +export interface CertificateListByBatchAccountOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; + select?: string; +} + +// @public +export type CertificateListByBatchAccountResponse = ListCertificatesResult; + +// @public +export interface CertificateOperations { + beginDelete(resourceGroupName: string, accountName: string, certificateName: string, options?: CertificateDeleteOptionalParams): Promise, void>>; + beginDeleteAndWait(resourceGroupName: string, accountName: string, certificateName: string, options?: CertificateDeleteOptionalParams): Promise; + cancelDeletion(resourceGroupName: string, accountName: string, certificateName: string, options?: CertificateCancelDeletionOptionalParams): Promise; + create(resourceGroupName: string, accountName: string, certificateName: string, parameters: CertificateCreateOrUpdateParameters, options?: CertificateCreateOptionalParams): Promise; + get(resourceGroupName: string, accountName: string, certificateName: string, options?: CertificateGetOptionalParams): Promise; + listByBatchAccount(resourceGroupName: string, accountName: string, options?: CertificateListByBatchAccountOptionalParams): PagedAsyncIterableIterator; + update(resourceGroupName: string, accountName: string, certificateName: string, parameters: CertificateCreateOrUpdateParameters, options?: CertificateUpdateOptionalParams): Promise; +} + +// @public +export type CertificateProperties = CertificateBaseProperties & { + readonly provisioningState?: CertificateProvisioningState; + readonly provisioningStateTransitionTime?: Date; + readonly previousProvisioningState?: CertificateProvisioningState; + readonly previousProvisioningStateTransitionTime?: Date; + readonly publicData?: string; + readonly deleteCertificateError?: DeleteCertificateError; +}; + +// @public +export type CertificateProvisioningState = "Succeeded" | "Deleting" | "Failed"; + +// @public +export interface CertificateReference { + id: string; + storeLocation?: CertificateStoreLocation; + storeName?: string; + visibility?: CertificateVisibility[]; +} + +// @public +export type CertificateStoreLocation = "CurrentUser" | "LocalMachine"; + +// @public +export interface CertificateUpdateHeaders { + eTag?: string; +} + +// @public +export interface CertificateUpdateOptionalParams extends coreClient.OperationOptions { + ifMatch?: string; +} + +// @public +export type CertificateUpdateResponse = CertificateUpdateHeaders & Certificate; + +// @public +export type CertificateVisibility = "StartTask" | "Task" | "RemoteUser"; + +// @public +export interface CheckNameAvailabilityParameters { + name: string; + type: "Microsoft.Batch/batchAccounts"; +} + +// @public +export interface CheckNameAvailabilityResult { + readonly message?: string; + readonly nameAvailable?: boolean; + readonly reason?: NameAvailabilityReason; +} + +// @public +export interface CifsMountConfiguration { + mountOptions?: string; + password: string; + relativeMountPath: string; + source: string; + username: string; +} + +// @public +export interface CloudError { + error?: CloudErrorBody; +} + +// @public +export interface CloudErrorBody { + code?: string; + details?: CloudErrorBody[]; + message?: string; + target?: string; +} + +// @public +export interface CloudServiceConfiguration { + osFamily: string; + osVersion?: string; +} + +// @public +export type ComputeNodeDeallocationOption = "Requeue" | "Terminate" | "TaskCompletion" | "RetainedData"; + +// @public +export type ComputeNodeFillType = "Spread" | "Pack"; + +// @public +export interface ComputeNodeIdentityReference { + resourceId?: string; +} + +// @public +export interface ContainerConfiguration { + containerImageNames?: string[]; + containerRegistries?: ContainerRegistry[]; + type: "DockerCompatible"; +} + +// @public +export interface ContainerRegistry { + identityReference?: ComputeNodeIdentityReference; + password?: string; + registryServer?: string; + userName?: string; +} + +// @public +export type ContainerWorkingDirectory = "TaskWorkingDirectory" | "ContainerImageDefault"; + +// @public +export interface DataDisk { + caching?: CachingType; + diskSizeGB: number; + lun: number; + storageAccountType?: StorageAccountType; +} + +// @public +export interface DeleteCertificateError { + code: string; + details?: DeleteCertificateError[]; + message: string; + target?: string; +} + +// @public +export interface DeploymentConfiguration { + cloudServiceConfiguration?: CloudServiceConfiguration; + virtualMachineConfiguration?: VirtualMachineConfiguration; +} + +// @public +export interface DiffDiskSettings { + placement?: "CacheDisk"; +} + +// @public +export interface DiskEncryptionConfiguration { + targets?: DiskEncryptionTarget[]; +} + +// @public +export type DiskEncryptionTarget = "OsDisk" | "TemporaryDisk"; + +// @public +export type ElevationLevel = "NonAdmin" | "Admin"; + +// @public +export interface EncryptionProperties { + keySource?: KeySource; + keyVaultProperties?: KeyVaultProperties; +} + +// @public +export interface EndpointDependency { + readonly description?: string; + readonly domainName?: string; + readonly endpointDetails?: EndpointDetail[]; +} + +// @public +export interface EndpointDetail { + readonly port?: number; +} + +// @public +export interface EnvironmentSetting { + name: string; + value?: string; +} + +// @public +export interface FixedScaleSettings { + nodeDeallocationOption?: ComputeNodeDeallocationOption; + resizeTimeout?: string; + targetDedicatedNodes?: number; + targetLowPriorityNodes?: number; +} + +// @public +export interface ImageReference { + id?: string; + offer?: string; + publisher?: string; + sku?: string; + version?: string; +} + +// @public +export type InboundEndpointProtocol = "TCP" | "UDP"; + +// @public +export interface InboundNatPool { + backendPort: number; + frontendPortRangeEnd: number; + frontendPortRangeStart: number; + name: string; + networkSecurityGroupRules?: NetworkSecurityGroupRule[]; + protocol: InboundEndpointProtocol; +} + +// @public +export type InterNodeCommunicationState = "Enabled" | "Disabled"; + +// @public +export type IPAddressProvisioningType = "BatchManaged" | "UserManaged" | "NoPublicIPAddresses"; + +// @public +export type KeySource = "Microsoft.Batch" | "Microsoft.KeyVault"; + +// @public +export interface KeyVaultProperties { + keyIdentifier?: string; +} + +// @public +export interface KeyVaultReference { + id: string; + url: string; +} + +// @public +export interface LinuxUserConfiguration { + gid?: number; + sshPrivateKey?: string; + uid?: number; +} + +// @public +export interface ListApplicationPackagesResult { + nextLink?: string; + value?: ApplicationPackage[]; +} + +// @public +export interface ListApplicationsResult { + nextLink?: string; + value?: Application[]; +} + +// @public +export interface ListCertificatesResult { + nextLink?: string; + value?: Certificate[]; +} + +// @public +export interface ListPoolsResult { + nextLink?: string; + value?: Pool[]; +} + +// @public +export interface ListPrivateEndpointConnectionsResult { + nextLink?: string; + value?: PrivateEndpointConnection[]; +} + +// @public +export interface ListPrivateLinkResourcesResult { + nextLink?: string; + value?: PrivateLinkResource[]; +} + +// @public +interface Location_2 { + checkNameAvailability(locationName: string, parameters: CheckNameAvailabilityParameters, options?: LocationCheckNameAvailabilityOptionalParams): Promise; + getQuotas(locationName: string, options?: LocationGetQuotasOptionalParams): Promise; + listSupportedCloudServiceSkus(locationName: string, options?: LocationListSupportedCloudServiceSkusOptionalParams): PagedAsyncIterableIterator; + listSupportedVirtualMachineSkus(locationName: string, options?: LocationListSupportedVirtualMachineSkusOptionalParams): PagedAsyncIterableIterator; +} +export { Location_2 as Location } + +// @public +export interface LocationCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type LocationCheckNameAvailabilityResponse = CheckNameAvailabilityResult; + +// @public +export interface LocationGetQuotasOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type LocationGetQuotasResponse = BatchLocationQuota; + +// @public +export interface LocationListSupportedCloudServiceSkusNextOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; +} + +// @public +export type LocationListSupportedCloudServiceSkusNextResponse = SupportedSkusResult; + +// @public +export interface LocationListSupportedCloudServiceSkusOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; +} + +// @public +export type LocationListSupportedCloudServiceSkusResponse = SupportedSkusResult; + +// @public +export interface LocationListSupportedVirtualMachineSkusNextOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; +} + +// @public +export type LocationListSupportedVirtualMachineSkusNextResponse = SupportedSkusResult; + +// @public +export interface LocationListSupportedVirtualMachineSkusOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; +} + +// @public +export type LocationListSupportedVirtualMachineSkusResponse = SupportedSkusResult; + +// @public +export type LoginMode = "Batch" | "Interactive"; + +// @public +export interface MetadataItem { + name: string; + value: string; +} + +// @public +export interface MountConfiguration { + azureBlobFileSystemConfiguration?: AzureBlobFileSystemConfiguration; + azureFileShareConfiguration?: AzureFileShareConfiguration; + cifsMountConfiguration?: CifsMountConfiguration; + nfsMountConfiguration?: NFSMountConfiguration; +} + +// @public +export type NameAvailabilityReason = "Invalid" | "AlreadyExists"; + +// @public +export interface NetworkConfiguration { + endpointConfiguration?: PoolEndpointConfiguration; + publicIPAddressConfiguration?: PublicIPAddressConfiguration; + subnetId?: string; +} + +// @public +export interface NetworkSecurityGroupRule { + access: NetworkSecurityGroupRuleAccess; + priority: number; + sourceAddressPrefix: string; + sourcePortRanges?: string[]; +} + +// @public +export type NetworkSecurityGroupRuleAccess = "Allow" | "Deny"; + +// @public +export interface NFSMountConfiguration { + mountOptions?: string; + relativeMountPath: string; + source: string; +} + +// @public +export interface NodePlacementConfiguration { + policy?: NodePlacementPolicyType; +} + +// @public +export type NodePlacementPolicyType = "Regional" | "Zonal"; + +// @public +export interface Operation { + display?: OperationDisplay; + isDataAction?: boolean; + name?: string; + origin?: string; + properties?: Record; +} + +// @public +export interface OperationDisplay { + description?: string; + operation?: string; + provider?: string; + resource?: string; +} + +// @public +export interface OperationListResult { + nextLink?: string; + value?: Operation[]; +} + +// @public +export interface Operations { + list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface OperationsListNextOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type OperationsListNextResponse = OperationListResult; + +// @public +export interface OperationsListOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type OperationsListResponse = OperationListResult; + +// @public +export interface OSDisk { + ephemeralOSDiskSettings?: DiffDiskSettings; +} + +// @public +export interface OutboundEnvironmentEndpoint { + readonly category?: string; + readonly endpoints?: EndpointDependency[]; +} + +// @public +export interface OutboundEnvironmentEndpointCollection { + nextLink?: string; + readonly value?: OutboundEnvironmentEndpoint[]; +} + +// @public +export type PackageState = "Pending" | "Active"; + +// @public +export type Pool = ProxyResource & { + identity?: BatchPoolIdentity; + displayName?: string; + readonly lastModified?: Date; + readonly creationTime?: Date; + readonly provisioningState?: PoolProvisioningState; + readonly provisioningStateTransitionTime?: Date; + readonly allocationState?: AllocationState; + readonly allocationStateTransitionTime?: Date; + vmSize?: string; + deploymentConfiguration?: DeploymentConfiguration; + readonly currentDedicatedNodes?: number; + readonly currentLowPriorityNodes?: number; + scaleSettings?: ScaleSettings; + readonly autoScaleRun?: AutoScaleRun; + interNodeCommunication?: InterNodeCommunicationState; + networkConfiguration?: NetworkConfiguration; + taskSlotsPerNode?: number; + taskSchedulingPolicy?: TaskSchedulingPolicy; + userAccounts?: UserAccount[]; + metadata?: MetadataItem[]; + startTask?: StartTask; + certificates?: CertificateReference[]; + applicationPackages?: ApplicationPackageReference[]; + applicationLicenses?: string[]; + readonly resizeOperationStatus?: ResizeOperationStatus; + mountConfiguration?: MountConfiguration[]; +}; + +// @public +export type PoolAllocationMode = "BatchService" | "UserSubscription"; + +// @public +export interface PoolCreateHeaders { + eTag?: string; +} + +// @public +export interface PoolCreateOptionalParams extends coreClient.OperationOptions { + ifMatch?: string; + ifNoneMatch?: string; +} + +// @public +export type PoolCreateResponse = PoolCreateHeaders & Pool; + +// @public +export interface PoolDeleteHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface PoolDeleteOptionalParams extends coreClient.OperationOptions { + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export interface PoolDisableAutoScaleHeaders { + eTag?: string; +} + +// @public +export interface PoolDisableAutoScaleOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type PoolDisableAutoScaleResponse = PoolDisableAutoScaleHeaders & Pool; + +// @public +export interface PoolEndpointConfiguration { + inboundNatPools: InboundNatPool[]; +} + +// @public +export interface PoolGetHeaders { + eTag?: string; +} + +// @public +export interface PoolGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type PoolGetResponse = PoolGetHeaders & Pool; + +// @public +export type PoolIdentityType = "UserAssigned" | "None"; + +// @public +export interface PoolListByBatchAccountNextOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; + select?: string; +} + +// @public +export type PoolListByBatchAccountNextResponse = ListPoolsResult; + +// @public +export interface PoolListByBatchAccountOptionalParams extends coreClient.OperationOptions { + filter?: string; + maxresults?: number; + select?: string; +} + +// @public +export type PoolListByBatchAccountResponse = ListPoolsResult; + +// @public +export interface PoolOperations { + beginDelete(resourceGroupName: string, accountName: string, poolName: string, options?: PoolDeleteOptionalParams): Promise, void>>; + beginDeleteAndWait(resourceGroupName: string, accountName: string, poolName: string, options?: PoolDeleteOptionalParams): Promise; + create(resourceGroupName: string, accountName: string, poolName: string, parameters: Pool, options?: PoolCreateOptionalParams): Promise; + disableAutoScale(resourceGroupName: string, accountName: string, poolName: string, options?: PoolDisableAutoScaleOptionalParams): Promise; + get(resourceGroupName: string, accountName: string, poolName: string, options?: PoolGetOptionalParams): Promise; + listByBatchAccount(resourceGroupName: string, accountName: string, options?: PoolListByBatchAccountOptionalParams): PagedAsyncIterableIterator; + stopResize(resourceGroupName: string, accountName: string, poolName: string, options?: PoolStopResizeOptionalParams): Promise; + update(resourceGroupName: string, accountName: string, poolName: string, parameters: Pool, options?: PoolUpdateOptionalParams): Promise; +} + +// @public +export type PoolProvisioningState = "Succeeded" | "Deleting"; + +// @public +export interface PoolStopResizeHeaders { + eTag?: string; +} + +// @public +export interface PoolStopResizeOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type PoolStopResizeResponse = PoolStopResizeHeaders & Pool; + +// @public +export interface PoolUpdateHeaders { + eTag?: string; +} + +// @public +export interface PoolUpdateOptionalParams extends coreClient.OperationOptions { + ifMatch?: string; +} + +// @public +export type PoolUpdateResponse = PoolUpdateHeaders & Pool; + +// @public +export interface PrivateEndpoint { + readonly id?: string; +} + +// @public +export type PrivateEndpointConnection = ProxyResource & { + readonly provisioningState?: PrivateEndpointConnectionProvisioningState; + privateEndpoint?: PrivateEndpoint; + privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState; +}; + +// @public +export interface PrivateEndpointConnectionGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type PrivateEndpointConnectionGetResponse = PrivateEndpointConnection; + +// @public +export interface PrivateEndpointConnectionListByBatchAccountNextOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type PrivateEndpointConnectionListByBatchAccountNextResponse = ListPrivateEndpointConnectionsResult; + +// @public +export interface PrivateEndpointConnectionListByBatchAccountOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type PrivateEndpointConnectionListByBatchAccountResponse = ListPrivateEndpointConnectionsResult; + +// @public +export interface PrivateEndpointConnectionOperations { + beginUpdate(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, parameters: PrivateEndpointConnection, options?: PrivateEndpointConnectionUpdateOptionalParams): Promise, PrivateEndpointConnectionUpdateResponse>>; + beginUpdateAndWait(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, parameters: PrivateEndpointConnection, options?: PrivateEndpointConnectionUpdateOptionalParams): Promise; + get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: PrivateEndpointConnectionGetOptionalParams): Promise; + listByBatchAccount(resourceGroupName: string, accountName: string, options?: PrivateEndpointConnectionListByBatchAccountOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export type PrivateEndpointConnectionProvisioningState = "Succeeded" | "Updating" | "Failed"; + +// @public +export interface PrivateEndpointConnectionUpdateHeaders { + location?: string; + retryAfter?: number; +} + +// @public +export interface PrivateEndpointConnectionUpdateOptionalParams extends coreClient.OperationOptions { + ifMatch?: string; + resumeFrom?: string; + updateIntervalInMs?: number; +} + +// @public +export type PrivateEndpointConnectionUpdateResponse = PrivateEndpointConnection; + +// @public +export type PrivateLinkResource = ProxyResource & { + readonly groupId?: string; + readonly requiredMembers?: string[]; + readonly requiredZoneNames?: string[]; +}; + +// @public +export interface PrivateLinkResourceGetOptionalParams extends coreClient.OperationOptions { +} + +// @public +export type PrivateLinkResourceGetResponse = PrivateLinkResource; + +// @public +export interface PrivateLinkResourceListByBatchAccountNextOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type PrivateLinkResourceListByBatchAccountNextResponse = ListPrivateLinkResourcesResult; + +// @public +export interface PrivateLinkResourceListByBatchAccountOptionalParams extends coreClient.OperationOptions { + maxresults?: number; +} + +// @public +export type PrivateLinkResourceListByBatchAccountResponse = ListPrivateLinkResourcesResult; + +// @public +export interface PrivateLinkResourceOperations { + get(resourceGroupName: string, accountName: string, privateLinkResourceName: string, options?: PrivateLinkResourceGetOptionalParams): Promise; + listByBatchAccount(resourceGroupName: string, accountName: string, options?: PrivateLinkResourceListByBatchAccountOptionalParams): PagedAsyncIterableIterator; +} + +// @public +export interface PrivateLinkServiceConnectionState { + readonly actionRequired?: string; + description?: string; + status: PrivateLinkServiceConnectionStatus; +} + +// @public +export type PrivateLinkServiceConnectionStatus = "Approved" | "Pending" | "Rejected" | "Disconnected"; + +// @public +export type ProvisioningState = "Invalid" | "Creating" | "Deleting" | "Succeeded" | "Failed" | "Cancelled"; + +// @public +export interface ProxyResource { + readonly etag?: string; + readonly id?: string; + readonly name?: string; + readonly type?: string; +} + +// @public +export interface PublicIPAddressConfiguration { + ipAddressIds?: string[]; + provision?: IPAddressProvisioningType; +} + +// @public +export type PublicNetworkAccessType = "Enabled" | "Disabled"; + +// @public +export interface ResizeError { + code: string; + details?: ResizeError[]; + message: string; +} + +// @public +export interface ResizeOperationStatus { + errors?: ResizeError[]; + nodeDeallocationOption?: ComputeNodeDeallocationOption; + resizeTimeout?: string; + startTime?: Date; + targetDedicatedNodes?: number; + targetLowPriorityNodes?: number; +} + +// @public +export interface Resource { + readonly id?: string; + readonly location?: string; + readonly name?: string; + readonly tags?: { + [propertyName: string]: string; + }; + readonly type?: string; +} + +// @public +export interface ResourceFile { + autoStorageContainerName?: string; + blobPrefix?: string; + fileMode?: string; + filePath?: string; + httpUrl?: string; + identityReference?: ComputeNodeIdentityReference; + storageContainerUrl?: string; +} + +// @public +export type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "None"; + +// @public +export interface ScaleSettings { + autoScale?: AutoScaleSettings; + fixedScale?: FixedScaleSettings; +} + +// @public +export interface SkuCapability { + readonly name?: string; + readonly value?: string; +} + +// @public +export interface StartTask { + commandLine?: string; + containerSettings?: TaskContainerSettings; + environmentSettings?: EnvironmentSetting[]; + maxTaskRetryCount?: number; + resourceFiles?: ResourceFile[]; + userIdentity?: UserIdentity; + waitForSuccess?: boolean; +} + +// @public +export type StorageAccountType = "Standard_LRS" | "Premium_LRS"; + +// @public +export interface SupportedSku { + readonly capabilities?: SkuCapability[]; + readonly familyName?: string; + readonly name?: string; +} + +// @public +export interface SupportedSkusResult { + readonly nextLink?: string; + value: SupportedSku[]; +} + +// @public +export interface TaskContainerSettings { + containerRunOptions?: string; + imageName: string; + registry?: ContainerRegistry; + workingDirectory?: ContainerWorkingDirectory; +} + +// @public +export interface TaskSchedulingPolicy { + nodeFillType: ComputeNodeFillType; +} + +// @public +export interface UserAccount { + elevationLevel?: ElevationLevel; + linuxUserConfiguration?: LinuxUserConfiguration; + name: string; + password: string; + windowsUserConfiguration?: WindowsUserConfiguration; +} + +// @public +export interface UserAssignedIdentities { + readonly clientId?: string; + readonly principalId?: string; +} + +// @public +export interface UserIdentity { + autoUser?: AutoUserSpecification; + userName?: string; +} + +// @public +export interface VirtualMachineConfiguration { + containerConfiguration?: ContainerConfiguration; + dataDisks?: DataDisk[]; + diskEncryptionConfiguration?: DiskEncryptionConfiguration; + extensions?: VMExtension[]; + imageReference: ImageReference; + licenseType?: string; + nodeAgentSkuId: string; + nodePlacementConfiguration?: NodePlacementConfiguration; + osDisk?: OSDisk; + windowsConfiguration?: WindowsConfiguration; +} + +// @public +export interface VirtualMachineFamilyCoreQuota { + readonly coreQuota?: number; + readonly name?: string; +} + +// @public +export interface VMExtension { + autoUpgradeMinorVersion?: boolean; + name: string; + protectedSettings?: Record; + provisionAfterExtensions?: string[]; + publisher: string; + settings?: Record; + type: string; + typeHandlerVersion?: string; +} + +// @public +export interface WindowsConfiguration { + enableAutomaticUpdates?: boolean; +} + +// @public +export interface WindowsUserConfiguration { + loginMode?: LoginMode; +} + +// (No @packageDocumentation comment for this package) + +``` diff --git a/sdk/batch/arm-batch/rollup.config.js b/sdk/batch/arm-batch/rollup.config.js index 8d1bc25e71ac..9be1955eb7f1 100644 --- a/sdk/batch/arm-batch/rollup.config.js +++ b/sdk/batch/arm-batch/rollup.config.js @@ -1,37 +1,188 @@ -import rollup from "rollup"; -import nodeResolve from "rollup-plugin-node-resolve"; +/* + * 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 nodeResolve from "@rollup/plugin-node-resolve"; +import cjs from "@rollup/plugin-commonjs"; import sourcemaps from "rollup-plugin-sourcemaps"; +import multiEntry from "@rollup/plugin-multi-entry"; +import json from "@rollup/plugin-json"; + +import nodeBuiltins from "builtin-modules"; + +/** + * Gets the proper configuration needed for rollup's commonJS plugin for @opentelemetry/api. + * + * NOTE: this manual configuration is only needed because OpenTelemetry uses an + * __exportStar downleveled helper function to declare its exports which confuses + * rollup's automatic discovery mechanism. + * + * @returns an object reference that can be `...`'d into your cjs() configuration. + */ +export function openTelemetryCommonJs() { + const namedExports = {}; + + for (const key of [ + "@opentelemetry/api", + "@azure/core-tracing/node_modules/@opentelemetry/api" + ]) { + namedExports[key] = [ + "SpanKind", + "TraceFlags", + "getSpan", + "setSpan", + "SpanStatusCode", + "getSpanContext", + "setSpanContext" + ]; + } + + const releasedOpenTelemetryVersions = ["0.10.2", "1.0.0-rc.0"]; + + for (const version of releasedOpenTelemetryVersions) { + namedExports[ + // working around a limitation in the rollup common.js plugin - it's not able to resolve these modules so the named exports listed above will not get applied. We have to drill down to the actual path. + `../../../common/temp/node_modules/.pnpm/@opentelemetry/api@${version}/node_modules/@opentelemetry/api/build/src/index.js` + ] = [ + "SpanKind", + "TraceFlags", + "getSpan", + "setSpan", + "StatusCode", + "CanonicalCode", + "getSpanContext", + "setSpanContext" + ]; + } + + return namedExports; +} + +// #region Warning Handler /** - * @type {rollup.RollupFileOptions} + * A function that can determine whether a rollupwarning should be ignored. If + * the function returns `true`, then the warning will not be displayed. */ -const config = { - input: "./esm/batchManagementClient.js", - external: [ - "@azure/ms-rest-js", - "@azure/ms-rest-azure-js" - ], - output: { - file: "./dist/arm-batch.js", - format: "umd", - name: "Azure.ArmBatch", - sourcemap: true, - globals: { - "@azure/ms-rest-js": "msRest", - "@azure/ms-rest-azure-js": "msRestAzure" + +function ignoreNiseSinonEvalWarnings(warning) { + return ( + warning.code === "EVAL" && + warning.id && + (warning.id.includes("node_modules/nise") || + warning.id.includes("node_modules/sinon")) === true + ); +} + +function ignoreChaiCircularDependencyWarnings(warning) { + return ( + warning.code === "CIRCULAR_DEPENDENCY" && + warning.importer && warning.importer.includes("node_modules/chai") === true + ); +} + +const warningInhibitors = [ + ignoreChaiCircularDependencyWarnings, + ignoreNiseSinonEvalWarnings +]; + +/** + * Construct a warning handler for the shared rollup configuration + * that ignores certain warnings that are not relevant to testing. + */ +function makeOnWarnForTesting() { + return (warning, warn) => { + // If every inhibitor returns false (i.e. no inhibitors), then show the warning + if (warningInhibitors.every((inhib) => !inhib(warning))) { + warn(warning); + } + }; +} + +// #endregion + +function makeBrowserTestConfig() { + const config = { + input: { + include: ["dist-esm/test/**/*.spec.js"], + exclude: ["dist-esm/test/**/node/**"] }, - banner: `/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */` - }, - plugins: [ - nodeResolve({ mainFields: ['module', 'main'] }), - sourcemaps() - ] + output: { + file: `dist-test/index.browser.js`, + format: "umd", + sourcemap: true + }, + preserveSymlinks: false, + plugins: [ + multiEntry({ exports: false }), + nodeResolve({ + mainFields: ["module", "browser"] + }), + cjs({ + namedExports: { + // Chai's strange internal architecture makes it impossible to statically + // analyze its exports. + chai: [ + "version", + "use", + "util", + "config", + "expect", + "should", + "assert" + ], + ...openTelemetryCommonJs() + } + }), + json(), + sourcemaps() + //viz({ filename: "dist-test/browser-stats.html", sourcemap: true }) + ], + onwarn: makeOnWarnForTesting(), + // Disable tree-shaking of test code. In rollup-plugin-node-resolve@5.0.0, + // rollup started respecting the "sideEffects" field in package.json. Since + // our package.json sets "sideEffects=false", this also applies to test + // code, which causes all tests to be removed by tree-shaking. + treeshake: false + }; + + return config; +} + +const defaultConfigurationOptions = { + disableBrowserBundle: false }; -export default config; +export function makeConfig(pkg, options) { + options = { + ...defaultConfigurationOptions, + ...(options || {}) + }; + + const baseConfig = { + // Use the package's module field if it has one + input: pkg["module"] || "dist-esm/src/index.js", + external: [ + ...nodeBuiltins, + ...Object.keys(pkg.dependencies), + ...Object.keys(pkg.devDependencies) + ], + output: { file: "dist/index.js", format: "cjs", sourcemap: true }, + preserveSymlinks: false, + plugins: [sourcemaps(), nodeResolve(), cjs()] + }; + + const config = [baseConfig]; + + if (!options.disableBrowserBundle) { + config.push(makeBrowserTestConfig()); + } + + return config; +} + +export default makeConfig(require("./package.json")); diff --git a/sdk/batch/arm-batch/src/batchManagementClient.ts b/sdk/batch/arm-batch/src/batchManagementClient.ts index f59a410fc6ff..d32bd62c351a 100644 --- a/sdk/batch/arm-batch/src/batchManagementClient.ts +++ b/sdk/batch/arm-batch/src/batchManagementClient.ts @@ -1,65 +1,75 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import { TokenCredential } from "@azure/core-auth"; -import * as Models from "./models"; -import * as Mappers from "./models/mappers"; -import * as operations from "./operations"; +import * as coreAuth from "@azure/core-auth"; +import { + BatchAccountOperationsImpl, + ApplicationPackageOperationsImpl, + ApplicationOperationsImpl, + LocationImpl, + OperationsImpl, + CertificateOperationsImpl, + PrivateLinkResourceOperationsImpl, + PrivateEndpointConnectionOperationsImpl, + PoolOperationsImpl +} from "./operations"; +import { + BatchAccountOperations, + ApplicationPackageOperations, + ApplicationOperations, + Location, + Operations, + CertificateOperations, + PrivateLinkResourceOperations, + PrivateEndpointConnectionOperations, + PoolOperations +} from "./operationsInterfaces"; import { BatchManagementClientContext } from "./batchManagementClientContext"; +import { BatchManagementClientOptionalParams } from "./models"; - -class BatchManagementClient extends BatchManagementClientContext { - // Operation groups - batchAccount: operations.BatchAccountOperations; - applicationPackage: operations.ApplicationPackageOperations; - application: operations.ApplicationOperations; - location: operations.Location; - operations: operations.Operations; - certificate: operations.CertificateOperations; - privateLinkResource: operations.PrivateLinkResourceOperations; - privateEndpointConnection: operations.PrivateEndpointConnectionOperations; - pool: operations.PoolOperations; - +export class BatchManagementClient extends BatchManagementClientContext { /** * Initializes a new instance of the BatchManagementClient class. - * @param credentials Credentials needed for the client to connect to Azure. Credentials - * implementing the TokenCredential interface from the @azure/identity package are recommended. For - * more information about these credentials, see - * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the - * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and - * @azure/ms-rest-browserauth are also supported. + * @param credentials Subscription credentials which uniquely identify client subscription. * @param subscriptionId The Azure subscription ID. This is a GUID-formatted string (e.g. - * 00000000-0000-0000-0000-000000000000) - * @param [options] The parameter options + * 00000000-0000-0000-0000-000000000000) + * @param options The parameter options */ - constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.BatchManagementClientOptions) { + constructor( + credentials: coreAuth.TokenCredential, + subscriptionId: string, + options?: BatchManagementClientOptionalParams + ) { super(credentials, subscriptionId, options); - this.batchAccount = new operations.BatchAccountOperations(this); - this.applicationPackage = new operations.ApplicationPackageOperations(this); - this.application = new operations.ApplicationOperations(this); - this.location = new operations.Location(this); - this.operations = new operations.Operations(this); - this.certificate = new operations.CertificateOperations(this); - this.privateLinkResource = new operations.PrivateLinkResourceOperations(this); - this.privateEndpointConnection = new operations.PrivateEndpointConnectionOperations(this); - this.pool = new operations.PoolOperations(this); + this.batchAccountOperations = new BatchAccountOperationsImpl(this); + this.applicationPackageOperations = new ApplicationPackageOperationsImpl( + this + ); + this.applicationOperations = new ApplicationOperationsImpl(this); + this.location = new LocationImpl(this); + this.operations = new OperationsImpl(this); + this.certificateOperations = new CertificateOperationsImpl(this); + this.privateLinkResourceOperations = new PrivateLinkResourceOperationsImpl( + this + ); + this.privateEndpointConnectionOperations = new PrivateEndpointConnectionOperationsImpl( + this + ); + this.poolOperations = new PoolOperationsImpl(this); } -} -// Operation Specifications - -export { - BatchManagementClient, - BatchManagementClientContext, - Models as BatchManagementModels, - Mappers as BatchManagementMappers -}; -export * from "./operations"; + batchAccountOperations: BatchAccountOperations; + applicationPackageOperations: ApplicationPackageOperations; + applicationOperations: ApplicationOperations; + location: Location; + operations: Operations; + certificateOperations: CertificateOperations; + privateLinkResourceOperations: PrivateLinkResourceOperations; + privateEndpointConnectionOperations: PrivateEndpointConnectionOperations; + poolOperations: PoolOperations; +} diff --git a/sdk/batch/arm-batch/src/batchManagementClientContext.ts b/sdk/batch/arm-batch/src/batchManagementClientContext.ts index c24d567fca56..ebd57f042335 100644 --- a/sdk/batch/arm-batch/src/batchManagementClientContext.ts +++ b/sdk/batch/arm-batch/src/batchManagementClientContext.ts @@ -1,69 +1,71 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as Models from "./models"; -import * as msRest from "@azure/ms-rest-js"; -import { TokenCredential } from "@azure/core-auth"; -import * as msRestAzure from "@azure/ms-rest-azure-js"; +import * as coreClient from "@azure/core-client"; +import * as coreAuth from "@azure/core-auth"; +import { BatchManagementClientOptionalParams } from "./models"; -const packageName = "@azure/arm-batch"; -const packageVersion = "5.1.0"; - -export class BatchManagementClientContext extends msRestAzure.AzureServiceClient { - credentials: msRest.ServiceClientCredentials | TokenCredential; +export class BatchManagementClientContext extends coreClient.ServiceClient { + $host: string; + apiVersion: string; subscriptionId: string; - apiVersion?: string; /** - * Initializes a new instance of the BatchManagementClient class. - * @param credentials Credentials needed for the client to connect to Azure. Credentials - * implementing the TokenCredential interface from the @azure/identity package are recommended. For - * more information about these credentials, see - * {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the - * ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and - * @azure/ms-rest-browserauth are also supported. + * Initializes a new instance of the BatchManagementClientContext class. + * @param credentials Subscription credentials which uniquely identify client subscription. * @param subscriptionId The Azure subscription ID. This is a GUID-formatted string (e.g. - * 00000000-0000-0000-0000-000000000000) - * @param [options] The parameter options + * 00000000-0000-0000-0000-000000000000) + * @param options The parameter options */ - constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.BatchManagementClientOptions) { - if (credentials == undefined) { - throw new Error('\'credentials\' cannot be null.'); + constructor( + credentials: coreAuth.TokenCredential, + subscriptionId: string, + options?: BatchManagementClientOptionalParams + ) { + if (credentials === undefined) { + throw new Error("'credentials' cannot be null"); } - if (subscriptionId == undefined) { - throw new Error('\'subscriptionId\' cannot be null.'); + if (subscriptionId === undefined) { + throw new Error("'subscriptionId' cannot be null"); } + // Initializing default values for options if (!options) { options = {}; } - if(!options.userAgent) { - const defaultUserAgent = msRestAzure.getDefaultUserAgentValue(); - options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`; - } + const defaults: BatchManagementClientOptionalParams = { + requestContentType: "application/json; charset=utf-8", + credential: credentials + }; - super(credentials, options); + const packageDetails = `azsdk-js-arm-batch/7.0.0-beta.1`; + const userAgentPrefix = + options.userAgentOptions && options.userAgentOptions.userAgentPrefix + ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` + : `${packageDetails}`; - this.apiVersion = '2020-09-01'; - this.acceptLanguage = 'en-US'; - this.longRunningOperationRetryTimeout = 30; - this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com"; - this.requestContentType = "application/json; charset=utf-8"; - this.credentials = credentials; + if (!options.credentialScopes) { + options.credentialScopes = ["https://management.azure.com/.default"]; + } + const optionsWithDefaults = { + ...defaults, + ...options, + userAgentOptions: { + userAgentPrefix + }, + baseUri: options.endpoint || "https://management.azure.com" + }; + super(optionsWithDefaults); + // Parameter assignments this.subscriptionId = subscriptionId; - if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) { - this.acceptLanguage = options.acceptLanguage; - } - if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) { - this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout; - } + // Assigning values to Constant parameters + this.$host = options.$host || "https://management.azure.com"; + this.apiVersion = options.apiVersion || "2021-06-01"; } } diff --git a/sdk/batch/arm-batch/src/index.ts b/sdk/batch/arm-batch/src/index.ts new file mode 100644 index 000000000000..c55eb3ddb6ec --- /dev/null +++ b/sdk/batch/arm-batch/src/index.ts @@ -0,0 +1,13 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +/// +export * from "./models"; +export { BatchManagementClient } from "./batchManagementClient"; +export { BatchManagementClientContext } from "./batchManagementClientContext"; +export * from "./operationsInterfaces"; diff --git a/sdk/batch/arm-batch/src/lroImpl.ts b/sdk/batch/arm-batch/src/lroImpl.ts new file mode 100644 index 000000000000..518d5f053b4e --- /dev/null +++ b/sdk/batch/arm-batch/src/lroImpl.ts @@ -0,0 +1,34 @@ +/* + * 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 { LongRunningOperation, LroResponse } from "@azure/core-lro"; + +export class LroImpl implements LongRunningOperation { + constructor( + private sendOperationFn: (args: any, spec: any) => Promise>, + private args: Record, + private spec: { + readonly requestBody?: unknown; + readonly path?: string; + readonly httpMethod: string; + } & Record, + public requestPath: string = spec.path!, + public requestMethod: string = spec.httpMethod + ) {} + public async sendInitialRequest(): Promise> { + return this.sendOperationFn(this.args, this.spec); + } + public async sendPollRequest(path: string): Promise> { + const { requestBody, ...restSpec } = this.spec; + return this.sendOperationFn(this.args, { + ...restSpec, + path, + httpMethod: "GET" + }); + } +} diff --git a/sdk/batch/arm-batch/src/models/applicationOperationsMappers.ts b/sdk/batch/arm-batch/src/models/applicationOperationsMappers.ts deleted file mode 100644 index 5a3c50ebbc1b..000000000000 --- a/sdk/batch/arm-batch/src/models/applicationOperationsMappers.ts +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - Application, - ApplicationPackage, - ApplicationPackageReference, - AutoScaleRun, - AutoScaleRunError, - AutoScaleSettings, - AutoStorageBaseProperties, - AutoStorageProperties, - AutoUserSpecification, - AzureBlobFileSystemConfiguration, - AzureFileShareConfiguration, - BaseResource, - BatchAccount, - BatchAccountIdentity, - Certificate, - CertificateCreateOrUpdateParameters, - CertificateReference, - CIFSMountConfiguration, - CloudError, - CloudServiceConfiguration, - ContainerConfiguration, - ContainerRegistry, - DataDisk, - DeleteCertificateError, - DeploymentConfiguration, - DiskEncryptionConfiguration, - EncryptionProperties, - EnvironmentSetting, - FixedScaleSettings, - ImageReference, - InboundNatPool, - KeyVaultProperties, - KeyVaultReference, - LinuxUserConfiguration, - ListApplicationsResult, - MetadataItem, - MountConfiguration, - NetworkConfiguration, - NetworkSecurityGroupRule, - NFSMountConfiguration, - Pool, - PoolEndpointConfiguration, - PrivateEndpoint, - PrivateEndpointConnection, - PrivateLinkResource, - PrivateLinkServiceConnectionState, - ProxyResource, - PublicIPAddressConfiguration, - ResizeError, - ResizeOperationStatus, - Resource, - ResourceFile, - ScaleSettings, - StartTask, - TaskContainerSettings, - TaskSchedulingPolicy, - UserAccount, - UserIdentity, - VirtualMachineConfiguration, - VirtualMachineFamilyCoreQuota, - WindowsConfiguration, - WindowsUserConfiguration -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/applicationPackageOperationsMappers.ts b/sdk/batch/arm-batch/src/models/applicationPackageOperationsMappers.ts deleted file mode 100644 index a498cd5da71f..000000000000 --- a/sdk/batch/arm-batch/src/models/applicationPackageOperationsMappers.ts +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - ActivateApplicationPackageParameters, - Application, - ApplicationPackage, - ApplicationPackageReference, - AutoScaleRun, - AutoScaleRunError, - AutoScaleSettings, - AutoStorageBaseProperties, - AutoStorageProperties, - AutoUserSpecification, - AzureBlobFileSystemConfiguration, - AzureFileShareConfiguration, - BaseResource, - BatchAccount, - BatchAccountIdentity, - Certificate, - CertificateCreateOrUpdateParameters, - CertificateReference, - CIFSMountConfiguration, - CloudError, - CloudServiceConfiguration, - ContainerConfiguration, - ContainerRegistry, - DataDisk, - DeleteCertificateError, - DeploymentConfiguration, - DiskEncryptionConfiguration, - EncryptionProperties, - EnvironmentSetting, - FixedScaleSettings, - ImageReference, - InboundNatPool, - KeyVaultProperties, - KeyVaultReference, - LinuxUserConfiguration, - ListApplicationPackagesResult, - MetadataItem, - MountConfiguration, - NetworkConfiguration, - NetworkSecurityGroupRule, - NFSMountConfiguration, - Pool, - PoolEndpointConfiguration, - PrivateEndpoint, - PrivateEndpointConnection, - PrivateLinkResource, - PrivateLinkServiceConnectionState, - ProxyResource, - PublicIPAddressConfiguration, - ResizeError, - ResizeOperationStatus, - Resource, - ResourceFile, - ScaleSettings, - StartTask, - TaskContainerSettings, - TaskSchedulingPolicy, - UserAccount, - UserIdentity, - VirtualMachineConfiguration, - VirtualMachineFamilyCoreQuota, - WindowsConfiguration, - WindowsUserConfiguration -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/batchAccountOperationsMappers.ts b/sdk/batch/arm-batch/src/models/batchAccountOperationsMappers.ts deleted file mode 100644 index 4488249bd7f1..000000000000 --- a/sdk/batch/arm-batch/src/models/batchAccountOperationsMappers.ts +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - Application, - ApplicationPackage, - ApplicationPackageReference, - AutoScaleRun, - AutoScaleRunError, - AutoScaleSettings, - AutoStorageBaseProperties, - AutoStorageProperties, - AutoUserSpecification, - AzureBlobFileSystemConfiguration, - AzureFileShareConfiguration, - BaseResource, - BatchAccount, - BatchAccountCreateHeaders, - BatchAccountCreateParameters, - BatchAccountDeleteHeaders, - BatchAccountIdentity, - BatchAccountKeys, - BatchAccountListResult, - BatchAccountRegenerateKeyParameters, - BatchAccountUpdateParameters, - Certificate, - CertificateCreateOrUpdateParameters, - CertificateReference, - CIFSMountConfiguration, - CloudError, - CloudServiceConfiguration, - ContainerConfiguration, - ContainerRegistry, - DataDisk, - DeleteCertificateError, - DeploymentConfiguration, - DiskEncryptionConfiguration, - EncryptionProperties, - EnvironmentSetting, - FixedScaleSettings, - ImageReference, - InboundNatPool, - KeyVaultProperties, - KeyVaultReference, - LinuxUserConfiguration, - MetadataItem, - MountConfiguration, - NetworkConfiguration, - NetworkSecurityGroupRule, - NFSMountConfiguration, - Pool, - PoolEndpointConfiguration, - PrivateEndpoint, - PrivateEndpointConnection, - PrivateLinkResource, - PrivateLinkServiceConnectionState, - ProxyResource, - PublicIPAddressConfiguration, - ResizeError, - ResizeOperationStatus, - Resource, - ResourceFile, - ScaleSettings, - StartTask, - TaskContainerSettings, - TaskSchedulingPolicy, - UserAccount, - UserIdentity, - VirtualMachineConfiguration, - VirtualMachineFamilyCoreQuota, - WindowsConfiguration, - WindowsUserConfiguration -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/certificateOperationsMappers.ts b/sdk/batch/arm-batch/src/models/certificateOperationsMappers.ts deleted file mode 100644 index 65fd32d7dd8f..000000000000 --- a/sdk/batch/arm-batch/src/models/certificateOperationsMappers.ts +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - Application, - ApplicationPackage, - ApplicationPackageReference, - AutoScaleRun, - AutoScaleRunError, - AutoScaleSettings, - AutoStorageBaseProperties, - AutoStorageProperties, - AutoUserSpecification, - AzureBlobFileSystemConfiguration, - AzureFileShareConfiguration, - BaseResource, - BatchAccount, - BatchAccountIdentity, - Certificate, - CertificateCancelDeletionHeaders, - CertificateCreateHeaders, - CertificateCreateOrUpdateParameters, - CertificateDeleteHeaders, - CertificateGetHeaders, - CertificateReference, - CertificateUpdateHeaders, - CIFSMountConfiguration, - CloudError, - CloudServiceConfiguration, - ContainerConfiguration, - ContainerRegistry, - DataDisk, - DeleteCertificateError, - DeploymentConfiguration, - DiskEncryptionConfiguration, - EncryptionProperties, - EnvironmentSetting, - FixedScaleSettings, - ImageReference, - InboundNatPool, - KeyVaultProperties, - KeyVaultReference, - LinuxUserConfiguration, - ListCertificatesResult, - MetadataItem, - MountConfiguration, - NetworkConfiguration, - NetworkSecurityGroupRule, - NFSMountConfiguration, - Pool, - PoolEndpointConfiguration, - PrivateEndpoint, - PrivateEndpointConnection, - PrivateLinkResource, - PrivateLinkServiceConnectionState, - ProxyResource, - PublicIPAddressConfiguration, - ResizeError, - ResizeOperationStatus, - Resource, - ResourceFile, - ScaleSettings, - StartTask, - TaskContainerSettings, - TaskSchedulingPolicy, - UserAccount, - UserIdentity, - VirtualMachineConfiguration, - VirtualMachineFamilyCoreQuota, - WindowsConfiguration, - WindowsUserConfiguration -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/index.ts b/sdk/batch/arm-batch/src/models/index.ts index 6db72910d857..34c4a9e86a9d 100644 --- a/sdk/batch/arm-batch/src/models/index.ts +++ b/sdk/batch/arm-batch/src/models/index.ts @@ -1,3631 +1,2045 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * 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 { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js"; -import * as msRest from "@azure/ms-rest-js"; +import * as coreClient from "@azure/core-client"; -export { BaseResource, CloudError }; +/** Parameters supplied to the Create operation. */ +export interface BatchAccountCreateParameters { + /** The region in which to create the account. */ + location: string; + /** The user-specified tags associated with the account. */ + tags?: { [propertyName: string]: string }; + /** The identity of the Batch account. */ + identity?: BatchAccountIdentity; + /** The properties related to the auto-storage account. */ + autoStorage?: AutoStorageBaseProperties; + /** The pool allocation mode also affects how clients may authenticate to the Batch Service API. If the mode is BatchService, clients may authenticate using access keys or Azure Active Directory. If the mode is UserSubscription, clients must use Azure Active Directory. The default is BatchService. */ + poolAllocationMode?: PoolAllocationMode; + /** A reference to the Azure key vault associated with the Batch account. */ + keyVaultReference?: KeyVaultReference; + /** If not specified, the default value is 'enabled'. */ + publicNetworkAccess?: PublicNetworkAccessType; + /** Configures how customer data is encrypted inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. For additional control, a customer-managed key can be used instead. */ + encryption?: EncryptionProperties; + /** List of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane. */ + allowedAuthenticationModes?: AuthenticationMode[]; +} -/** - * The properties related to the auto-storage account. - */ +/** The properties related to the auto-storage account. */ export interface AutoStorageBaseProperties { - /** - * The resource ID of the storage account to be used for auto-storage account. - */ + /** The resource ID of the storage account to be used for auto-storage account. */ storageAccountId: string; + /** The authentication mode which the Batch service will use to manage the auto-storage account. */ + authenticationMode?: AutoStorageAuthenticationMode; + /** The identity referenced here must be assigned to pools which have compute nodes that need access to auto-storage. */ + nodeIdentityReference?: ComputeNodeIdentityReference; } -/** - * KeyVault configuration when using an encryption KeySource of Microsoft.KeyVault. - */ -export interface KeyVaultProperties { - /** - * Full path to the versioned secret. Example - * https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. To be usable - * the following prerequisites must be met: - * - * The Batch Account has a System Assigned identity - * The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions - * The KeyVault has soft-delete and purge protection enabled - */ - keyIdentifier?: string; +/** The reference to a user assigned identity associated with the Batch pool which a compute node will use. */ +export interface ComputeNodeIdentityReference { + /** The ARM resource id of the user assigned identity. */ + resourceId?: string; } -/** - * Configures how customer data is encrypted inside the Batch account. By default, accounts are - * encrypted using a Microsoft managed key. For additional control, a customer-managed key can be - * used instead. - */ +/** Identifies the Azure key vault associated with a Batch account. */ +export interface KeyVaultReference { + /** The resource ID of the Azure key vault associated with the Batch account. */ + id: string; + /** The URL of the Azure key vault associated with the Batch account. */ + url: string; +} + +/** Configures how customer data is encrypted inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. For additional control, a customer-managed key can be used instead. */ export interface EncryptionProperties { - /** - * Type of the key source. Possible values include: 'Microsoft.Batch', 'Microsoft.KeyVault' - */ + /** Type of the key source. */ keySource?: KeySource; - /** - * Additional details when using Microsoft.KeyVault - */ + /** Additional details when using Microsoft.KeyVault */ keyVaultProperties?: KeyVaultProperties; } -/** - * Identifies the Azure key vault associated with a Batch account. - */ -export interface KeyVaultReference { - /** - * The resource ID of the Azure key vault associated with the Batch account. - */ - id: string; +/** KeyVault configuration when using an encryption KeySource of Microsoft.KeyVault. */ +export interface KeyVaultProperties { /** - * The URL of the Azure key vault associated with the Batch account. + * Full path to the versioned secret. Example https://mykeyvault.vault.azure.net/keys/testkey/6e34a81fef704045975661e297a4c053. To be usable the following prerequisites must be met: + * + * The Batch Account has a System Assigned identity + * The account identity has been granted Key/Get, Key/Unwrap and Key/Wrap permissions + * The KeyVault has soft-delete and purge protection enabled */ - url: string; + keyIdentifier?: string; } -/** - * The identity of the Batch account, if configured. This is only used when the user specifies - * 'Microsoft.KeyVault' as their Batch account encryption configuration. - */ +/** The identity of the Batch account, if configured. This is used when the user specifies 'Microsoft.KeyVault' as their Batch account encryption configuration or when `ManagedIdentity` is selected as the auto-storage authentication mode. */ export interface BatchAccountIdentity { /** - * The principal id of the Batch account. This property will only be provided for a system - * assigned identity. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The principal id of the Batch account. This property will only be provided for a system assigned identity. + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly principalId?: string; /** - * The tenant id associated with the Batch account. This property will only be provided for a - * system assigned identity. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The tenant id associated with the Batch account. This property will only be provided for a system assigned identity. + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly tenantId?: string; - /** - * The type of identity used for the Batch account. Possible values include: 'SystemAssigned', - * 'None' - */ + /** The type of identity used for the Batch account. */ type: ResourceIdentityType; + /** The list of user identities associated with the Batch account. */ + userAssignedIdentities?: { [propertyName: string]: UserAssignedIdentities }; } -/** - * Parameters supplied to the Create operation. - */ -export interface BatchAccountCreateParameters { - /** - * The region in which to create the account. - */ - location: string; - /** - * The user-specified tags associated with the account. - */ - tags?: { [propertyName: string]: string }; - /** - * The properties related to the auto-storage account. - */ - autoStorage?: AutoStorageBaseProperties; - /** - * The allocation mode to use for creating pools in the Batch account. The pool allocation mode - * also affects how clients may authenticate to the Batch Service API. If the mode is - * BatchService, clients may authenticate using access keys or Azure Active Directory. If the - * mode is UserSubscription, clients must use Azure Active Directory. The default is - * BatchService. Possible values include: 'BatchService', 'UserSubscription' - */ - poolAllocationMode?: PoolAllocationMode; - /** - * A reference to the Azure key vault associated with the Batch account. - */ - keyVaultReference?: KeyVaultReference; - /** - * The network access type for accessing Azure Batch account. If not specified, the default value - * is 'enabled'. Possible values include: 'Enabled', 'Disabled'. Default value: 'Enabled'. - */ - publicNetworkAccess?: PublicNetworkAccessType; - /** - * The encryption configuration for the Batch account. Configures how customer data is encrypted - * inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. - * For additional control, a customer-managed key can be used instead. - */ - encryption?: EncryptionProperties; - /** - * The identity of the Batch account. - */ - identity?: BatchAccountIdentity; -} - -/** - * Contains information about the auto-storage account associated with a Batch account. - */ -export interface AutoStorageProperties extends AutoStorageBaseProperties { - /** - * The UTC time at which storage keys were last synchronized with the Batch account. - */ - lastKeySync: Date; -} - -/** - * A VM Family and its associated core quota for the Batch account. - */ -export interface VirtualMachineFamilyCoreQuota { +/** The list of associated user identities. */ +export interface UserAssignedIdentities { /** - * The Virtual Machine family name. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The principal id of user assigned identity. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly name?: string; + readonly principalId?: string; /** - * The core quota for the VM family for the Batch account. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The client id of user assigned identity. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly coreQuota?: number; + readonly clientId?: string; } -/** - * The private endpoint of the private endpoint connection. - */ +/** The private endpoint of the private endpoint connection. */ export interface PrivateEndpoint { /** - * The ARM resource identifier of the private endpoint. This is of the form - * /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The ARM resource identifier of the private endpoint. This is of the form /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/privateEndpoints/{privateEndpoint}. + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly id?: string; } -/** - * The private link service connection state of the private endpoint connection - */ +/** The private link service connection state of the private endpoint connection */ export interface PrivateLinkServiceConnectionState { - /** - * The status for the private endpoint connection of Batch account. Possible values include: - * 'Approved', 'Pending', 'Rejected', 'Disconnected' - */ + /** The status of the Batch private endpoint connection */ status: PrivateLinkServiceConnectionStatus; - /** - * Description of the private Connection state. - */ + /** Description of the private Connection state */ description?: string; /** - * Action required on the private connection state. **NOTE: This property will not be serialized. - * It can only be populated by the server.** + * Action required on the private connection state + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly actionRequired?: string; } -/** - * A definition of an Azure resource. - */ -export interface ProxyResource extends BaseResource { +/** A definition of an Azure resource. */ +export interface ProxyResource { /** * The ID of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly id?: string; /** * The name of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly name?: string; /** * The type of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly type?: string; /** * The ETag of the resource, used for concurrency statements. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly etag?: string; } -/** - * Contains information about a private link resource. - */ -export interface PrivateEndpointConnection extends ProxyResource { - /** - * The provisioning state of the private endpoint connection. Possible values include: - * 'Succeeded', 'Updating', 'Failed' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly provisioningState?: PrivateEndpointConnectionProvisioningState; +/** A VM Family and its associated core quota for the Batch account. */ +export interface VirtualMachineFamilyCoreQuota { /** - * The ARM resource identifier of the private endpoint. + * The Virtual Machine family name. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - privateEndpoint?: PrivateEndpoint; + readonly name?: string; /** - * The private link service connection state of the private endpoint connection. + * The core quota for the VM family for the Batch account. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState; + readonly coreQuota?: number; } -/** - * A definition of an Azure resource. - */ -export interface Resource extends BaseResource { +/** A definition of an Azure resource. */ +export interface Resource { /** * The ID of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly id?: string; /** * The name of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly name?: string; /** * The type of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly type?: string; /** * The location of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly location?: string; /** * The tags of the resource. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly tags?: { [propertyName: string]: string }; } -/** - * Contains information about an Azure Batch account. - */ -export interface BatchAccount extends Resource { - /** - * The account endpoint used to interact with the Batch service. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly accountEndpoint?: string; - /** - * The provisioned state of the resource. Possible values include: 'Invalid', 'Creating', - * 'Deleting', 'Succeeded', 'Failed', 'Cancelled' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly provisioningState?: ProvisioningState; - /** - * The allocation mode to use for creating pools in the Batch account. Possible values include: - * 'BatchService', 'UserSubscription' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly poolAllocationMode?: PoolAllocationMode; - /** - * A reference to the Azure key vault associated with the Batch account. **NOTE: This property - * will not be serialized. It can only be populated by the server.** - */ - readonly keyVaultReference?: KeyVaultReference; - /** - * The network interface type for accessing Azure Batch service and Batch account operations. If - * not specified, the default value is 'enabled'. Possible values include: 'Enabled', 'Disabled' - * **NOTE: This property will not be serialized. It can only be populated by the server.**. - * Default value: 'Enabled'. - */ - readonly publicNetworkAccess?: PublicNetworkAccessType; - /** - * List of private endpoint connections associated with the Batch account - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly privateEndpointConnections?: PrivateEndpointConnection[]; - /** - * The properties and status of any auto-storage account associated with the Batch account. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly autoStorage?: AutoStorageProperties; - /** - * The encryption configuration for the Batch account. Configures how customer data is encrypted - * inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. - * For additional control, a customer-managed key can be used instead. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly encryption?: EncryptionProperties; - /** - * The dedicated core quota for the Batch account. For accounts with PoolAllocationMode set to - * UserSubscription, quota is managed on the subscription so this value is not returned. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly dedicatedCoreQuota?: number; - /** - * The low-priority core quota for the Batch account. For accounts with PoolAllocationMode set to - * UserSubscription, quota is managed on the subscription so this value is not returned. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly lowPriorityCoreQuota?: number; - /** - * A list of the dedicated core quota per Virtual Machine family for the Batch account. For - * accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription - * so this value is not returned. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly dedicatedCoreQuotaPerVMFamily?: VirtualMachineFamilyCoreQuota[]; - /** - * A value indicating whether the core quota for the Batch Account is enforced per Virtual - * Machine family or not. Batch is transitioning its core quota system for dedicated cores to be - * enforced per Virtual Machine family. During this transitional phase, the dedicated core quota - * per Virtual Machine family may not yet be enforced. If this flag is false, dedicated core - * quota is enforced via the old dedicatedCoreQuota property on the account and does not consider - * Virtual Machine family. If this flag is true, dedicated core quota is enforced via the - * dedicatedCoreQuotaPerVMFamily property on the account, and the old dedicatedCoreQuota does not - * apply. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly dedicatedCoreQuotaPerVMFamilyEnforced?: boolean; - /** - * The pool quota for the Batch account. **NOTE: This property will not be serialized. It can - * only be populated by the server.** - */ - readonly poolQuota?: number; - /** - * The active job and job schedule quota for the Batch account. **NOTE: This property will not be - * serialized. It can only be populated by the server.** - */ - readonly activeJobAndJobScheduleQuota?: number; - /** - * The identity of the Batch account. - */ - identity?: BatchAccountIdentity; +/** An error response from the Batch service. */ +export interface CloudError { + /** The body of the error response. */ + error?: CloudErrorBody; } -/** - * Parameters for updating an Azure Batch account. - */ +/** An error response from the Batch service. */ +export interface CloudErrorBody { + /** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */ + code?: string; + /** A message describing the error, intended to be suitable for display in a user interface. */ + message?: string; + /** The target of the particular error. For example, the name of the property in error. */ + target?: string; + /** A list of additional details about the error. */ + details?: CloudErrorBody[]; +} + +/** Parameters for updating an Azure Batch account. */ export interface BatchAccountUpdateParameters { - /** - * The user-specified tags associated with the account. - */ + /** The user-specified tags associated with the account. */ tags?: { [propertyName: string]: string }; - /** - * The properties related to the auto-storage account. - */ + /** The identity of the Batch account. */ + identity?: BatchAccountIdentity; + /** The properties related to the auto-storage account. */ autoStorage?: AutoStorageBaseProperties; - /** - * The encryption configuration for the Batch account. Configures how customer data is encrypted - * inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. - * For additional control, a customer-managed key can be used instead. - */ + /** Configures how customer data is encrypted inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. For additional control, a customer-managed key can be used instead. */ encryption?: EncryptionProperties; - /** - * The identity of the Batch account. - */ - identity?: BatchAccountIdentity; + /** List of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane. */ + allowedAuthenticationModes?: AuthenticationMode[]; } -/** - * Parameters supplied to the RegenerateKey operation. - */ +/** Values returned by the List operation. */ +export interface BatchAccountListResult { + /** The collection of Batch accounts returned by the listing operation. */ + value?: BatchAccount[]; + /** The continuation token. */ + nextLink?: string; +} + +/** Parameters supplied to the RegenerateKey operation. */ export interface BatchAccountRegenerateKeyParameters { - /** - * The type of account key to regenerate. Possible values include: 'Primary', 'Secondary' - */ + /** The type of account key to regenerate. */ keyName: AccountKeyType; } -/** - * A set of Azure Batch account keys. - */ +/** A set of Azure Batch account keys. */ export interface BatchAccountKeys { /** * The Batch account name. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly accountName?: string; /** * The primary key associated with the account. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly primary?: string; /** * The secondary key associated with the account. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * NOTE: This property will not be serialized. It can only be populated by the server. */ readonly secondary?: string; } -/** - * Parameters for an activating an application package. - */ +/** Parameters for an activating an application package. */ export interface ActivateApplicationPackageParameters { - /** - * The format of the application package binary file. - */ + /** The format of the application package binary file. */ format: string; } -/** - * Contains information about an application in a Batch account. - */ -export interface Application extends ProxyResource { - /** - * The display name for the application. - */ - displayName?: string; +/** The result of performing list applications. */ +export interface ListApplicationsResult { + /** The list of applications. */ + value?: Application[]; + /** The URL to get the next set of results. */ + nextLink?: string; +} + +/** The result of performing list application packages. */ +export interface ListApplicationPackagesResult { + /** The list of application packages. */ + value?: ApplicationPackage[]; + /** The URL to get the next set of results. */ + nextLink?: string; +} + +/** Quotas associated with a Batch region for a particular subscription. */ +export interface BatchLocationQuota { /** - * A value indicating whether packages within the application may be overwritten using the same - * version string. + * The number of Batch accounts that may be created under the subscription in the specified region. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - allowUpdates?: boolean; + readonly accountQuota?: number; +} + +/** The Batch List supported SKUs operation response. */ +export interface SupportedSkusResult { + /** The list of SKUs available for the Batch service in the location. */ + value: SupportedSku[]; /** - * The package to use if a client requests the application but does not specify a version. This - * property can only be set to the name of an existing package. + * The URL to use for getting the next set of results. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - defaultVersion?: string; + readonly nextLink?: string; } -/** - * An application package which represents a particular version of an application. - */ -export interface ApplicationPackage extends ProxyResource { +/** Describes a Batch supported SKU. */ +export interface SupportedSku { /** - * The current state of the application package. Possible values include: 'Pending', 'Active' - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The name of the SKU. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly state?: PackageState; + readonly name?: string; /** - * The format of the application package, if the package is active. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The family name of the SKU. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly format?: string; + readonly familyName?: string; /** - * The URL for the application package in Azure Storage. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * A collection of capabilities which this SKU supports. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly storageUrl?: string; + readonly capabilities?: SkuCapability[]; +} + +/** A SKU capability, such as the number of cores. */ +export interface SkuCapability { /** - * The UTC time at which the Azure Storage URL will expire. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The name of the feature. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly storageUrlExpiry?: Date; + readonly name?: string; /** - * The time at which the package was last activated, if the package is active. - * **NOTE: This property will not be serialized. It can only be populated by the server.** + * The value of the feature. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly lastActivationTime?: Date; + readonly value?: string; } -/** - * Quotas associated with a Batch region for a particular subscription. - */ -export interface BatchLocationQuota { - /** - * The number of Batch accounts that may be created under the subscription in the specified - * region. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly accountQuota?: number; +/** Result of the request to list REST API operations. It contains a list of operations and a URL nextLink to get the next set of results. */ +export interface OperationListResult { + /** The list of operations supported by the resource provider. */ + value?: Operation[]; + /** The URL to get the next set of operation list results if there are any. */ + nextLink?: string; } -/** - * An interface representing CertificateBaseProperties. - */ -export interface CertificateBaseProperties { +/** A REST API operation */ +export interface Operation { + /** This is of the format {provider}/{resource}/{operation} */ + name?: string; + /** Indicates whether the operation is a data action */ + isDataAction?: boolean; + /** The object that describes the operation. */ + display?: OperationDisplay; + /** The intended executor of the operation. */ + origin?: string; + /** Any object */ + properties?: Record; +} + +/** The object that describes the operation. */ +export interface OperationDisplay { + /** Friendly name of the resource provider. */ + provider?: string; + /** For example: read, write, delete, or listKeys/action */ + operation?: string; + /** The resource type on which the operation is performed. */ + resource?: string; + /** The friendly name of the operation */ + description?: string; +} + +/** Parameters for a check name availability request. */ +export interface CheckNameAvailabilityParameters { + /** The name to check for availability */ + name: string; + /** The resource type. */ + type: "Microsoft.Batch/batchAccounts"; +} + +/** The CheckNameAvailability operation response. */ +export interface CheckNameAvailabilityResult { /** - * The algorithm of the certificate thumbprint. This must match the first portion of the - * certificate name. Currently required to be 'SHA1'. + * Gets a boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or invalid and cannot be used. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - thumbprintAlgorithm?: string; + readonly nameAvailable?: boolean; /** - * The thumbprint of the certificate. This must match the thumbprint from the name. + * Gets the reason that a Batch account name could not be used. The Reason element is only returned if NameAvailable is false. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - thumbprint?: string; + readonly reason?: NameAvailabilityReason; /** - * The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx. Possible - * values include: 'Pfx', 'Cer' + * Gets an error message explaining the Reason value in more detail. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - format?: CertificateFormat; + readonly message?: string; } -/** - * An error response from the Batch service. - */ +/** Values returned by the List operation. */ +export interface ListCertificatesResult { + /** The collection of returned certificates. */ + value?: Certificate[]; + /** The continuation token. */ + nextLink?: string; +} + +/** An error response from the Batch service. */ export interface DeleteCertificateError { - /** - * An identifier for the error. Codes are invariant and are intended to be consumed - * programmatically. - */ + /** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */ code: string; - /** - * A message describing the error, intended to be suitable for display in a user interface. - */ + /** A message describing the error, intended to be suitable for display in a user interface. */ message: string; - /** - * The target of the particular error. For example, the name of the property in error. - */ + /** The target of the particular error. For example, the name of the property in error. */ target?: string; - /** - * A list of additional details about the error. - */ + /** A list of additional details about the error. */ details?: DeleteCertificateError[]; } -/** - * Contains information about a certificate. - */ -export interface Certificate extends ProxyResource { - /** - * The algorithm of the certificate thumbprint. This must match the first portion of the - * certificate name. Currently required to be 'SHA1'. - */ +/** Base certificate properties. */ +export interface CertificateBaseProperties { + /** This must match the first portion of the certificate name. Currently required to be 'SHA1'. */ thumbprintAlgorithm?: string; - /** - * The thumbprint of the certificate. This must match the thumbprint from the name. - */ + /** This must match the thumbprint from the name. */ thumbprint?: string; - /** - * The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx. Possible - * values include: 'Pfx', 'Cer' - */ + /** The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx. */ format?: CertificateFormat; - /** - * The provisioned state of the resource. Possible values include: 'Succeeded', 'Deleting', - * 'Failed' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly provisioningState?: CertificateProvisioningState; - /** - * The time at which the certificate entered its current state. **NOTE: This property will not be - * serialized. It can only be populated by the server.** - */ - readonly provisioningStateTransitionTime?: Date; - /** - * The previous provisioned state of the resource. Possible values include: 'Succeeded', - * 'Deleting', 'Failed' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly previousProvisioningState?: CertificateProvisioningState; - /** - * The time at which the certificate entered its previous state. **NOTE: This property will not - * be serialized. It can only be populated by the server.** - */ - readonly previousProvisioningStateTransitionTime?: Date; - /** - * The public key of the certificate. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly publicData?: string; - /** - * The error which occurred while deleting the certificate. This is only returned when the - * certificate provisioningState is 'Failed'. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly deleteCertificateError?: DeleteCertificateError; } -/** - * Contains information about a certificate. - */ -export interface CertificateCreateOrUpdateParameters extends ProxyResource { - /** - * The algorithm of the certificate thumbprint. This must match the first portion of the - * certificate name. Currently required to be 'SHA1'. - */ - thumbprintAlgorithm?: string; - /** - * The thumbprint of the certificate. This must match the thumbprint from the name. - */ - thumbprint?: string; - /** - * The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx. Possible - * values include: 'Pfx', 'Cer' - */ - format?: CertificateFormat; - /** - * The base64-encoded contents of the certificate. The maximum size is 10KB. - */ - data: string; - /** - * The password to access the certificate's private key. This must not be specified if the - * certificate format is Cer. - */ - password?: string; +/** Values returned by the List operation. */ +export interface ListPrivateLinkResourcesResult { + /** The collection of returned private link resources. */ + value?: PrivateLinkResource[]; + /** The continuation token. */ + nextLink?: string; } -/** - * Contains information about a private link resource. - */ -export interface PrivateLinkResource extends ProxyResource { - /** - * The group id of the private link resource. The group id is used to establish the private link - * connection. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly groupId?: string; - /** - * The list of required members that are used to establish the private link connection. **NOTE: - * This property will not be serialized. It can only be populated by the server.** - */ - readonly requiredMembers?: string[]; - /** - * The list of required zone names for the private DNS resource name. **NOTE: This property will - * not be serialized. It can only be populated by the server.** - */ - readonly requiredZoneNames?: string[]; +/** Values returned by the List operation. */ +export interface ListPrivateEndpointConnectionsResult { + /** The collection of returned private endpoint connection. */ + value?: PrivateEndpointConnection[]; + /** The continuation token. */ + nextLink?: string; } -/** - * An interface representing CloudServiceConfiguration. - * @summary The configuration for nodes in a pool based on the Azure Cloud Services platform. - */ +/** Values returned by the List operation. */ +export interface ListPoolsResult { + /** The collection of returned pools. */ + value?: Pool[]; + /** The continuation token. */ + nextLink?: string; +} + +/** Deployment configuration properties. */ +export interface DeploymentConfiguration { + /** This property and virtualMachineConfiguration are mutually exclusive and one of the properties must be specified. This property cannot be specified if the Batch account was created with its poolAllocationMode property set to 'UserSubscription'. */ + cloudServiceConfiguration?: CloudServiceConfiguration; + /** This property and cloudServiceConfiguration are mutually exclusive and one of the properties must be specified. */ + virtualMachineConfiguration?: VirtualMachineConfiguration; +} + +/** The configuration for nodes in a pool based on the Azure Cloud Services platform. */ export interface CloudServiceConfiguration { - /** - * The Azure Guest OS family to be installed on the virtual machines in the pool. Possible values - * are: 2 - OS Family 2, equivalent to Windows Server 2008 R2 SP1. 3 - OS Family 3, equivalent to - * Windows Server 2012. 4 - OS Family 4, equivalent to Windows Server 2012 R2. 5 - OS Family 5, - * equivalent to Windows Server 2016. 6 - OS Family 6, equivalent to Windows Server 2019. For - * more information, see Azure Guest OS Releases - * (https://azure.microsoft.com/documentation/articles/cloud-services-guestos-update-matrix/#releases). - */ + /** Possible values are: 2 - OS Family 2, equivalent to Windows Server 2008 R2 SP1. 3 - OS Family 3, equivalent to Windows Server 2012. 4 - OS Family 4, equivalent to Windows Server 2012 R2. 5 - OS Family 5, equivalent to Windows Server 2016. 6 - OS Family 6, equivalent to Windows Server 2019. For more information, see Azure Guest OS Releases (https://azure.microsoft.com/documentation/articles/cloud-services-guestos-update-matrix/#releases). */ osFamily: string; - /** - * The Azure Guest OS version to be installed on the virtual machines in the pool. The default - * value is * which specifies the latest operating system version for the specified OS family. - */ + /** The default value is * which specifies the latest operating system version for the specified OS family. */ osVersion?: string; } -/** - * An interface representing ImageReference. - * @summary A reference to an Azure Virtual Machines Marketplace image or the Azure Image resource - * of a custom Virtual Machine. To get the list of all imageReferences verified by Azure Batch, see - * the 'List supported node agent SKUs' operation. - */ -export interface ImageReference { +/** The configuration for compute nodes in a pool based on the Azure Virtual Machines infrastructure. */ +export interface VirtualMachineConfiguration { + /** A reference to an Azure Virtual Machines Marketplace image or the Azure Image resource of a custom Virtual Machine. To get the list of all imageReferences verified by Azure Batch, see the 'List supported node agent SKUs' operation. */ + imageReference: ImageReference; + /** The Batch node agent is a program that runs on each node in the pool, and provides the command-and-control interface between the node and the Batch service. There are different implementations of the node agent, known as SKUs, for different operating systems. You must specify a node agent SKU which matches the selected image reference. To get the list of supported node agent SKUs along with their list of verified image references, see the 'List supported node agent SKUs' operation. */ + nodeAgentSkuId: string; + /** This property must not be specified if the imageReference specifies a Linux OS image. */ + windowsConfiguration?: WindowsConfiguration; + /** This property must be specified if the compute nodes in the pool need to have empty data disks attached to them. */ + dataDisks?: DataDisk[]; /** - * The publisher of the Azure Virtual Machines Marketplace image. For example, Canonical or - * MicrosoftWindowsServer. + * This only applies to images that contain the Windows operating system, and should only be used when you hold valid on-premises licenses for the nodes which will be deployed. If omitted, no on-premises licensing discount is applied. Values are: + * + * Windows_Server - The on-premises license is for Windows Server. + * Windows_Client - The on-premises license is for Windows Client. + * */ + licenseType?: string; + /** If specified, setup is performed on each node in the pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this pool must specify the containerSettings property, and all other tasks may specify it. */ + containerConfiguration?: ContainerConfiguration; + /** If specified, encryption is performed on each node in the pool during node provisioning. */ + diskEncryptionConfiguration?: DiskEncryptionConfiguration; + /** This configuration will specify rules on how nodes in the pool will be physically allocated. */ + nodePlacementConfiguration?: NodePlacementConfiguration; + /** If specified, the extensions mentioned in this configuration will be installed on each node. */ + extensions?: VMExtension[]; + /** Contains configuration for ephemeral OSDisk settings. */ + osDisk?: OSDisk; +} + +/** A reference to an Azure Virtual Machines Marketplace image or the Azure Image resource of a custom Virtual Machine. To get the list of all imageReferences verified by Azure Batch, see the 'List supported node agent SKUs' operation. */ +export interface ImageReference { + /** For example, Canonical or MicrosoftWindowsServer. */ publisher?: string; - /** - * The offer type of the Azure Virtual Machines Marketplace image. For example, UbuntuServer or - * WindowsServer. - */ + /** For example, UbuntuServer or WindowsServer. */ offer?: string; - /** - * The SKU of the Azure Virtual Machines Marketplace image. For example, 18.04-LTS or - * 2019-Datacenter. - */ + /** For example, 18.04-LTS or 2019-Datacenter. */ sku?: string; - /** - * The version of the Azure Virtual Machines Marketplace image. A value of 'latest' can be - * specified to select the latest version of an image. If omitted, the default is 'latest'. - */ + /** A value of 'latest' can be specified to select the latest version of an image. If omitted, the default is 'latest'. */ version?: string; - /** - * The ARM resource identifier of the Shared Image Gallery Image. Compute Nodes in the Pool will - * be created using this Image Id. This is of the form - * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroup}/providers/Microsoft.Compute/galleries/{galleryName}/images/{imageDefinitionName}/versions/{versionId}. - * This property is mutually exclusive with other properties. The Shared Image Gallery image must - * have replicas in the same region as the Azure Batch account. For information about the - * firewall settings for the Batch node agent to communicate with the Batch service see - * https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. - */ + /** This property is mutually exclusive with other properties. The Shared Image Gallery image must have replicas in the same region as the Azure Batch account. For information about the firewall settings for the Batch node agent to communicate with the Batch service see https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration. */ id?: string; } -/** - * An interface representing WindowsConfiguration. - * @summary Windows operating system settings to apply to the virtual machine. - */ +/** Windows operating system settings to apply to the virtual machine. */ export interface WindowsConfiguration { - /** - * Whether automatic updates are enabled on the virtual machine. If omitted, the default value is - * true. - */ + /** If omitted, the default value is true. */ enableAutomaticUpdates?: boolean; } -/** - * Settings which will be used by the data disks associated to Compute Nodes in the Pool. When - * using attached data disks, you need to mount and format the disks from within a VM to use them. - */ +/** Settings which will be used by the data disks associated to Compute Nodes in the Pool. When using attached data disks, you need to mount and format the disks from within a VM to use them. */ export interface DataDisk { - /** - * The logical unit number. The lun is used to uniquely identify each data disk. If attaching - * multiple disks, each should have a distinct lun. The value must be between 0 and 63, - * inclusive. - */ + /** The lun is used to uniquely identify each data disk. If attaching multiple disks, each should have a distinct lun. The value must be between 0 and 63, inclusive. */ lun: number; /** - * The type of caching to be enabled for the data disks. Values are: + * Values are: * - * none - The caching mode for the disk is not enabled. - * readOnly - The caching mode for the disk is read only. - * readWrite - The caching mode for the disk is read and write. + * none - The caching mode for the disk is not enabled. + * readOnly - The caching mode for the disk is read only. + * readWrite - The caching mode for the disk is read and write. * - * The default value for caching is none. For information about the caching options see: - * https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/. - * Possible values include: 'None', 'ReadOnly', 'ReadWrite' + * The default value for caching is none. For information about the caching options see: https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/. */ caching?: CachingType; - /** - * The initial disk size in GB when creating new data disk. - */ + /** The initial disk size in GB when creating new data disk. */ diskSizeGB: number; /** - * The storage account type to be used for the data disk. If omitted, the default is - * "Standard_LRS". Values are: + * If omitted, the default is "Standard_LRS". Values are: * - * Standard_LRS - The data disk should use standard locally redundant storage. - * Premium_LRS - The data disk should use premium locally redundant storage. Possible values - * include: 'Standard_LRS', 'Premium_LRS' + * Standard_LRS - The data disk should use standard locally redundant storage. + * Premium_LRS - The data disk should use premium locally redundant storage. */ storageAccountType?: StorageAccountType; } -/** - * An interface representing ContainerRegistry. - * @summary A private container registry. - */ -export interface ContainerRegistry { - /** - * The registry URL. If omitted, the default is "docker.io". - */ - registryServer?: string; - /** - * The user name to log into the registry server. - */ - userName: string; - /** - * The password to log into the registry server. - */ - password: string; -} - -/** - * An interface representing ContainerConfiguration. - * @summary The configuration for container-enabled pools. - */ +/** The configuration for container-enabled pools. */ export interface ContainerConfiguration { - /** - * The collection of container image names. This is the full image reference, as would be - * specified to "docker pull". An image will be sourced from the default Docker registry unless - * the image is fully qualified with an alternative registry. - */ + /** The container technology to be used. */ + type: "DockerCompatible"; + /** This is the full image reference, as would be specified to "docker pull". An image will be sourced from the default Docker registry unless the image is fully qualified with an alternative registry. */ containerImageNames?: string[]; - /** - * Additional private registries from which containers can be pulled. If any images must be - * downloaded from a private registry which requires credentials, then those credentials must be - * provided here. - */ + /** If any images must be downloaded from a private registry which requires credentials, then those credentials must be provided here. */ containerRegistries?: ContainerRegistry[]; } -/** - * The disk encryption configuration applied on compute nodes in the pool. Disk encryption - * configuration is not supported on Linux pool created with Virtual Machine Image or Shared Image - * Gallery Image. - */ +/** A private container registry. */ +export interface ContainerRegistry { + /** The user name to log into the registry server. */ + userName?: string; + /** The password to log into the registry server. */ + password?: string; + /** If omitted, the default is "docker.io". */ + registryServer?: string; + /** The reference to a user assigned identity associated with the Batch pool which a compute node will use. */ + identityReference?: ComputeNodeIdentityReference; +} + +/** The disk encryption configuration applied on compute nodes in the pool. Disk encryption configuration is not supported on Linux pool created with Virtual Machine Image or Shared Image Gallery Image. */ export interface DiskEncryptionConfiguration { - /** - * The list of disk targets Batch Service will encrypt on the compute node. On Linux pool, only - * "TemporaryDisk" is supported; on Windows pool, "OsDisk" and "TemporaryDisk" must be specified. - */ + /** On Linux pool, only "TemporaryDisk" is supported; on Windows pool, "OsDisk" and "TemporaryDisk" must be specified. */ targets?: DiskEncryptionTarget[]; } -/** - * An interface representing VirtualMachineConfiguration. - * @summary The configuration for compute nodes in a pool based on the Azure Virtual Machines - * infrastructure. - */ -export interface VirtualMachineConfiguration { - /** - * A reference to the Azure Virtual Machines Marketplace Image or the custom Virtual Machine - * Image to use. - */ - imageReference: ImageReference; - /** - * The SKU of the Batch node agent to be provisioned on compute nodes in the pool. The Batch node - * agent is a program that runs on each node in the pool, and provides the command-and-control - * interface between the node and the Batch service. There are different implementations of the - * node agent, known as SKUs, for different operating systems. You must specify a node agent SKU - * which matches the selected image reference. To get the list of supported node agent SKUs along - * with their list of verified image references, see the 'List supported node agent SKUs' - * operation. - */ - nodeAgentSkuId: string; - /** - * Windows operating system settings on the virtual machine. This property must not be specified - * if the imageReference specifies a Linux OS image. - */ - windowsConfiguration?: WindowsConfiguration; - /** - * The configuration for data disks attached to the compute nodes in the pool. This property must - * be specified if the compute nodes in the pool need to have empty data disks attached to them. - */ - dataDisks?: DataDisk[]; - /** - * The type of on-premises license to be used when deploying the operating system. This only - * applies to images that contain the Windows operating system, and should only be used when you - * hold valid on-premises licenses for the nodes which will be deployed. If omitted, no - * on-premises licensing discount is applied. Values are: - * - * Windows_Server - The on-premises license is for Windows Server. - * Windows_Client - The on-premises license is for Windows Client. - */ - licenseType?: string; - /** - * The container configuration for the pool. If specified, setup is performed on each node in the - * pool to allow tasks to run in containers. All regular tasks and job manager tasks run on this - * pool must specify the containerSettings property, and all other tasks may specify it. - */ - containerConfiguration?: ContainerConfiguration; - /** - * The disk encryption configuration for the pool. If specified, encryption is performed on each - * node in the pool during node provisioning. - */ - diskEncryptionConfiguration?: DiskEncryptionConfiguration; +/** Allocation configuration used by Batch Service to provision the nodes. */ +export interface NodePlacementConfiguration { + /** Allocation policy used by Batch Service to provision the nodes. If not specified, Batch will use the regional policy. */ + policy?: NodePlacementPolicyType; } -/** - * An interface representing DeploymentConfiguration. - * @summary Deployment configuration properties. - */ -export interface DeploymentConfiguration { - /** - * The cloud service configuration for the pool. This property and virtualMachineConfiguration - * are mutually exclusive and one of the properties must be specified. This property cannot be - * specified if the Batch account was created with its poolAllocationMode property set to - * 'UserSubscription'. - */ - cloudServiceConfiguration?: CloudServiceConfiguration; - /** - * The virtual machine configuration for the pool. This property and cloudServiceConfiguration - * are mutually exclusive and one of the properties must be specified. - */ - virtualMachineConfiguration?: VirtualMachineConfiguration; +/** The configuration for virtual machine extensions. */ +export interface VMExtension { + /** The name of the virtual machine extension. */ + name: string; + /** The name of the extension handler publisher. */ + publisher: string; + /** The type of the extensions. */ + type: string; + /** The version of script handler. */ + typeHandlerVersion?: string; + /** Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true. */ + autoUpgradeMinorVersion?: boolean; + /** Any object */ + settings?: Record; + /** The extension can contain either protectedSettings or protectedSettingsFromKeyVault or no protected settings at all. */ + protectedSettings?: Record; + /** Collection of extension names after which this extension needs to be provisioned. */ + provisionAfterExtensions?: string[]; +} + +/** Settings for the operating system disk of the virtual machine. */ +export interface OSDisk { + /** Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine. */ + ephemeralOSDiskSettings?: DiffDiskSettings; +} + +/** Specifies the ephemeral Disk Settings for the operating system disk used by the virtual machine. */ +export interface DiffDiskSettings { + /** This property can be used by user in the request to choose which location the operating system should be in. e.g., cache disk space for Ephemeral OS disk provisioning. For more information on Ephemeral OS disk size requirements, please refer to Ephemeral OS disk size requirements for Windows VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/windows/ephemeral-os-disks#size-requirements and Linux VMs at https://docs.microsoft.com/en-us/azure/virtual-machines/linux/ephemeral-os-disks#size-requirements. */ + placement?: "CacheDisk"; +} + +/** Defines the desired size of the pool. This can either be 'fixedScale' where the requested targetDedicatedNodes is specified, or 'autoScale' which defines a formula which is periodically reevaluated. If this property is not specified, the pool will have a fixed scale with 0 targetDedicatedNodes. */ +export interface ScaleSettings { + /** This property and autoScale are mutually exclusive and one of the properties must be specified. */ + fixedScale?: FixedScaleSettings; + /** This property and fixedScale are mutually exclusive and one of the properties must be specified. */ + autoScale?: AutoScaleSettings; } -/** - * An interface representing FixedScaleSettings. - * @summary Fixed scale settings for the pool. - */ +/** Fixed scale settings for the pool. */ export interface FixedScaleSettings { - /** - * The timeout for allocation of compute nodes to the pool. The default value is 15 minutes. - * Timeout values use ISO 8601 format. For example, use PT10M for 10 minutes. The minimum value - * is 5 minutes. If you specify a value less than 5 minutes, the Batch service rejects the - * request with an error; if you are calling the REST API directly, the HTTP status code is 400 - * (Bad Request). - */ + /** The default value is 15 minutes. Timeout values use ISO 8601 format. For example, use PT10M for 10 minutes. The minimum value is 5 minutes. If you specify a value less than 5 minutes, the Batch service rejects the request with an error; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request). */ resizeTimeout?: string; - /** - * The desired number of dedicated compute nodes in the pool. At least one of - * targetDedicatedNodes, targetLowPriorityNodes must be set. - */ + /** At least one of targetDedicatedNodes, targetLowPriorityNodes must be set. */ targetDedicatedNodes?: number; - /** - * The desired number of low-priority compute nodes in the pool. At least one of - * targetDedicatedNodes, targetLowPriorityNodes must be set. - */ + /** At least one of targetDedicatedNodes, targetLowPriorityNodes must be set. */ targetLowPriorityNodes?: number; - /** - * Determines what to do with a node and its running task(s) if the pool size is decreasing. If - * omitted, the default value is Requeue. Possible values include: 'Requeue', 'Terminate', - * 'TaskCompletion', 'RetainedData' - */ + /** If omitted, the default value is Requeue. */ nodeDeallocationOption?: ComputeNodeDeallocationOption; } -/** - * An interface representing AutoScaleSettings. - * @summary AutoScale settings for the pool. - */ +/** AutoScale settings for the pool. */ export interface AutoScaleSettings { - /** - * A formula for the desired number of compute nodes in the pool. - */ + /** A formula for the desired number of compute nodes in the pool. */ formula: string; - /** - * The time interval at which to automatically adjust the pool size according to the autoscale - * formula. If omitted, the default value is 15 minutes (PT15M). - */ + /** If omitted, the default value is 15 minutes (PT15M). */ evaluationInterval?: string; } -/** - * Defines the desired size of the pool. This can either be 'fixedScale' where the requested - * targetDedicatedNodes is specified, or 'autoScale' which defines a formula which is periodically - * reevaluated. If this property is not specified, the pool will have a fixed scale with 0 - * targetDedicatedNodes. - * @summary Scale settings for the pool - */ -export interface ScaleSettings { - /** - * Fixed scale settings for the pool. This property and autoScale are mutually exclusive and one - * of the properties must be specified. - */ - fixedScale?: FixedScaleSettings; - /** - * AutoScale settings for the pool. This property and fixedScale are mutually exclusive and one - * of the properties must be specified. - */ - autoScale?: AutoScaleSettings; +/** The results and errors from an execution of a pool autoscale formula. */ +export interface AutoScaleRun { + /** The time at which the autoscale formula was last evaluated. */ + evaluationTime: Date; + /** Each variable value is returned in the form $variable=value, and variables are separated by semicolons. */ + results?: string; + /** An error that occurred when autoscaling a pool. */ + error?: AutoScaleRunError; } -/** - * An interface representing AutoScaleRunError. - * @summary An error that occurred when autoscaling a pool. - */ +/** An error that occurred when autoscaling a pool. */ export interface AutoScaleRunError { - /** - * An identifier for the error. Codes are invariant and are intended to be consumed - * programmatically. - */ + /** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */ code: string; - /** - * A message describing the error, intended to be suitable for display in a user interface. - */ + /** A message describing the error, intended to be suitable for display in a user interface. */ message: string; - /** - * Additional details about the error. - */ + /** Additional details about the error. */ details?: AutoScaleRunError[]; } -/** - * An interface representing AutoScaleRun. - * @summary The results and errors from an execution of a pool autoscale formula. - */ -export interface AutoScaleRun { - /** - * The time at which the autoscale formula was last evaluated. - */ - evaluationTime: Date; - /** - * The final values of all variables used in the evaluation of the autoscale formula. Each - * variable value is returned in the form $variable=value, and variables are separated by - * semicolons. - */ - results?: string; - /** - * Details of the error encountered evaluating the autoscale formula on the pool, if the - * evaluation was unsuccessful. - */ - error?: AutoScaleRunError; +/** The network configuration for a pool. */ +export interface NetworkConfiguration { + /** The virtual network must be in the same region and subscription as the Azure Batch account. The specified subnet should have enough free IP addresses to accommodate the number of nodes in the pool. If the subnet doesn't have enough free IP addresses, the pool will partially allocate compute nodes and a resize error will occur. The 'MicrosoftAzureBatch' service principal must have the 'Classic Virtual Machine Contributor' Role-Based Access Control (RBAC) role for the specified VNet. The specified subnet must allow communication from the Azure Batch service to be able to schedule tasks on the compute nodes. This can be verified by checking if the specified VNet has any associated Network Security Groups (NSG). If communication to the compute nodes in the specified subnet is denied by an NSG, then the Batch service will set the state of the compute nodes to unusable. If the specified VNet has any associated Network Security Groups (NSG), then a few reserved system ports must be enabled for inbound communication. For pools created with a virtual machine configuration, enable ports 29876 and 29877, as well as port 22 for Linux and port 3389 for Windows. For pools created with a cloud service configuration, enable ports 10100, 20100, and 30100. Also enable outbound connections to Azure Storage on port 443. For cloudServiceConfiguration pools, only 'classic' VNETs are supported. For more details see: https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration */ + subnetId?: string; + /** Pool endpoint configuration is only supported on pools with the virtualMachineConfiguration property. */ + endpointConfiguration?: PoolEndpointConfiguration; + /** This property is only supported on Pools with the virtualMachineConfiguration property. */ + publicIPAddressConfiguration?: PublicIPAddressConfiguration; } -/** - * An interface representing NetworkSecurityGroupRule. - * @summary A network security group rule to apply to an inbound endpoint. - */ -export interface NetworkSecurityGroupRule { - /** - * The priority for this rule. Priorities within a pool must be unique and are evaluated in order - * of priority. The lower the number the higher the priority. For example, rules could be - * specified with order numbers of 150, 250, and 350. The rule with the order number of 150 takes - * precedence over the rule that has an order of 250. Allowed priorities are 150 to 4096. If any - * reserved or duplicate values are provided the request fails with HTTP status code 400. - */ - priority: number; - /** - * The action that should be taken for a specified IP address, subnet range or tag. Possible - * values include: 'Allow', 'Deny' - */ - access: NetworkSecurityGroupRuleAccess; - /** - * The source address prefix or tag to match for the rule. Valid values are a single IP address - * (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). - * If any other values are provided the request fails with HTTP status code 400. - */ - sourceAddressPrefix: string; - /** - * The source port ranges to match for the rule. Valid values are '*' (for all ports 0 - 65535) - * or arrays of ports or port ranges (i.e. 100-200). The ports should in the range of 0 to 65535 - * and the port ranges or ports can't overlap. If any other values are provided the request fails - * with HTTP status code 400. Default value will be *. - */ - sourcePortRanges?: string[]; +/** The endpoint configuration for a pool. */ +export interface PoolEndpointConfiguration { + /** The maximum number of inbound NAT pools per Batch pool is 5. If the maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400. This cannot be specified if the IPAddressProvisioningType is NoPublicIPAddresses. */ + inboundNatPools: InboundNatPool[]; } -/** - * An interface representing InboundNatPool. - * @summary A inbound NAT pool that can be used to address specific ports on compute nodes in a - * Batch pool externally. - */ +/** A inbound NAT pool that can be used to address specific ports on compute nodes in a Batch pool externally. */ export interface InboundNatPool { - /** - * The name of the endpoint. The name must be unique within a Batch pool, can contain letters, - * numbers, underscores, periods, and hyphens. Names must start with a letter or number, must end - * with a letter, number, or underscore, and cannot exceed 77 characters. If any invalid values - * are provided the request fails with HTTP status code 400. - */ + /** The name must be unique within a Batch pool, can contain letters, numbers, underscores, periods, and hyphens. Names must start with a letter or number, must end with a letter, number, or underscore, and cannot exceed 77 characters. If any invalid values are provided the request fails with HTTP status code 400. */ name: string; - /** - * The protocol of the endpoint. Possible values include: 'TCP', 'UDP' - */ + /** The protocol of the endpoint. */ protocol: InboundEndpointProtocol; - /** - * The port number on the compute node. This must be unique within a Batch pool. Acceptable - * values are between 1 and 65535 except for 22, 3389, 29876 and 29877 as these are reserved. If - * any reserved values are provided the request fails with HTTP status code 400. - */ + /** This must be unique within a Batch pool. Acceptable values are between 1 and 65535 except for 22, 3389, 29876 and 29877 as these are reserved. If any reserved values are provided the request fails with HTTP status code 400. */ backendPort: number; - /** - * The first port number in the range of external ports that will be used to provide inbound - * access to the backendPort on individual compute nodes. Acceptable values range between 1 and - * 65534 except ports from 50000 to 55000 which are reserved. All ranges within a pool must be - * distinct and cannot overlap. If any reserved or overlapping values are provided the request - * fails with HTTP status code 400. - */ + /** Acceptable values range between 1 and 65534 except ports from 50000 to 55000 which are reserved. All ranges within a pool must be distinct and cannot overlap. If any reserved or overlapping values are provided the request fails with HTTP status code 400. */ frontendPortRangeStart: number; - /** - * The last port number in the range of external ports that will be used to provide inbound - * access to the backendPort on individual compute nodes. Acceptable values range between 1 and - * 65534 except ports from 50000 to 55000 which are reserved by the Batch service. All ranges - * within a pool must be distinct and cannot overlap. If any reserved or overlapping values are - * provided the request fails with HTTP status code 400. - */ + /** Acceptable values range between 1 and 65534 except ports from 50000 to 55000 which are reserved by the Batch service. All ranges within a pool must be distinct and cannot overlap. If any reserved or overlapping values are provided the request fails with HTTP status code 400. */ frontendPortRangeEnd: number; - /** - * A list of network security group rules that will be applied to the endpoint. The maximum - * number of rules that can be specified across all the endpoints on a Batch pool is 25. If no - * network security group rules are specified, a default rule will be created to allow inbound - * access to the specified backendPort. If the maximum number of network security group rules is - * exceeded the request fails with HTTP status code 400. - */ + /** The maximum number of rules that can be specified across all the endpoints on a Batch pool is 25. If no network security group rules are specified, a default rule will be created to allow inbound access to the specified backendPort. If the maximum number of network security group rules is exceeded the request fails with HTTP status code 400. */ networkSecurityGroupRules?: NetworkSecurityGroupRule[]; } -/** - * An interface representing PoolEndpointConfiguration. - * @summary The endpoint configuration for a pool. - */ -export interface PoolEndpointConfiguration { - /** - * A list of inbound NAT pools that can be used to address specific ports on an individual - * compute node externally. The maximum number of inbound NAT pools per Batch pool is 5. If the - * maximum number of inbound NAT pools is exceeded the request fails with HTTP status code 400. - * This cannot be specified if the IPAddressProvisioningType is NoPublicIPAddresses. - */ - inboundNatPools: InboundNatPool[]; +/** A network security group rule to apply to an inbound endpoint. */ +export interface NetworkSecurityGroupRule { + /** Priorities within a pool must be unique and are evaluated in order of priority. The lower the number the higher the priority. For example, rules could be specified with order numbers of 150, 250, and 350. The rule with the order number of 150 takes precedence over the rule that has an order of 250. Allowed priorities are 150 to 4096. If any reserved or duplicate values are provided the request fails with HTTP status code 400. */ + priority: number; + /** The action that should be taken for a specified IP address, subnet range or tag. */ + access: NetworkSecurityGroupRuleAccess; + /** Valid values are a single IP address (i.e. 10.10.10.10), IP subnet (i.e. 192.168.1.0/24), default tag, or * (for all addresses). If any other values are provided the request fails with HTTP status code 400. */ + sourceAddressPrefix: string; + /** Valid values are '*' (for all ports 0 - 65535) or arrays of ports or port ranges (i.e. 100-200). The ports should in the range of 0 to 65535 and the port ranges or ports can't overlap. If any other values are provided the request fails with HTTP status code 400. Default value will be *. */ + sourcePortRanges?: string[]; } -/** - * The public IP Address configuration of the networking configuration of a Pool. - */ +/** The public IP Address configuration of the networking configuration of a Pool. */ export interface PublicIPAddressConfiguration { - /** - * The provisioning type for Public IP Addresses for the pool. The default value is BatchManaged. - * Possible values include: 'BatchManaged', 'UserManaged', 'NoPublicIPAddresses' - */ + /** The default value is BatchManaged */ provision?: IPAddressProvisioningType; - /** - * The list of public IPs which the Batch service will use when provisioning Compute Nodes. The - * number of IPs specified here limits the maximum size of the Pool - 100 dedicated nodes or 100 - * low-priority nodes can be allocated for each public IP. For example, a pool needing 250 - * dedicated VMs would need at least 3 public IPs specified. Each element of this collection is - * of the form: - * /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/publicIPAddresses/{ip}. - */ + /** The number of IPs specified here limits the maximum size of the Pool - 100 dedicated nodes or 100 low-priority nodes can be allocated for each public IP. For example, a pool needing 250 dedicated VMs would need at least 3 public IPs specified. Each element of this collection is of the form: /subscriptions/{subscription}/resourceGroups/{group}/providers/Microsoft.Network/publicIPAddresses/{ip}. */ ipAddressIds?: string[]; } -/** - * The network configuration for a pool. - */ -export interface NetworkConfiguration { - /** - * The ARM resource identifier of the virtual network subnet which the compute nodes of the pool - * will join. This is of the form - * /subscriptions/{subscription}/resourceGroups/{group}/providers/{provider}/virtualNetworks/{network}/subnets/{subnet}. - * The virtual network must be in the same region and subscription as the Azure Batch account. - * The specified subnet should have enough free IP addresses to accommodate the number of nodes - * in the pool. If the subnet doesn't have enough free IP addresses, the pool will partially - * allocate compute nodes and a resize error will occur. The 'MicrosoftAzureBatch' service - * principal must have the 'Classic Virtual Machine Contributor' Role-Based Access Control (RBAC) - * role for the specified VNet. The specified subnet must allow communication from the Azure - * Batch service to be able to schedule tasks on the compute nodes. This can be verified by - * checking if the specified VNet has any associated Network Security Groups (NSG). If - * communication to the compute nodes in the specified subnet is denied by an NSG, then the Batch - * service will set the state of the compute nodes to unusable. If the specified VNet has any - * associated Network Security Groups (NSG), then a few reserved system ports must be enabled for - * inbound communication. For pools created with a virtual machine configuration, enable ports - * 29876 and 29877, as well as port 22 for Linux and port 3389 for Windows. For pools created - * with a cloud service configuration, enable ports 10100, 20100, and 30100. Also enable outbound - * connections to Azure Storage on port 443. For cloudServiceConfiguration pools, only 'classic' - * VNETs are supported. For more details see: - * https://docs.microsoft.com/en-us/azure/batch/batch-api-basics#virtual-network-vnet-and-firewall-configuration - */ - subnetId?: string; - /** - * The configuration for endpoints on compute nodes in the Batch pool. Pool endpoint - * configuration is only supported on pools with the virtualMachineConfiguration property. - */ - endpointConfiguration?: PoolEndpointConfiguration; - /** - * The Public IPAddress configuration for Compute Nodes in the Batch Pool. This property is only - * supported on Pools with the virtualMachineConfiguration property. - */ - publicIPAddressConfiguration?: PublicIPAddressConfiguration; -} - -/** - * An interface representing TaskSchedulingPolicy. - * @summary Specifies how tasks should be distributed across compute nodes. - */ +/** Specifies how tasks should be distributed across compute nodes. */ export interface TaskSchedulingPolicy { - /** - * How tasks should be distributed across compute nodes. Possible values include: 'Spread', - * 'Pack' - */ + /** How tasks should be distributed across compute nodes. */ nodeFillType: ComputeNodeFillType; } -/** - * An interface representing LinuxUserConfiguration. - * @summary Properties used to create a user account on a Linux node. - */ +/** Properties used to create a user on an Azure Batch node. */ +export interface UserAccount { + /** The name of the user account. */ + name: string; + /** The password for the user account. */ + password: string; + /** nonAdmin - The auto user is a standard user without elevated access. admin - The auto user is a user with elevated access and operates with full Administrator permissions. The default value is nonAdmin. */ + elevationLevel?: ElevationLevel; + /** This property is ignored if specified on a Windows pool. If not specified, the user is created with the default options. */ + linuxUserConfiguration?: LinuxUserConfiguration; + /** This property can only be specified if the user is on a Windows pool. If not specified and on a Windows pool, the user is created with the default options. */ + windowsUserConfiguration?: WindowsUserConfiguration; +} + +/** Properties used to create a user account on a Linux node. */ export interface LinuxUserConfiguration { - /** - * The user ID of the user account. The uid and gid properties must be specified together or not - * at all. If not specified the underlying operating system picks the uid. - */ + /** The uid and gid properties must be specified together or not at all. If not specified the underlying operating system picks the uid. */ uid?: number; - /** - * The group ID for the user account. The uid and gid properties must be specified together or - * not at all. If not specified the underlying operating system picks the gid. - */ + /** The uid and gid properties must be specified together or not at all. If not specified the underlying operating system picks the gid. */ gid?: number; - /** - * The SSH private key for the user account. The private key must not be password protected. The - * private key is used to automatically configure asymmetric-key based authentication for SSH - * between nodes in a Linux pool when the pool's enableInterNodeCommunication property is true - * (it is ignored if enableInterNodeCommunication is false). It does this by placing the key pair - * into the user's .ssh directory. If not specified, password-less SSH is not configured between - * nodes (no modification of the user's .ssh directory is done). - */ + /** The private key must not be password protected. The private key is used to automatically configure asymmetric-key based authentication for SSH between nodes in a Linux pool when the pool's enableInterNodeCommunication property is true (it is ignored if enableInterNodeCommunication is false). It does this by placing the key pair into the user's .ssh directory. If not specified, password-less SSH is not configured between nodes (no modification of the user's .ssh directory is done). */ sshPrivateKey?: string; } -/** - * An interface representing WindowsUserConfiguration. - * @summary Properties used to create a user account on a Windows node. - */ +/** Properties used to create a user account on a Windows node. */ export interface WindowsUserConfiguration { - /** - * Login mode for user. Specifies login mode for the user. The default value for - * VirtualMachineConfiguration pools is interactive mode and for CloudServiceConfiguration pools - * is batch mode. Possible values include: 'Batch', 'Interactive' - */ + /** Specifies login mode for the user. The default value for VirtualMachineConfiguration pools is interactive mode and for CloudServiceConfiguration pools is batch mode. */ loginMode?: LoginMode; } -/** - * An interface representing UserAccount. - * @summary Properties used to create a user on an Azure Batch node. - */ -export interface UserAccount { - /** - * The name of the user account. - */ - name: string; - /** - * The password for the user account. - */ - password: string; - /** - * The elevation level of the user account. nonAdmin - The auto user is a standard user without - * elevated access. admin - The auto user is a user with elevated access and operates with full - * Administrator permissions. The default value is nonAdmin. Possible values include: 'NonAdmin', - * 'Admin' - */ - elevationLevel?: ElevationLevel; - /** - * The Linux-specific user configuration for the user account. This property is ignored if - * specified on a Windows pool. If not specified, the user is created with the default options. - */ - linuxUserConfiguration?: LinuxUserConfiguration; - /** - * The Windows-specific user configuration for the user account. This property can only be - * specified if the user is on a Windows pool. If not specified and on a Windows pool, the user - * is created with the default options. - */ - windowsUserConfiguration?: WindowsUserConfiguration; -} - -/** - * The Batch service does not assign any meaning to this metadata; it is solely for the use of user - * code. - * @summary A name-value pair associated with a Batch service resource. - */ +/** The Batch service does not assign any meaning to this metadata; it is solely for the use of user code. */ export interface MetadataItem { - /** - * The name of the metadata item. - */ + /** The name of the metadata item. */ name: string; - /** - * The value of the metadata item. - */ + /** The value of the metadata item. */ value: string; } -/** - * An interface representing ResourceFile. - * @summary A single file or multiple files to be downloaded to a compute node. - */ +/** In some cases the start task may be re-run even though the node was not rebooted. Due to this, start tasks should be idempotent and exit gracefully if the setup they're performing has already been done. Special care should be taken to avoid start tasks which create breakaway process or install/launch services from the start task working directory, as this will block Batch from being able to re-run the start task. */ +export interface StartTask { + /** The command line does not run under a shell, and therefore cannot take advantage of shell features such as environment variable expansion. If you want to take advantage of such features, you should invoke the shell in the command line, for example using "cmd /c MyCommand" in Windows or "/bin/sh -c MyCommand" in Linux. Required if any other properties of the startTask are specified. */ + commandLine?: string; + /** A list of files that the Batch service will download to the compute node before running the command line. */ + resourceFiles?: ResourceFile[]; + /** A list of environment variable settings for the start task. */ + environmentSettings?: EnvironmentSetting[]; + /** If omitted, the task runs as a non-administrative user unique to the task. */ + userIdentity?: UserIdentity; + /** The Batch service retries a task if its exit code is nonzero. Note that this value specifically controls the number of retries. The Batch service will try the task once, and may then retry up to this limit. For example, if the maximum retry count is 3, Batch tries the task up to 4 times (one initial try and 3 retries). If the maximum retry count is 0, the Batch service does not retry the task. If the maximum retry count is -1, the Batch service retries the task without limit. */ + maxTaskRetryCount?: number; + /** If true and the start task fails on a compute node, the Batch service retries the start task up to its maximum retry count (maxTaskRetryCount). If the task has still not completed successfully after all retries, then the Batch service marks the compute node unusable, and will not schedule tasks to it. This condition can be detected via the node state and scheduling error detail. If false, the Batch service will not wait for the start task to complete. In this case, other tasks can start executing on the compute node while the start task is still running; and even if the start task fails, new tasks will continue to be scheduled on the node. The default is true. */ + waitForSuccess?: boolean; + /** When this is specified, all directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories on the node) are mapped into the container, all task environment variables are mapped into the container, and the task command line is executed in the container. */ + containerSettings?: TaskContainerSettings; +} + +/** A single file or multiple files to be downloaded to a compute node. */ export interface ResourceFile { - /** - * The storage container name in the auto storage account. The autoStorageContainerName, - * storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be - * specified. - */ + /** The autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. */ autoStorageContainerName?: string; - /** - * The URL of the blob container within Azure Blob Storage. The autoStorageContainerName, - * storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be - * specified. This URL must be readable and listable using anonymous access; that is, the Batch - * service does not present any credentials when downloading the blob. There are two ways to get - * such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read - * and list permissions on the blob, or set the ACL for the blob or its container to allow public - * access. - */ + /** The autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. This URL must be readable and listable from compute nodes. There are three ways to get such a URL for a container in Azure storage: include a Shared Access Signature (SAS) granting read and list permissions on the container, use a managed identity with read and list permissions, or set the ACL for the container to allow public access. */ storageContainerUrl?: string; - /** - * The URL of the file to download. The autoStorageContainerName, storageContainerUrl and httpUrl - * properties are mutually exclusive and one of them must be specified. If the URL is Azure Blob - * Storage, it must be readable using anonymous access; that is, the Batch service does not - * present any credentials when downloading the blob. There are two ways to get such a URL for a - * blob in Azure storage: include a Shared Access Signature (SAS) granting read permissions on - * the blob, or set the ACL for the blob or its container to allow public access. - */ + /** The autoStorageContainerName, storageContainerUrl and httpUrl properties are mutually exclusive and one of them must be specified. If the URL points to Azure Blob Storage, it must be readable from compute nodes. There are three ways to get such a URL for a blob in Azure storage: include a Shared Access Signature (SAS) granting read permissions on the blob, use a managed identity with read permission, or set the ACL for the blob or its container to allow public access. */ httpUrl?: string; - /** - * The blob prefix to use when downloading blobs from an Azure Storage container. Only the blobs - * whose names begin with the specified prefix will be downloaded. The property is valid only - * when autoStorageContainerName or storageContainerUrl is used. This prefix can be a partial - * filename or a subdirectory. If a prefix is not specified, all the files in the container will - * be downloaded. - */ + /** The property is valid only when autoStorageContainerName or storageContainerUrl is used. This prefix can be a partial filename or a subdirectory. If a prefix is not specified, all the files in the container will be downloaded. */ blobPrefix?: string; - /** - * The location on the compute node to which to download the file, relative to the task's working - * directory. If the httpUrl property is specified, the filePath is required and describes the - * path which the file will be downloaded to, including the filename. Otherwise, if the - * autoStorageContainerName or storageContainerUrl property is specified, filePath is optional - * and is the directory to download the files to. In the case where filePath is used as a - * directory, any directory structure already associated with the input data will be retained in - * full and appended to the specified filePath directory. The specified relative path cannot - * break out of the task's working directory (for example by using '..'). - */ + /** If the httpUrl property is specified, the filePath is required and describes the path which the file will be downloaded to, including the filename. Otherwise, if the autoStorageContainerName or storageContainerUrl property is specified, filePath is optional and is the directory to download the files to. In the case where filePath is used as a directory, any directory structure already associated with the input data will be retained in full and appended to the specified filePath directory. The specified relative path cannot break out of the task's working directory (for example by using '..'). */ filePath?: string; - /** - * The file permission mode attribute in octal format. This property applies only to files being - * downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile - * which will be downloaded to a Windows node. If this property is not specified for a Linux - * node, then a default value of 0770 is applied to the file. - */ + /** This property applies only to files being downloaded to Linux compute nodes. It will be ignored if it is specified for a resourceFile which will be downloaded to a Windows node. If this property is not specified for a Linux node, then a default value of 0770 is applied to the file. */ fileMode?: string; + /** The reference to a user assigned identity associated with the Batch pool which a compute node will use. */ + identityReference?: ComputeNodeIdentityReference; } -/** - * An interface representing EnvironmentSetting. - * @summary An environment variable to be set on a task process. - */ +/** An environment variable to be set on a task process. */ export interface EnvironmentSetting { - /** - * The name of the environment variable. - */ + /** The name of the environment variable. */ name: string; - /** - * The value of the environment variable. - */ + /** The value of the environment variable. */ value?: string; } -/** - * An interface representing AutoUserSpecification. - * @summary Specifies the parameters for the auto user that runs a task on the Batch service. - */ -export interface AutoUserSpecification { - /** - * The scope for the auto user. The default value is Pool. If the pool is running Windows a value - * of Task should be specified if stricter isolation between tasks is required. For example, if - * the task mutates the registry in a way which could impact other tasks, or if certificates have - * been specified on the pool which should not be accessible by normal tasks but should be - * accessible by start tasks. Possible values include: 'Task', 'Pool' - */ - scope?: AutoUserScope; - /** - * The elevation level of the auto user. The default value is nonAdmin. Possible values include: - * 'NonAdmin', 'Admin' - */ - elevationLevel?: ElevationLevel; -} - -/** - * Specify either the userName or autoUser property, but not both. - * @summary The definition of the user identity under which the task is run. - */ +/** Specify either the userName or autoUser property, but not both. */ export interface UserIdentity { - /** - * The name of the user identity under which the task is run. The userName and autoUser - * properties are mutually exclusive; you must specify one but not both. - */ + /** The userName and autoUser properties are mutually exclusive; you must specify one but not both. */ userName?: string; - /** - * The auto user under which the task is run. The userName and autoUser properties are mutually - * exclusive; you must specify one but not both. - */ + /** The userName and autoUser properties are mutually exclusive; you must specify one but not both. */ autoUser?: AutoUserSpecification; } -/** - * An interface representing TaskContainerSettings. - * @summary The container settings for a task. - */ -export interface TaskContainerSettings { - /** - * Additional options to the container create command. These additional options are supplied as - * arguments to the "docker create" command, in addition to those controlled by the Batch - * Service. - */ - containerRunOptions?: string; - /** - * The image to use to create the container in which the task will run. This is the full image - * reference, as would be specified to "docker pull". If no tag is provided as part of the image - * name, the tag ":latest" is used as a default. - */ - imageName: string; - /** - * The private registry which contains the container image. This setting can be omitted if was - * already provided at pool creation. - */ - registry?: ContainerRegistry; - /** - * A flag to indicate where the container task working directory is. The default is - * 'taskWorkingDirectory'. Possible values include: 'TaskWorkingDirectory', - * 'ContainerImageDefault' - */ - workingDirectory?: ContainerWorkingDirectory; -} - -/** - * In some cases the start task may be re-run even though the node was not rebooted. Due to this, - * start tasks should be idempotent and exit gracefully if the setup they're performing has already - * been done. Special care should be taken to avoid start tasks which create breakaway process or - * install/launch services from the start task working directory, as this will block Batch from - * being able to re-run the start task. - * @summary A task which is run when a compute node joins a pool in the Azure Batch service, or - * when the compute node is rebooted or reimaged. - */ -export interface StartTask { - /** - * The command line of the start task. The command line does not run under a shell, and therefore - * cannot take advantage of shell features such as environment variable expansion. If you want to - * take advantage of such features, you should invoke the shell in the command line, for example - * using "cmd /c MyCommand" in Windows or "/bin/sh -c MyCommand" in Linux. Required if any other - * properties of the startTask are specified. - */ - commandLine?: string; - /** - * A list of files that the Batch service will download to the compute node before running the - * command line. - */ - resourceFiles?: ResourceFile[]; - /** - * A list of environment variable settings for the start task. - */ - environmentSettings?: EnvironmentSetting[]; - /** - * The user identity under which the start task runs. If omitted, the task runs as a - * non-administrative user unique to the task. - */ - userIdentity?: UserIdentity; - /** - * The maximum number of times the task may be retried. The Batch service retries a task if its - * exit code is nonzero. Note that this value specifically controls the number of retries. The - * Batch service will try the task once, and may then retry up to this limit. For example, if the - * maximum retry count is 3, Batch tries the task up to 4 times (one initial try and 3 retries). - * If the maximum retry count is 0, the Batch service does not retry the task. If the maximum - * retry count is -1, the Batch service retries the task without limit. - */ - maxTaskRetryCount?: number; - /** - * Whether the Batch service should wait for the start task to complete successfully (that is, to - * exit with exit code 0) before scheduling any tasks on the compute node. If true and the start - * task fails on a compute node, the Batch service retries the start task up to its maximum retry - * count (maxTaskRetryCount). If the task has still not completed successfully after all retries, - * then the Batch service marks the compute node unusable, and will not schedule tasks to it. - * This condition can be detected via the node state and scheduling error detail. If false, the - * Batch service will not wait for the start task to complete. In this case, other tasks can - * start executing on the compute node while the start task is still running; and even if the - * start task fails, new tasks will continue to be scheduled on the node. The default is true. - */ - waitForSuccess?: boolean; - /** - * The settings for the container under which the start task runs. When this is specified, all - * directories recursively below the AZ_BATCH_NODE_ROOT_DIR (the root of Azure Batch directories - * on the node) are mapped into the container, all task environment variables are mapped into the - * container, and the task command line is executed in the container. - */ - containerSettings?: TaskContainerSettings; +/** Specifies the parameters for the auto user that runs a task on the Batch service. */ +export interface AutoUserSpecification { + /** The default value is Pool. If the pool is running Windows a value of Task should be specified if stricter isolation between tasks is required. For example, if the task mutates the registry in a way which could impact other tasks, or if certificates have been specified on the pool which should not be accessible by normal tasks but should be accessible by start tasks. */ + scope?: AutoUserScope; + /** The default value is nonAdmin. */ + elevationLevel?: ElevationLevel; } -/** - * An interface representing CertificateReference. - * @summary A reference to a certificate to be installed on compute nodes in a pool. This must - * exist inside the same account as the pool. - */ +/** The container settings for a task. */ +export interface TaskContainerSettings { + /** These additional options are supplied as arguments to the "docker create" command, in addition to those controlled by the Batch Service. */ + containerRunOptions?: string; + /** This is the full image reference, as would be specified to "docker pull". If no tag is provided as part of the image name, the tag ":latest" is used as a default. */ + imageName: string; + /** This setting can be omitted if was already provided at pool creation. */ + registry?: ContainerRegistry; + /** A flag to indicate where the container task working directory is. The default is 'taskWorkingDirectory'. */ + workingDirectory?: ContainerWorkingDirectory; +} + +/** A reference to a certificate to be installed on compute nodes in a pool. This must exist inside the same account as the pool. */ export interface CertificateReference { - /** - * The fully qualified ID of the certificate to install on the pool. This must be inside the same - * batch account as the pool. - */ + /** The fully qualified ID of the certificate to install on the pool. This must be inside the same batch account as the pool. */ id: string; - /** - * The location of the certificate store on the compute node into which to install the - * certificate. The default value is currentUser. This property is applicable only for pools - * configured with Windows nodes (that is, created with cloudServiceConfiguration, or with - * virtualMachineConfiguration using a Windows image reference). For Linux compute nodes, the - * certificates are stored in a directory inside the task working directory and an environment - * variable AZ_BATCH_CERTIFICATES_DIR is supplied to the task to query for this location. For - * certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's - * home directory (e.g., /home/{user-name}/certs) and certificates are placed in that directory. - * Possible values include: 'CurrentUser', 'LocalMachine' - */ + /** The default value is currentUser. This property is applicable only for pools configured with Windows nodes (that is, created with cloudServiceConfiguration, or with virtualMachineConfiguration using a Windows image reference). For Linux compute nodes, the certificates are stored in a directory inside the task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the task to query for this location. For certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and certificates are placed in that directory. */ storeLocation?: CertificateStoreLocation; - /** - * The name of the certificate store on the compute node into which to install the certificate. - * This property is applicable only for pools configured with Windows nodes (that is, created - * with cloudServiceConfiguration, or with virtualMachineConfiguration using a Windows image - * reference). Common store names include: My, Root, CA, Trust, Disallowed, TrustedPeople, - * TrustedPublisher, AuthRoot, AddressBook, but any custom store name can also be used. The - * default value is My. - */ + /** This property is applicable only for pools configured with Windows nodes (that is, created with cloudServiceConfiguration, or with virtualMachineConfiguration using a Windows image reference). Common store names include: My, Root, CA, Trust, Disallowed, TrustedPeople, TrustedPublisher, AuthRoot, AddressBook, but any custom store name can also be used. The default value is My. */ storeName?: string; - /** - * Which user accounts on the compute node should have access to the private data of the - * certificate. - */ + /** Which user accounts on the compute node should have access to the private data of the certificate. */ visibility?: CertificateVisibility[]; } -/** - * An interface representing ApplicationPackageReference. - * @summary Link to an application package inside the batch account - */ +/** Link to an application package inside the batch account */ export interface ApplicationPackageReference { - /** - * The ID of the application package to install. This must be inside the same batch account as - * the pool. This can either be a reference to a specific version or the default version if one - * exists. - */ + /** The ID of the application package to install. This must be inside the same batch account as the pool. This can either be a reference to a specific version or the default version if one exists. */ id: string; - /** - * The version of the application to deploy. If omitted, the default version is deployed. If this - * is omitted, and no default version is specified for this application, the request fails with - * the error code InvalidApplicationPackageReferences. If you are calling the REST API directly, - * the HTTP status code is 409. - */ + /** If this is omitted, and no default version is specified for this application, the request fails with the error code InvalidApplicationPackageReferences. If you are calling the REST API directly, the HTTP status code is 409. */ version?: string; } -/** - * An interface representing ResizeError. - * @summary An error that occurred when resizing a pool. - */ -export interface ResizeError { - /** - * An identifier for the error. Codes are invariant and are intended to be consumed - * programmatically. - */ - code: string; - /** - * A message describing the error, intended to be suitable for display in a user interface. - */ - message: string; - /** - * Additional details about the error. - */ - details?: ResizeError[]; -} - -/** - * Describes either the current operation (if the pool AllocationState is Resizing) or the - * previously completed operation (if the AllocationState is Steady). - * @summary Details about the current or last completed resize operation. - */ +/** Describes either the current operation (if the pool AllocationState is Resizing) or the previously completed operation (if the AllocationState is Steady). */ export interface ResizeOperationStatus { - /** - * The desired number of dedicated compute nodes in the pool. - */ + /** The desired number of dedicated compute nodes in the pool. */ targetDedicatedNodes?: number; - /** - * The desired number of low-priority compute nodes in the pool. - */ + /** The desired number of low-priority compute nodes in the pool. */ targetLowPriorityNodes?: number; - /** - * The timeout for allocation of compute nodes to the pool or removal of compute nodes from the - * pool. The default value is 15 minutes. The minimum value is 5 minutes. If you specify a value - * less than 5 minutes, the Batch service returns an error; if you are calling the REST API - * directly, the HTTP status code is 400 (Bad Request). - */ + /** The default value is 15 minutes. The minimum value is 5 minutes. If you specify a value less than 5 minutes, the Batch service returns an error; if you are calling the REST API directly, the HTTP status code is 400 (Bad Request). */ resizeTimeout?: string; - /** - * Determines what to do with a node and its running task(s) if the pool size is decreasing. The - * default value is requeue. Possible values include: 'Requeue', 'Terminate', 'TaskCompletion', - * 'RetainedData' - */ + /** The default value is requeue. */ nodeDeallocationOption?: ComputeNodeDeallocationOption; - /** - * The time when this resize operation was started. - */ + /** The time when this resize operation was started. */ startTime?: Date; - /** - * Details of any errors encountered while performing the last resize on the pool. This property - * is set only if an error occurred during the last pool resize, and only when the pool - * allocationState is Steady. - */ + /** This property is set only if an error occurred during the last pool resize, and only when the pool allocationState is Steady. */ errors?: ResizeError[]; } -/** - * An interface representing AzureBlobFileSystemConfiguration. - * @summary Information used to connect to an Azure Storage Container using Blobfuse. - */ +/** An error that occurred when resizing a pool. */ +export interface ResizeError { + /** An identifier for the error. Codes are invariant and are intended to be consumed programmatically. */ + code: string; + /** A message describing the error, intended to be suitable for display in a user interface. */ + message: string; + /** Additional details about the error. */ + details?: ResizeError[]; +} + +/** The file system to mount on each node. */ +export interface MountConfiguration { + /** This property is mutually exclusive with all other properties. */ + azureBlobFileSystemConfiguration?: AzureBlobFileSystemConfiguration; + /** This property is mutually exclusive with all other properties. */ + nfsMountConfiguration?: NFSMountConfiguration; + /** This property is mutually exclusive with all other properties. */ + cifsMountConfiguration?: CifsMountConfiguration; + /** This property is mutually exclusive with all other properties. */ + azureFileShareConfiguration?: AzureFileShareConfiguration; +} + +/** Information used to connect to an Azure Storage Container using Blobfuse. */ export interface AzureBlobFileSystemConfiguration { - /** - * The Azure Storage Account name. - */ + /** The Azure Storage Account name. */ accountName: string; - /** - * The Azure Blob Storage Container name. - */ + /** The Azure Blob Storage Container name. */ containerName: string; - /** - * The Azure Storage Account key. This property is mutually exclusive with sasKey and one must be - * specified. - */ + /** This property is mutually exclusive with both sasKey and identity; exactly one must be specified. */ accountKey?: string; - /** - * The Azure Storage SAS token. This property is mutually exclusive with accountKey and one must - * be specified. - */ + /** This property is mutually exclusive with both accountKey and identity; exactly one must be specified. */ sasKey?: string; - /** - * Additional command line options to pass to the mount command. These are 'net use' options in - * Windows and 'mount' options in Linux. - */ + /** These are 'net use' options in Windows and 'mount' options in Linux. */ blobfuseOptions?: string; - /** - * The relative path on the compute node where the file system will be mounted. All file systems - * are mounted relative to the Batch mounts directory, accessible via the - * AZ_BATCH_NODE_MOUNTS_DIR environment variable. - */ + /** All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. */ relativeMountPath: string; + /** This property is mutually exclusive with both accountKey and sasKey; exactly one must be specified. */ + identityReference?: ComputeNodeIdentityReference; } -/** - * An interface representing NFSMountConfiguration. - * @summary Information used to connect to an NFS file system. - */ +/** Information used to connect to an NFS file system. */ export interface NFSMountConfiguration { - /** - * The URI of the file system to mount. - */ + /** The URI of the file system to mount. */ source: string; - /** - * The relative path on the compute node where the file system will be mounted. All file systems - * are mounted relative to the Batch mounts directory, accessible via the - * AZ_BATCH_NODE_MOUNTS_DIR environment variable. - */ + /** All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. */ relativeMountPath: string; - /** - * Additional command line options to pass to the mount command. These are 'net use' options in - * Windows and 'mount' options in Linux. - */ + /** These are 'net use' options in Windows and 'mount' options in Linux. */ mountOptions?: string; } -/** - * An interface representing CIFSMountConfiguration. - * @summary Information used to connect to a CIFS file system. - */ -export interface CIFSMountConfiguration { - /** - * The user to use for authentication against the CIFS file system. - */ +/** Information used to connect to a CIFS file system. */ +export interface CifsMountConfiguration { + /** The user to use for authentication against the CIFS file system. */ username: string; - /** - * The URI of the file system to mount. - */ + /** The URI of the file system to mount. */ source: string; - /** - * The relative path on the compute node where the file system will be mounted. All file systems - * are mounted relative to the Batch mounts directory, accessible via the - * AZ_BATCH_NODE_MOUNTS_DIR environment variable. - */ + /** All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. */ relativeMountPath: string; - /** - * Additional command line options to pass to the mount command. These are 'net use' options in - * Windows and 'mount' options in Linux. - */ + /** These are 'net use' options in Windows and 'mount' options in Linux. */ mountOptions?: string; - /** - * The password to use for authentication against the CIFS file system. - */ + /** The password to use for authentication against the CIFS file system. */ password: string; } -/** - * An interface representing AzureFileShareConfiguration. - * @summary Information used to connect to an Azure Fileshare. - */ +/** Information used to connect to an Azure Fileshare. */ export interface AzureFileShareConfiguration { - /** - * The Azure Storage account name. - */ + /** The Azure Storage account name. */ accountName: string; - /** - * The Azure Files URL. This is of the form 'https://{account}.file.core.windows.net/'. - */ + /** This is of the form 'https://{account}.file.core.windows.net/'. */ azureFileUrl: string; - /** - * The Azure Storage account key. - */ + /** The Azure Storage account key. */ accountKey: string; - /** - * The relative path on the compute node where the file system will be mounted. All file systems - * are mounted relative to the Batch mounts directory, accessible via the - * AZ_BATCH_NODE_MOUNTS_DIR environment variable. - */ + /** All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS_DIR environment variable. */ relativeMountPath: string; - /** - * Additional command line options to pass to the mount command. These are 'net use' options in - * Windows and 'mount' options in Linux. - */ + /** These are 'net use' options in Windows and 'mount' options in Linux. */ mountOptions?: string; } -/** - * An interface representing MountConfiguration. - * @summary The file system to mount on each node. - */ -export interface MountConfiguration { - /** - * The Azure Storage Container to mount using blob FUSE on each node. This property is mutually - * exclusive with all other properties. - */ - azureBlobFileSystemConfiguration?: AzureBlobFileSystemConfiguration; - /** - * The NFS file system to mount on each node. This property is mutually exclusive with all other - * properties. - */ - nfsMountConfiguration?: NFSMountConfiguration; - /** - * The CIFS/SMB file system to mount on each node. This property is mutually exclusive with all - * other properties. - */ - cifsMountConfiguration?: CIFSMountConfiguration; - /** - * The Azure File Share to mount on each node. This property is mutually exclusive with all other - * properties. - */ - azureFileShareConfiguration?: AzureFileShareConfiguration; +/** The identity of the Batch pool, if configured. If the pool identity is updated during update an existing pool, only the new vms which are created after the pool shrinks to 0 will have the updated identities */ +export interface BatchPoolIdentity { + /** The type of identity used for the Batch Pool. */ + type: PoolIdentityType; + /** The list of user identities associated with the Batch pool. */ + userAssignedIdentities?: { [propertyName: string]: UserAssignedIdentities }; } -/** - * Contains information about a pool. - */ -export interface Pool extends ProxyResource { - /** - * The display name for the pool. The display name need not be unique and can contain any Unicode - * characters up to a maximum length of 1024. - */ - displayName?: string; - /** - * The last modified time of the pool. This is the last time at which the pool level data, such - * as the targetDedicatedNodes or autoScaleSettings, changed. It does not factor in node-level - * changes such as a compute node changing state. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly lastModified?: Date; - /** - * The creation time of the pool. **NOTE: This property will not be serialized. It can only be - * populated by the server.** - */ - readonly creationTime?: Date; - /** - * The current state of the pool. Possible values include: 'Succeeded', 'Deleting' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly provisioningState?: PoolProvisioningState; +/** Values returned by the List operation. */ +export interface OutboundEnvironmentEndpointCollection { /** - * The time at which the pool entered its current state. **NOTE: This property will not be - * serialized. It can only be populated by the server.** + * The collection of outbound network dependency endpoints returned by the listing operation. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - readonly provisioningStateTransitionTime?: Date; - /** - * Whether the pool is resizing. Possible values include: 'Steady', 'Resizing', 'Stopping' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly allocationState?: AllocationState; - /** - * The time at which the pool entered its current allocation state. **NOTE: This property will - * not be serialized. It can only be populated by the server.** - */ - readonly allocationStateTransitionTime?: Date; - /** - * The size of virtual machines in the pool. All VMs in a pool are the same size. For information - * about available sizes of virtual machines for Cloud Services pools (pools created with - * cloudServiceConfiguration), see Sizes for Cloud Services - * (https://azure.microsoft.com/documentation/articles/cloud-services-sizes-specs/). Batch - * supports all Cloud Services VM sizes except ExtraSmall. For information about available VM - * sizes for pools using images from the Virtual Machines Marketplace (pools created with - * virtualMachineConfiguration) see Sizes for Virtual Machines (Linux) - * (https://azure.microsoft.com/documentation/articles/virtual-machines-linux-sizes/) or Sizes - * for Virtual Machines (Windows) - * (https://azure.microsoft.com/documentation/articles/virtual-machines-windows-sizes/). Batch - * supports all Azure VM sizes except STANDARD_A0 and those with premium storage (STANDARD_GS, - * STANDARD_DS, and STANDARD_DSV2 series). - */ - vmSize?: string; - /** - * This property describes how the pool nodes will be deployed - using Cloud Services or Virtual - * Machines. Using CloudServiceConfiguration specifies that the nodes should be creating using - * Azure Cloud Services (PaaS), while VirtualMachineConfiguration uses Azure Virtual Machines - * (IaaS). - */ - deploymentConfiguration?: DeploymentConfiguration; - /** - * The number of compute nodes currently in the pool. **NOTE: This property will not be - * serialized. It can only be populated by the server.** - */ - readonly currentDedicatedNodes?: number; - /** - * The number of low priority compute nodes currently in the pool. **NOTE: This property will not - * be serialized. It can only be populated by the server.** - */ - readonly currentLowPriorityNodes?: number; - /** - * Settings which configure the number of nodes in the pool. - */ - scaleSettings?: ScaleSettings; - /** - * The results and errors from the last execution of the autoscale formula. This property is set - * only if the pool automatically scales, i.e. autoScaleSettings are used. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly autoScaleRun?: AutoScaleRun; - /** - * Whether the pool permits direct communication between nodes. This imposes restrictions on - * which nodes can be assigned to the pool. Enabling this value can reduce the chance of the - * requested number of nodes to be allocated in the pool. If not specified, this value defaults - * to 'Disabled'. Possible values include: 'Enabled', 'Disabled' - */ - interNodeCommunication?: InterNodeCommunicationState; - /** - * The network configuration for the pool. - */ - networkConfiguration?: NetworkConfiguration; - /** - * The number of task slots that can be used to run concurrent tasks on a single compute node in - * the pool. The default value is 1. The maximum value is the smaller of 4 times the number of - * cores of the vmSize of the pool or 256. - */ - taskSlotsPerNode?: number; - /** - * How tasks are distributed across compute nodes in a pool. If not specified, the default is - * spread. - */ - taskSchedulingPolicy?: TaskSchedulingPolicy; - /** - * The list of user accounts to be created on each node in the pool. - */ - userAccounts?: UserAccount[]; - /** - * A list of name-value pairs associated with the pool as metadata. The Batch service does not - * assign any meaning to metadata; it is solely for the use of user code. - */ - metadata?: MetadataItem[]; - /** - * A task specified to run on each compute node as it joins the pool. In an PATCH (update) - * operation, this property can be set to an empty object to remove the start task from the pool. - */ - startTask?: StartTask; - /** - * The list of certificates to be installed on each compute node in the pool. For Windows compute - * nodes, the Batch service installs the certificates to the specified certificate store and - * location. For Linux compute nodes, the certificates are stored in a directory inside the task - * working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the - * task to query for this location. For certificates with visibility of 'remoteUser', a 'certs' - * directory is created in the user's home directory (e.g., /home/{user-name}/certs) and - * certificates are placed in that directory. - */ - certificates?: CertificateReference[]; - /** - * The list of application packages to be installed on each compute node in the pool. Changes to - * application package references affect all new compute nodes joining the pool, but do not - * affect compute nodes that are already in the pool until they are rebooted or reimaged. There - * is a maximum of 10 application package references on any given pool. - */ - applicationPackages?: ApplicationPackageReference[]; - /** - * The list of application licenses the Batch service will make available on each compute node in - * the pool. The list of application licenses must be a subset of available Batch service - * application licenses. If a license is requested which is not supported, pool creation will - * fail. - */ - applicationLicenses?: string[]; - /** - * Contains details about the current or last completed resize operation. **NOTE: This property - * will not be serialized. It can only be populated by the server.** - */ - readonly resizeOperationStatus?: ResizeOperationStatus; - /** - * A list of file systems to mount on each node in the pool. This supports Azure Files, NFS, - * CIFS/SMB, and Blobfuse. - */ - mountConfiguration?: MountConfiguration[]; + readonly value?: OutboundEnvironmentEndpoint[]; + /** The continuation token. */ + nextLink?: string; } -/** - * An interface representing OperationDisplay. - * @summary The object that describes the operation. - */ -export interface OperationDisplay { +/** A collection of related endpoints from the same service for which the Batch service requires outbound access. */ +export interface OutboundEnvironmentEndpoint { /** - * Friendly name of the resource provider. + * The type of service that the Batch service connects to. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - provider?: string; - /** - * The operation type. For example: read, write, delete, or listKeys/action - */ - operation?: string; + readonly category?: string; /** - * The resource type on which the operation is performed. + * The endpoints for this service to which the Batch service makes outbound calls. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - resource?: string; - /** - * The friendly name of the operation. - */ - description?: string; + readonly endpoints?: EndpointDependency[]; } -/** - * An interface representing Operation. - * @summary A REST API operation - */ -export interface Operation { - /** - * The operation name. This is of the format {provider}/{resource}/{operation} - */ - name?: string; +/** A domain name and connection details used to access a dependency. */ +export interface EndpointDependency { /** - * The object that describes the operation. + * The domain name of the dependency. Domain names may be fully qualified or may contain a * wildcard. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - display?: OperationDisplay; + readonly domainName?: string; /** - * The intended executor of the operation. + * Human-readable supplemental information about the dependency and when it is applicable. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - origin?: string; + readonly description?: string; /** - * Properties of the operation. + * The list of connection details for this endpoint. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - properties?: any; + readonly endpointDetails?: EndpointDetail[]; } -/** - * Parameters for a check name availability request. - */ -export interface CheckNameAvailabilityParameters { +/** Details about the connection between the Batch service and the endpoint. */ +export interface EndpointDetail { /** - * The name to check for availability + * The port an endpoint is connected to. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - name: string; + readonly port?: number; } -/** - * The CheckNameAvailability operation response. - */ -export interface CheckNameAvailabilityResult { - /** - * Gets a boolean value that indicates whether the name is available for you to use. If true, the - * name is available. If false, the name has already been taken or invalid and cannot be used. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly nameAvailable?: boolean; - /** - * Gets the reason that a Batch account name could not be used. The Reason element is only - * returned if NameAvailable is false. Possible values include: 'Invalid', 'AlreadyExists' - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly reason?: NameAvailabilityReason; - /** - * Gets an error message explaining the Reason value in more detail. - * **NOTE: This property will not be serialized. It can only be populated by the server.** - */ - readonly message?: string; -} +/** Contains information about the auto-storage account associated with a Batch account. */ +export type AutoStorageProperties = AutoStorageBaseProperties & { + /** The UTC time at which storage keys were last synchronized with the Batch account. */ + lastKeySync: Date; +}; -/** - * Optional Parameters. - */ -export interface ApplicationPackageListOptionalParams extends msRest.RequestOptionsBase { +/** Contains information about a private link resource. */ +export type PrivateEndpointConnection = ProxyResource & { /** - * The maximum number of items to return in the response. + * The provisioning state of the private endpoint connection. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - maxresults?: number; -} + readonly provisioningState?: PrivateEndpointConnectionProvisioningState; + /** The private endpoint of the private endpoint connection. */ + privateEndpoint?: PrivateEndpoint; + /** The private link service connection state of the private endpoint connection */ + privateLinkServiceConnectionState?: PrivateLinkServiceConnectionState; +}; -/** - * Optional Parameters. - */ -export interface ApplicationCreateOptionalParams extends msRest.RequestOptionsBase { +/** An application package which represents a particular version of an application. */ +export type ApplicationPackage = ProxyResource & { /** - * The parameters for the request. + * The current state of the application package. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - parameters?: Application; -} - -/** - * Optional Parameters. - */ -export interface ApplicationListOptionalParams extends msRest.RequestOptionsBase { + readonly state?: PackageState; /** - * The maximum number of items to return in the response. + * The format of the application package, if the package is active. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - maxresults?: number; -} - -/** - * Optional Parameters. - */ -export interface CertificateListByBatchAccountOptionalParams extends msRest.RequestOptionsBase { + readonly format?: string; /** - * The maximum number of items to return in the response. + * The URL for the application package in Azure Storage. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - maxresults?: number; + readonly storageUrl?: string; /** - * Comma separated list of properties that should be returned. e.g. - * "properties/provisioningState". Only top level properties under properties/ are valid for - * selection. + * The UTC time at which the Azure Storage URL will expire. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - select?: string; + readonly storageUrlExpiry?: Date; /** - * OData filter expression. Valid properties for filtering are "properties/provisioningState", - * "properties/provisioningStateTransitionTime", "name". + * The time at which the package was last activated, if the package is active. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - filter?: string; -} + readonly lastActivationTime?: Date; +}; + +/** Contains information about an application in a Batch account. */ +export type Application = ProxyResource & { + /** The display name for the application. */ + displayName?: string; + /** A value indicating whether packages within the application may be overwritten using the same version string. */ + allowUpdates?: boolean; + /** The package to use if a client requests the application but does not specify a version. This property can only be set to the name of an existing package. */ + defaultVersion?: string; +}; -/** - * Optional Parameters. - */ -export interface CertificateCreateOptionalParams extends msRest.RequestOptionsBase { +/** Contains information about a certificate. */ +export type Certificate = ProxyResource & { + /** This must match the first portion of the certificate name. Currently required to be 'SHA1'. */ + thumbprintAlgorithm?: string; + /** This must match the thumbprint from the name. */ + thumbprint?: string; + /** The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx. */ + format?: CertificateFormat; + /** NOTE: This property will not be serialized. It can only be populated by the server. */ + readonly provisioningState?: CertificateProvisioningState; /** - * The entity state (ETag) version of the certificate to update. A value of "*" can be used to - * apply the operation only if the certificate already exists. If omitted, this operation will - * always be applied. + * The time at which the certificate entered its current state. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; + readonly provisioningStateTransitionTime?: Date; /** - * Set to '*' to allow a new certificate to be created, but to prevent updating an existing - * certificate. Other values will be ignored. + * The previous provisioned state of the resource + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifNoneMatch?: string; -} - -/** - * Optional Parameters. - */ -export interface CertificateUpdateOptionalParams extends msRest.RequestOptionsBase { + readonly previousProvisioningState?: CertificateProvisioningState; /** - * The entity state (ETag) version of the certificate to update. This value can be omitted or set - * to "*" to apply the operation unconditionally. + * The time at which the certificate entered its previous state. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; -} - -/** - * Optional Parameters. - */ -export interface CertificateBeginCreateOptionalParams extends msRest.RequestOptionsBase { + readonly previousProvisioningStateTransitionTime?: Date; /** - * The entity state (ETag) version of the certificate to update. A value of "*" can be used to - * apply the operation only if the certificate already exists. If omitted, this operation will - * always be applied. + * The public key of the certificate. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; + readonly publicData?: string; /** - * Set to '*' to allow a new certificate to be created, but to prevent updating an existing - * certificate. Other values will be ignored. + * This is only returned when the certificate provisioningState is 'Failed'. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifNoneMatch?: string; -} + readonly deleteCertificateError?: DeleteCertificateError; +}; -/** - * Optional Parameters. - */ -export interface PrivateLinkResourceListByBatchAccountOptionalParams extends msRest.RequestOptionsBase { - /** - * The maximum number of items to return in the response. - */ - maxresults?: number; -} +/** Contains information about a certificate. */ +export type CertificateCreateOrUpdateParameters = ProxyResource & { + /** This must match the first portion of the certificate name. Currently required to be 'SHA1'. */ + thumbprintAlgorithm?: string; + /** This must match the thumbprint from the name. */ + thumbprint?: string; + /** The format of the certificate - either Pfx or Cer. If omitted, the default is Pfx. */ + format?: CertificateFormat; + /** The maximum size is 10KB. */ + data?: string; + /** This must not be specified if the certificate format is Cer. */ + password?: string; +}; -/** - * Optional Parameters. - */ -export interface PrivateEndpointConnectionListByBatchAccountOptionalParams extends msRest.RequestOptionsBase { +/** Contains information about a private link resource. */ +export type PrivateLinkResource = ProxyResource & { /** - * The maximum number of items to return in the response. + * The group id is used to establish the private link connection. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - maxresults?: number; -} - -/** - * Optional Parameters. - */ -export interface PrivateEndpointConnectionUpdateOptionalParams extends msRest.RequestOptionsBase { + readonly groupId?: string; /** - * The state (ETag) version of the private endpoint connection to update. This value can be - * omitted or set to "*" to apply the operation unconditionally. + * The list of required members that are used to establish the private link connection. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; -} - -/** - * Optional Parameters. - */ -export interface PrivateEndpointConnectionBeginUpdateOptionalParams extends msRest.RequestOptionsBase { + readonly requiredMembers?: string[]; /** - * The state (ETag) version of the private endpoint connection to update. This value can be - * omitted or set to "*" to apply the operation unconditionally. + * The list of required zone names for the private DNS resource name + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; -} + readonly requiredZoneNames?: string[]; +}; -/** - * Optional Parameters. - */ -export interface PoolListByBatchAccountOptionalParams extends msRest.RequestOptionsBase { +/** Contains information about a pool. */ +export type Pool = ProxyResource & { + /** The type of identity used for the Batch Pool. */ + identity?: BatchPoolIdentity; + /** The display name need not be unique and can contain any Unicode characters up to a maximum length of 1024. */ + displayName?: string; /** - * The maximum number of items to return in the response. + * This is the last time at which the pool level data, such as the targetDedicatedNodes or autoScaleSettings, changed. It does not factor in node-level changes such as a compute node changing state. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - maxresults?: number; + readonly lastModified?: Date; /** - * Comma separated list of properties that should be returned. e.g. - * "properties/provisioningState". Only top level properties under properties/ are valid for - * selection. + * The creation time of the pool. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - select?: string; + readonly creationTime?: Date; /** - * OData filter expression. Valid properties for filtering are: - * - * name - * properties/allocationState - * properties/allocationStateTransitionTime - * properties/creationTime - * properties/provisioningState - * properties/provisioningStateTransitionTime - * properties/lastModified - * properties/vmSize - * properties/interNodeCommunication - * properties/scaleSettings/autoScale - * properties/scaleSettings/fixedScale + * The current state of the pool. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - filter?: string; -} - -/** - * Optional Parameters. - */ -export interface PoolCreateOptionalParams extends msRest.RequestOptionsBase { + readonly provisioningState?: PoolProvisioningState; /** - * The entity state (ETag) version of the pool to update. A value of "*" can be used to apply the - * operation only if the pool already exists. If omitted, this operation will always be applied. + * The time at which the pool entered its current state. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; + readonly provisioningStateTransitionTime?: Date; /** - * Set to '*' to allow a new pool to be created, but to prevent updating an existing pool. Other - * values will be ignored. + * Whether the pool is resizing. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifNoneMatch?: string; -} - -/** - * Optional Parameters. - */ -export interface PoolUpdateOptionalParams extends msRest.RequestOptionsBase { + readonly allocationState?: AllocationState; /** - * The entity state (ETag) version of the pool to update. This value can be omitted or set to "*" - * to apply the operation unconditionally. + * The time at which the pool entered its current allocation state. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; -} - -/** - * Optional Parameters. - */ -export interface PoolBeginCreateOptionalParams extends msRest.RequestOptionsBase { + readonly allocationStateTransitionTime?: Date; + /** For information about available sizes of virtual machines for Cloud Services pools (pools created with cloudServiceConfiguration), see Sizes for Cloud Services (https://azure.microsoft.com/documentation/articles/cloud-services-sizes-specs/). Batch supports all Cloud Services VM sizes except ExtraSmall. For information about available VM sizes for pools using images from the Virtual Machines Marketplace (pools created with virtualMachineConfiguration) see Sizes for Virtual Machines (Linux) (https://azure.microsoft.com/documentation/articles/virtual-machines-linux-sizes/) or Sizes for Virtual Machines (Windows) (https://azure.microsoft.com/documentation/articles/virtual-machines-windows-sizes/). Batch supports all Azure VM sizes except STANDARD_A0 and those with premium storage (STANDARD_GS, STANDARD_DS, and STANDARD_DSV2 series). */ + vmSize?: string; + /** Using CloudServiceConfiguration specifies that the nodes should be creating using Azure Cloud Services (PaaS), while VirtualMachineConfiguration uses Azure Virtual Machines (IaaS). */ + deploymentConfiguration?: DeploymentConfiguration; /** - * The entity state (ETag) version of the pool to update. A value of "*" can be used to apply the - * operation only if the pool already exists. If omitted, this operation will always be applied. + * The number of compute nodes currently in the pool. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifMatch?: string; + readonly currentDedicatedNodes?: number; /** - * Set to '*' to allow a new pool to be created, but to prevent updating an existing pool. Other - * values will be ignored. + * The number of low-priority compute nodes currently in the pool. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - ifNoneMatch?: string; -} - -/** - * An interface representing BatchManagementClientOptions. - */ -export interface BatchManagementClientOptions extends AzureServiceClientOptions { - baseUri?: string; -} - -/** - * Defines headers for Create operation. - */ -export interface BatchAccountCreateHeaders { + readonly currentLowPriorityNodes?: number; + /** Defines the desired size of the pool. This can either be 'fixedScale' where the requested targetDedicatedNodes is specified, or 'autoScale' which defines a formula which is periodically reevaluated. If this property is not specified, the pool will have a fixed scale with 0 targetDedicatedNodes. */ + scaleSettings?: ScaleSettings; /** - * The URL of the resource used to check the status of the asynchronous operation. + * This property is set only if the pool automatically scales, i.e. autoScaleSettings are used. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - locationHeader: string; + readonly autoScaleRun?: AutoScaleRun; + /** This imposes restrictions on which nodes can be assigned to the pool. Enabling this value can reduce the chance of the requested number of nodes to be allocated in the pool. If not specified, this value defaults to 'Disabled'. */ + interNodeCommunication?: InterNodeCommunicationState; + /** The network configuration for a pool. */ + networkConfiguration?: NetworkConfiguration; + /** The default value is 1. The maximum value is the smaller of 4 times the number of cores of the vmSize of the pool or 256. */ + taskSlotsPerNode?: number; + /** If not specified, the default is spread. */ + taskSchedulingPolicy?: TaskSchedulingPolicy; + /** The list of user accounts to be created on each node in the pool. */ + userAccounts?: UserAccount[]; + /** The Batch service does not assign any meaning to metadata; it is solely for the use of user code. */ + metadata?: MetadataItem[]; + /** In an PATCH (update) operation, this property can be set to an empty object to remove the start task from the pool. */ + startTask?: StartTask; + /** For Windows compute nodes, the Batch service installs the certificates to the specified certificate store and location. For Linux compute nodes, the certificates are stored in a directory inside the task working directory and an environment variable AZ_BATCH_CERTIFICATES_DIR is supplied to the task to query for this location. For certificates with visibility of 'remoteUser', a 'certs' directory is created in the user's home directory (e.g., /home/{user-name}/certs) and certificates are placed in that directory. */ + certificates?: CertificateReference[]; + /** Changes to application package references affect all new compute nodes joining the pool, but do not affect compute nodes that are already in the pool until they are rebooted or reimaged. There is a maximum of 10 application package references on any given pool. */ + applicationPackages?: ApplicationPackageReference[]; + /** The list of application licenses must be a subset of available Batch service application licenses. If a license is requested which is not supported, pool creation will fail. */ + applicationLicenses?: string[]; /** - * Suggested delay to check the status of the asynchronous operation. The value is an integer - * that specifies the delay in seconds. + * Describes either the current operation (if the pool AllocationState is Resizing) or the previously completed operation (if the AllocationState is Steady). + * NOTE: This property will not be serialized. It can only be populated by the server. */ - retryAfter: number; -} + readonly resizeOperationStatus?: ResizeOperationStatus; + /** This supports Azure Files, NFS, CIFS/SMB, and Blobfuse. */ + mountConfiguration?: MountConfiguration[]; +}; -/** - * Defines headers for Delete operation. - */ -export interface BatchAccountDeleteHeaders { +/** Contains information about an Azure Batch account. */ +export type BatchAccount = Resource & { + /** The identity of the Batch account. */ + identity?: BatchAccountIdentity; /** - * The URL of the resource used to check the status of the asynchronous operation. + * The account endpoint used to interact with the Batch service. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - location: string; + readonly accountEndpoint?: string; /** - * Suggested delay to check the status of the asynchronous operation. The value is an integer - * that specifies the delay in seconds. + * The provisioned state of the resource + * NOTE: This property will not be serialized. It can only be populated by the server. */ - retryAfter: number; -} - -/** - * Defines headers for Create operation. - */ -export interface CertificateCreateHeaders { + readonly provisioningState?: ProvisioningState; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * The allocation mode for creating pools in the Batch account. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * Defines headers for Update operation. - */ -export interface CertificateUpdateHeaders { + readonly poolAllocationMode?: PoolAllocationMode; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * Identifies the Azure key vault associated with a Batch account. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * Defines headers for Delete operation. - */ -export interface CertificateDeleteHeaders { + readonly keyVaultReference?: KeyVaultReference; /** - * The URL of the resource used to check the status of the asynchronous operation. + * If not specified, the default value is 'enabled'. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - location: string; + readonly publicNetworkAccess?: PublicNetworkAccessType; /** - * Suggested delay to check the status of the asynchronous operation. The value is an integer - * that represents the seconds. + * List of private endpoint connections associated with the Batch account + * NOTE: This property will not be serialized. It can only be populated by the server. */ - retryAfter: number; -} - -/** - * Defines headers for Get operation. - */ -export interface CertificateGetHeaders { + readonly privateEndpointConnections?: PrivateEndpointConnection[]; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * Contains information about the auto-storage account associated with a Batch account. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * Defines headers for CancelDeletion operation. - */ -export interface CertificateCancelDeletionHeaders { + readonly autoStorage?: AutoStorageProperties; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * Configures how customer data is encrypted inside the Batch account. By default, accounts are encrypted using a Microsoft managed key. For additional control, a customer-managed key can be used instead. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * Defines headers for Update operation. - */ -export interface PrivateEndpointConnectionUpdateHeaders { + readonly encryption?: EncryptionProperties; /** - * The URL of the resource used to check the status of the asynchronous operation. + * For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - location: string; + readonly dedicatedCoreQuota?: number; /** - * Suggested delay to check the status of the asynchronous operation. The value is an integer - * that represents the seconds. + * For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - retryAfter: number; -} - -/** - * Defines headers for Create operation. - */ -export interface PoolCreateHeaders { + readonly lowPriorityCoreQuota?: number; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * A list of the dedicated core quota per Virtual Machine family for the Batch account. For accounts with PoolAllocationMode set to UserSubscription, quota is managed on the subscription so this value is not returned. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * Defines headers for Update operation. - */ -export interface PoolUpdateHeaders { + readonly dedicatedCoreQuotaPerVMFamily?: VirtualMachineFamilyCoreQuota[]; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * Batch is transitioning its core quota system for dedicated cores to be enforced per Virtual Machine family. During this transitional phase, the dedicated core quota per Virtual Machine family may not yet be enforced. If this flag is false, dedicated core quota is enforced via the old dedicatedCoreQuota property on the account and does not consider Virtual Machine family. If this flag is true, dedicated core quota is enforced via the dedicatedCoreQuotaPerVMFamily property on the account, and the old dedicatedCoreQuota does not apply. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * Defines headers for Delete operation. - */ -export interface PoolDeleteHeaders { + readonly dedicatedCoreQuotaPerVMFamilyEnforced?: boolean; /** - * The URL of the resource used to check the status of the asynchronous operation. + * The pool quota for the Batch account. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - location: string; + readonly poolQuota?: number; /** - * Suggested delay to check the status of the asynchronous operation. The value is an integer - * that represents the seconds. + * The active job and job schedule quota for the Batch account. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - retryAfter: number; -} - -/** - * Defines headers for Get operation. - */ -export interface PoolGetHeaders { + readonly activeJobAndJobScheduleQuota?: number; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * List of allowed authentication modes for the Batch account that can be used to authenticate with the data plane. This does not affect authentication with the control plane. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} + readonly allowedAuthenticationModes?: AuthenticationMode[]; +}; -/** - * Defines headers for DisableAutoScale operation. - */ -export interface PoolDisableAutoScaleHeaders { +/** Certificate properties. */ +export type CertificateProperties = CertificateBaseProperties & { + /** NOTE: This property will not be serialized. It can only be populated by the server. */ + readonly provisioningState?: CertificateProvisioningState; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * The time at which the certificate entered its current state. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * Defines headers for StopResize operation. - */ -export interface PoolStopResizeHeaders { + readonly provisioningStateTransitionTime?: Date; /** - * The ETag HTTP response header. This is an opaque string. You can use it to detect whether the - * resource has changed between requests. In particular, you can pass the ETag to one of the - * If-Match or If-None-Match headers. + * The previous provisioned state of the resource + * NOTE: This property will not be serialized. It can only be populated by the server. */ - eTag: string; -} - -/** - * @interface - * Values returned by the List operation. - * @extends Array - */ -export interface BatchAccountListResult extends Array { + readonly previousProvisioningState?: CertificateProvisioningState; /** - * The continuation token. + * The time at which the certificate entered its previous state. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - nextLink?: string; -} - -/** - * @interface - * The result of performing list application packages. - * @extends Array - */ -export interface ListApplicationPackagesResult extends Array { + readonly previousProvisioningStateTransitionTime?: Date; /** - * The URL to get the next set of results. + * The public key of the certificate. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - nextLink?: string; -} - -/** - * @interface - * The result of performing list applications. - * @extends Array - */ -export interface ListApplicationsResult extends Array { + readonly publicData?: string; /** - * The URL to get the next set of results. + * This is only returned when the certificate provisioningState is 'Failed'. + * NOTE: This property will not be serialized. It can only be populated by the server. */ - nextLink?: string; -} + readonly deleteCertificateError?: DeleteCertificateError; +}; -/** - * @interface - * An interface representing the OperationListResult. - * @summary Result of the request to list REST API operations. It contains a list of operations and - * a URL nextLink to get the next set of results. - * @extends Array - */ -export interface OperationListResult extends Array { - nextLink?: string; -} +/** Certificate properties for create operations */ +export type CertificateCreateOrUpdateProperties = CertificateBaseProperties & { + /** The maximum size is 10KB. */ + data: string; + /** This must not be specified if the certificate format is Cer. */ + password?: string; +}; -/** - * @interface - * Values returned by the List operation. - * @extends Array - */ -export interface ListCertificatesResult extends Array { - /** - * The continuation token. - */ - nextLink?: string; +/** Defines headers for BatchAccount_create operation. */ +export interface BatchAccountCreateHeaders { + /** The URL of the resource used to check the status of the asynchronous operation. */ + location?: string; + /** Suggested delay to check the status of the asynchronous operation. The value is an integer that specifies the delay in seconds. */ + retryAfter?: number; } -/** - * @interface - * Values returned by the List operation. - * @extends Array - */ -export interface ListPrivateLinkResourcesResult extends Array { - /** - * The continuation token. - */ - nextLink?: string; +/** Defines headers for BatchAccount_delete operation. */ +export interface BatchAccountDeleteHeaders { + /** The URL of the resource used to check the status of the asynchronous operation. */ + location?: string; + /** Suggested delay to check the status of the asynchronous operation. The value is an integer that specifies the delay in seconds. */ + retryAfter?: number; } -/** - * @interface - * Values returned by the List operation. - * @extends Array - */ -export interface ListPrivateEndpointConnectionsResult extends Array { - /** - * The continuation token. - */ - nextLink?: string; +/** Defines headers for Certificate_create operation. */ +export interface CertificateCreateHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; } -/** - * @interface - * Values returned by the List operation. - * @extends Array - */ -export interface ListPoolsResult extends Array { - /** - * The continuation token. - */ - nextLink?: string; +/** Defines headers for Certificate_update operation. */ +export interface CertificateUpdateHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; } -/** - * Defines values for KeySource. - * Possible values include: 'Microsoft.Batch', 'Microsoft.KeyVault' - * @readonly - * @enum {string} - */ -export type KeySource = 'Microsoft.Batch' | 'Microsoft.KeyVault'; - -/** - * Defines values for PoolAllocationMode. - * Possible values include: 'BatchService', 'UserSubscription' - * @readonly - * @enum {string} - */ -export type PoolAllocationMode = 'BatchService' | 'UserSubscription'; - -/** - * Defines values for PublicNetworkAccessType. - * Possible values include: 'Enabled', 'Disabled' - * @readonly - * @enum {string} - */ -export type PublicNetworkAccessType = 'Enabled' | 'Disabled'; - -/** - * Defines values for ResourceIdentityType. - * Possible values include: 'SystemAssigned', 'None' - * @readonly - * @enum {string} - */ -export type ResourceIdentityType = 'SystemAssigned' | 'None'; - -/** - * Defines values for ProvisioningState. - * Possible values include: 'Invalid', 'Creating', 'Deleting', 'Succeeded', 'Failed', 'Cancelled' - * @readonly - * @enum {string} - */ -export type ProvisioningState = 'Invalid' | 'Creating' | 'Deleting' | 'Succeeded' | 'Failed' | 'Cancelled'; - -/** - * Defines values for PrivateEndpointConnectionProvisioningState. - * Possible values include: 'Succeeded', 'Updating', 'Failed' - * @readonly - * @enum {string} - */ -export type PrivateEndpointConnectionProvisioningState = 'Succeeded' | 'Updating' | 'Failed'; - -/** - * Defines values for PrivateLinkServiceConnectionStatus. - * Possible values include: 'Approved', 'Pending', 'Rejected', 'Disconnected' - * @readonly - * @enum {string} - */ -export type PrivateLinkServiceConnectionStatus = 'Approved' | 'Pending' | 'Rejected' | 'Disconnected'; - -/** - * Defines values for AccountKeyType. - * Possible values include: 'Primary', 'Secondary' - * @readonly - * @enum {string} - */ -export type AccountKeyType = 'Primary' | 'Secondary'; - -/** - * Defines values for PackageState. - * Possible values include: 'Pending', 'Active' - * @readonly - * @enum {string} - */ -export type PackageState = 'Pending' | 'Active'; - -/** - * Defines values for CertificateFormat. - * Possible values include: 'Pfx', 'Cer' - * @readonly - * @enum {string} - */ -export type CertificateFormat = 'Pfx' | 'Cer'; - -/** - * Defines values for CertificateProvisioningState. - * Possible values include: 'Succeeded', 'Deleting', 'Failed' - * @readonly - * @enum {string} - */ -export type CertificateProvisioningState = 'Succeeded' | 'Deleting' | 'Failed'; - -/** - * Defines values for PoolProvisioningState. - * Possible values include: 'Succeeded', 'Deleting' - * @readonly - * @enum {string} - */ -export type PoolProvisioningState = 'Succeeded' | 'Deleting'; - -/** - * Defines values for AllocationState. - * Possible values include: 'Steady', 'Resizing', 'Stopping' - * @readonly - * @enum {string} - */ -export type AllocationState = 'Steady' | 'Resizing' | 'Stopping'; - -/** - * Defines values for CachingType. - * Possible values include: 'None', 'ReadOnly', 'ReadWrite' - * @readonly - * @enum {string} - */ -export type CachingType = 'None' | 'ReadOnly' | 'ReadWrite'; - -/** - * Defines values for StorageAccountType. - * Possible values include: 'Standard_LRS', 'Premium_LRS' - * @readonly - * @enum {string} - */ -export type StorageAccountType = 'Standard_LRS' | 'Premium_LRS'; +/** Defines headers for Certificate_delete operation. */ +export interface CertificateDeleteHeaders { + /** The URL of the resource used to check the status of the asynchronous operation. */ + location?: string; + /** Suggested delay to check the status of the asynchronous operation. The value is an integer that represents the seconds. */ + retryAfter?: number; +} -/** - * Defines values for DiskEncryptionTarget. - * Possible values include: 'OsDisk', 'TemporaryDisk' - * @readonly - * @enum {string} - */ -export type DiskEncryptionTarget = 'OsDisk' | 'TemporaryDisk'; +/** Defines headers for Certificate_get operation. */ +export interface CertificateGetHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; +} -/** - * Defines values for ComputeNodeDeallocationOption. - * Possible values include: 'Requeue', 'Terminate', 'TaskCompletion', 'RetainedData' - * @readonly - * @enum {string} - */ -export type ComputeNodeDeallocationOption = 'Requeue' | 'Terminate' | 'TaskCompletion' | 'RetainedData'; +/** Defines headers for Certificate_cancelDeletion operation. */ +export interface CertificateCancelDeletionHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; +} -/** - * Defines values for InterNodeCommunicationState. - * Possible values include: 'Enabled', 'Disabled' - * @readonly - * @enum {string} - */ -export type InterNodeCommunicationState = 'Enabled' | 'Disabled'; +/** Defines headers for PrivateEndpointConnection_update operation. */ +export interface PrivateEndpointConnectionUpdateHeaders { + /** The URL of the resource used to check the status of the asynchronous operation. */ + location?: string; + /** Suggested delay to check the status of the asynchronous operation. The value is an integer that represents the seconds. */ + retryAfter?: number; +} -/** - * Defines values for InboundEndpointProtocol. - * Possible values include: 'TCP', 'UDP' - * @readonly - * @enum {string} - */ -export type InboundEndpointProtocol = 'TCP' | 'UDP'; +/** Defines headers for Pool_create operation. */ +export interface PoolCreateHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; +} -/** - * Defines values for NetworkSecurityGroupRuleAccess. - * Possible values include: 'Allow', 'Deny' - * @readonly - * @enum {string} - */ -export type NetworkSecurityGroupRuleAccess = 'Allow' | 'Deny'; +/** Defines headers for Pool_update operation. */ +export interface PoolUpdateHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; +} -/** - * Defines values for IPAddressProvisioningType. - * Possible values include: 'BatchManaged', 'UserManaged', 'NoPublicIPAddresses' - * @readonly - * @enum {string} - */ -export type IPAddressProvisioningType = 'BatchManaged' | 'UserManaged' | 'NoPublicIPAddresses'; +/** Defines headers for Pool_delete operation. */ +export interface PoolDeleteHeaders { + /** The URL of the resource used to check the status of the asynchronous operation. */ + location?: string; + /** Suggested delay to check the status of the asynchronous operation. The value is an integer that represents the seconds. */ + retryAfter?: number; +} -/** - * Defines values for ComputeNodeFillType. - * Possible values include: 'Spread', 'Pack' - * @readonly - * @enum {string} - */ -export type ComputeNodeFillType = 'Spread' | 'Pack'; +/** Defines headers for Pool_get operation. */ +export interface PoolGetHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; +} -/** - * Defines values for ElevationLevel. - * Possible values include: 'NonAdmin', 'Admin' - * @readonly - * @enum {string} - */ -export type ElevationLevel = 'NonAdmin' | 'Admin'; +/** Defines headers for Pool_disableAutoScale operation. */ +export interface PoolDisableAutoScaleHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; +} -/** - * Defines values for LoginMode. - * Possible values include: 'Batch', 'Interactive' - * @readonly - * @enum {string} - */ -export type LoginMode = 'Batch' | 'Interactive'; +/** Defines headers for Pool_stopResize operation. */ +export interface PoolStopResizeHeaders { + /** The ETag HTTP response header. This is an opaque string. You can use it to detect whether the resource has changed between requests. In particular, you can pass the ETag to one of the If-Match or If-None-Match headers. */ + eTag?: string; +} + +/** Defines values for AutoStorageAuthenticationMode. */ +export type AutoStorageAuthenticationMode = + | "StorageKeys" + | "BatchAccountManagedIdentity"; +/** Defines values for PoolAllocationMode. */ +export type PoolAllocationMode = "BatchService" | "UserSubscription"; +/** Defines values for PublicNetworkAccessType. */ +export type PublicNetworkAccessType = "Enabled" | "Disabled"; +/** Defines values for KeySource. */ +export type KeySource = "Microsoft.Batch" | "Microsoft.KeyVault"; +/** Defines values for AuthenticationMode. */ +export type AuthenticationMode = + | "SharedKey" + | "AAD" + | "TaskAuthenticationToken"; +/** Defines values for ResourceIdentityType. */ +export type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "None"; +/** Defines values for ProvisioningState. */ +export type ProvisioningState = + | "Invalid" + | "Creating" + | "Deleting" + | "Succeeded" + | "Failed" + | "Cancelled"; +/** Defines values for PrivateEndpointConnectionProvisioningState. */ +export type PrivateEndpointConnectionProvisioningState = + | "Succeeded" + | "Updating" + | "Failed"; +/** Defines values for PrivateLinkServiceConnectionStatus. */ +export type PrivateLinkServiceConnectionStatus = + | "Approved" + | "Pending" + | "Rejected" + | "Disconnected"; +/** Defines values for AccountKeyType. */ +export type AccountKeyType = "Primary" | "Secondary"; +/** Defines values for PackageState. */ +export type PackageState = "Pending" | "Active"; +/** Defines values for NameAvailabilityReason. */ +export type NameAvailabilityReason = "Invalid" | "AlreadyExists"; +/** Defines values for CertificateProvisioningState. */ +export type CertificateProvisioningState = "Succeeded" | "Deleting" | "Failed"; +/** Defines values for CertificateFormat. */ +export type CertificateFormat = "Pfx" | "Cer"; +/** Defines values for PoolProvisioningState. */ +export type PoolProvisioningState = "Succeeded" | "Deleting"; +/** Defines values for AllocationState. */ +export type AllocationState = "Steady" | "Resizing" | "Stopping"; +/** Defines values for CachingType. */ +export type CachingType = "None" | "ReadOnly" | "ReadWrite"; +/** Defines values for StorageAccountType. */ +export type StorageAccountType = "Standard_LRS" | "Premium_LRS"; +/** Defines values for DiskEncryptionTarget. */ +export type DiskEncryptionTarget = "OsDisk" | "TemporaryDisk"; +/** Defines values for NodePlacementPolicyType. */ +export type NodePlacementPolicyType = "Regional" | "Zonal"; +/** Defines values for ComputeNodeDeallocationOption. */ +export type ComputeNodeDeallocationOption = + | "Requeue" + | "Terminate" + | "TaskCompletion" + | "RetainedData"; +/** Defines values for InterNodeCommunicationState. */ +export type InterNodeCommunicationState = "Enabled" | "Disabled"; +/** Defines values for InboundEndpointProtocol. */ +export type InboundEndpointProtocol = "TCP" | "UDP"; +/** Defines values for NetworkSecurityGroupRuleAccess. */ +export type NetworkSecurityGroupRuleAccess = "Allow" | "Deny"; +/** Defines values for IPAddressProvisioningType. */ +export type IPAddressProvisioningType = + | "BatchManaged" + | "UserManaged" + | "NoPublicIPAddresses"; +/** Defines values for ComputeNodeFillType. */ +export type ComputeNodeFillType = "Spread" | "Pack"; +/** Defines values for ElevationLevel. */ +export type ElevationLevel = "NonAdmin" | "Admin"; +/** Defines values for LoginMode. */ +export type LoginMode = "Batch" | "Interactive"; +/** Defines values for AutoUserScope. */ +export type AutoUserScope = "Task" | "Pool"; +/** Defines values for ContainerWorkingDirectory. */ +export type ContainerWorkingDirectory = + | "TaskWorkingDirectory" + | "ContainerImageDefault"; +/** Defines values for CertificateStoreLocation. */ +export type CertificateStoreLocation = "CurrentUser" | "LocalMachine"; +/** Defines values for CertificateVisibility. */ +export type CertificateVisibility = "StartTask" | "Task" | "RemoteUser"; +/** Defines values for PoolIdentityType. */ +export type PoolIdentityType = "UserAssigned" | "None"; + +/** Optional parameters. */ +export interface BatchAccountCreateOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Contains response data for the create operation. */ +export type BatchAccountCreateResponse = BatchAccount; + +/** Optional parameters. */ +export interface BatchAccountUpdateOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the update operation. */ +export type BatchAccountUpdateResponse = BatchAccount; + +/** Optional parameters. */ +export interface BatchAccountDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} + +/** Optional parameters. */ +export interface BatchAccountGetOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the get operation. */ +export type BatchAccountGetResponse = BatchAccount; + +/** Optional parameters. */ +export interface BatchAccountListOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the list operation. */ +export type BatchAccountListResponse = BatchAccountListResult; + +/** Optional parameters. */ +export interface BatchAccountListByResourceGroupOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listByResourceGroup operation. */ +export type BatchAccountListByResourceGroupResponse = BatchAccountListResult; + +/** Optional parameters. */ +export interface BatchAccountSynchronizeAutoStorageKeysOptionalParams + extends coreClient.OperationOptions {} + +/** Optional parameters. */ +export interface BatchAccountRegenerateKeyOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the regenerateKey operation. */ +export type BatchAccountRegenerateKeyResponse = BatchAccountKeys; + +/** Optional parameters. */ +export interface BatchAccountGetKeysOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the getKeys operation. */ +export type BatchAccountGetKeysResponse = BatchAccountKeys; + +/** Optional parameters. */ +export interface BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listOutboundNetworkDependenciesEndpoints operation. */ +export type BatchAccountListOutboundNetworkDependenciesEndpointsResponse = OutboundEnvironmentEndpointCollection; + +/** Optional parameters. */ +export interface BatchAccountListNextOptionalParams + extends coreClient.OperationOptions {} + +/** Contains response data for the listNext operation. */ +export type BatchAccountListNextResponse = BatchAccountListResult; + +/** Optional parameters. */ +export interface BatchAccountListByResourceGroupNextOptionalParams + extends coreClient.OperationOptions {} -/** - * Defines values for AutoUserScope. - * Possible values include: 'Task', 'Pool' - * @readonly - * @enum {string} - */ -export type AutoUserScope = 'Task' | 'Pool'; +/** Contains response data for the listByResourceGroupNext operation. */ +export type BatchAccountListByResourceGroupNextResponse = BatchAccountListResult; -/** - * Defines values for ContainerWorkingDirectory. - * Possible values include: 'TaskWorkingDirectory', 'ContainerImageDefault' - * @readonly - * @enum {string} - */ -export type ContainerWorkingDirectory = 'TaskWorkingDirectory' | 'ContainerImageDefault'; +/** Optional parameters. */ +export interface BatchAccountListOutboundNetworkDependenciesEndpointsNextOptionalParams + extends coreClient.OperationOptions {} -/** - * Defines values for CertificateStoreLocation. - * Possible values include: 'CurrentUser', 'LocalMachine' - * @readonly - * @enum {string} - */ -export type CertificateStoreLocation = 'CurrentUser' | 'LocalMachine'; +/** Contains response data for the listOutboundNetworkDependenciesEndpointsNext operation. */ +export type BatchAccountListOutboundNetworkDependenciesEndpointsNextResponse = OutboundEnvironmentEndpointCollection; -/** - * Defines values for CertificateVisibility. - * Possible values include: 'StartTask', 'Task', 'RemoteUser' - * @readonly - * @enum {string} - */ -export type CertificateVisibility = 'StartTask' | 'Task' | 'RemoteUser'; +/** Optional parameters. */ +export interface ApplicationPackageActivateOptionalParams + extends coreClient.OperationOptions {} -/** - * Defines values for NameAvailabilityReason. - * Possible values include: 'Invalid', 'AlreadyExists' - * @readonly - * @enum {string} - */ -export type NameAvailabilityReason = 'Invalid' | 'AlreadyExists'; +/** Contains response data for the activate operation. */ +export type ApplicationPackageActivateResponse = ApplicationPackage; -/** - * Contains response data for the create operation. - */ -export type BatchAccountCreateResponse = BatchAccount & BatchAccountCreateHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: BatchAccountCreateHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccount; - }; -}; +/** Optional parameters. */ +export interface ApplicationPackageCreateOptionalParams + extends coreClient.OperationOptions { + /** The parameters for the request. */ + parameters?: ApplicationPackage; +} -/** - * Contains response data for the update operation. - */ -export type BatchAccountUpdateResponse = BatchAccount & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the create operation. */ +export type ApplicationPackageCreateResponse = ApplicationPackage; - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccount; - }; -}; +/** Optional parameters. */ +export interface ApplicationPackageDeleteOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the deleteMethod operation. - */ -export type BatchAccountDeleteResponse = BatchAccountDeleteHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: BatchAccountDeleteHeaders; - }; -}; +/** Optional parameters. */ +export interface ApplicationPackageGetOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the get operation. - */ -export type BatchAccountGetResponse = BatchAccount & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the get operation. */ +export type ApplicationPackageGetResponse = ApplicationPackage; - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccount; - }; -}; +/** Optional parameters. */ +export interface ApplicationPackageListOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} -/** - * Contains response data for the list operation. - */ -export type BatchAccountListResponse = BatchAccountListResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the list operation. */ +export type ApplicationPackageListResponse = ListApplicationPackagesResult; - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccountListResult; - }; -}; +/** Optional parameters. */ +export interface ApplicationPackageListNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} -/** - * Contains response data for the listByResourceGroup operation. - */ -export type BatchAccountListByResourceGroupResponse = BatchAccountListResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the listNext operation. */ +export type ApplicationPackageListNextResponse = ListApplicationPackagesResult; - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccountListResult; - }; -}; +/** Optional parameters. */ +export interface ApplicationCreateOptionalParams + extends coreClient.OperationOptions { + /** The parameters for the request. */ + parameters?: Application; +} -/** - * Contains response data for the regenerateKey operation. - */ -export type BatchAccountRegenerateKeyResponse = BatchAccountKeys & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the create operation. */ +export type ApplicationCreateResponse = Application; - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccountKeys; - }; -}; +/** Optional parameters. */ +export interface ApplicationDeleteOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the getKeys operation. - */ -export type BatchAccountGetKeysResponse = BatchAccountKeys & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface ApplicationGetOptionalParams + extends coreClient.OperationOptions {} - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccountKeys; - }; -}; +/** Contains response data for the get operation. */ +export type ApplicationGetResponse = Application; -/** - * Contains response data for the listNext operation. - */ -export type BatchAccountListNextResponse = BatchAccountListResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface ApplicationUpdateOptionalParams + extends coreClient.OperationOptions {} - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccountListResult; - }; -}; +/** Contains response data for the update operation. */ +export type ApplicationUpdateResponse = Application; -/** - * Contains response data for the listByResourceGroupNext operation. - */ -export type BatchAccountListByResourceGroupNextResponse = BatchAccountListResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface ApplicationListOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchAccountListResult; - }; -}; +/** Contains response data for the list operation. */ +export type ApplicationListResponse = ListApplicationsResult; -/** - * Contains response data for the activate operation. - */ -export type ApplicationPackageActivateResponse = ApplicationPackage & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface ApplicationListNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ApplicationPackage; - }; -}; +/** Contains response data for the listNext operation. */ +export type ApplicationListNextResponse = ListApplicationsResult; -/** - * Contains response data for the create operation. - */ -export type ApplicationPackageCreateResponse = ApplicationPackage & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface LocationGetQuotasOptionalParams + extends coreClient.OperationOptions {} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ApplicationPackage; - }; -}; +/** Contains response data for the getQuotas operation. */ +export type LocationGetQuotasResponse = BatchLocationQuota; -/** - * Contains response data for the get operation. - */ -export type ApplicationPackageGetResponse = ApplicationPackage & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface LocationListSupportedVirtualMachineSkusOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; + /** OData filter expression. Valid properties for filtering are "familyName". */ + filter?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ApplicationPackage; - }; -}; +/** Contains response data for the listSupportedVirtualMachineSkus operation. */ +export type LocationListSupportedVirtualMachineSkusResponse = SupportedSkusResult; -/** - * Contains response data for the list operation. - */ -export type ApplicationPackageListResponse = ListApplicationPackagesResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface LocationListSupportedCloudServiceSkusOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; + /** OData filter expression. Valid properties for filtering are "familyName". */ + filter?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListApplicationPackagesResult; - }; -}; +/** Contains response data for the listSupportedCloudServiceSkus operation. */ +export type LocationListSupportedCloudServiceSkusResponse = SupportedSkusResult; -/** - * Contains response data for the listNext operation. - */ -export type ApplicationPackageListNextResponse = ListApplicationPackagesResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface LocationCheckNameAvailabilityOptionalParams + extends coreClient.OperationOptions {} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListApplicationPackagesResult; - }; -}; +/** Contains response data for the checkNameAvailability operation. */ +export type LocationCheckNameAvailabilityResponse = CheckNameAvailabilityResult; -/** - * Contains response data for the create operation. - */ -export type ApplicationCreateResponse = Application & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface LocationListSupportedVirtualMachineSkusNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; + /** OData filter expression. Valid properties for filtering are "familyName". */ + filter?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: Application; - }; -}; +/** Contains response data for the listSupportedVirtualMachineSkusNext operation. */ +export type LocationListSupportedVirtualMachineSkusNextResponse = SupportedSkusResult; -/** - * Contains response data for the get operation. - */ -export type ApplicationGetResponse = Application & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface LocationListSupportedCloudServiceSkusNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; + /** OData filter expression. Valid properties for filtering are "familyName". */ + filter?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: Application; - }; -}; +/** Contains response data for the listSupportedCloudServiceSkusNext operation. */ +export type LocationListSupportedCloudServiceSkusNextResponse = SupportedSkusResult; -/** - * Contains response data for the update operation. - */ -export type ApplicationUpdateResponse = Application & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface OperationsListOptionalParams + extends coreClient.OperationOptions {} - /** - * The response body as parsed JSON or XML - */ - parsedBody: Application; - }; -}; +/** Contains response data for the list operation. */ +export type OperationsListResponse = OperationListResult; -/** - * Contains response data for the list operation. - */ -export type ApplicationListResponse = ListApplicationsResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface OperationsListNextOptionalParams + extends coreClient.OperationOptions {} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListApplicationsResult; - }; -}; +/** Contains response data for the listNext operation. */ +export type OperationsListNextResponse = OperationListResult; -/** - * Contains response data for the listNext operation. - */ -export type ApplicationListNextResponse = ListApplicationsResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface CertificateListByBatchAccountOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; + /** OData filter expression. Valid properties for filtering are "properties/provisioningState", "properties/provisioningStateTransitionTime", "name". */ + filter?: string; + /** Comma separated list of properties that should be returned. e.g. "properties/provisioningState". Only top level properties under properties/ are valid for selection. */ + select?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListApplicationsResult; - }; -}; +/** Contains response data for the listByBatchAccount operation. */ +export type CertificateListByBatchAccountResponse = ListCertificatesResult; -/** - * Contains response data for the getQuotas operation. - */ -export type LocationGetQuotasResponse = BatchLocationQuota & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface CertificateCreateOptionalParams + extends coreClient.OperationOptions { + /** The entity state (ETag) version of the certificate to update. A value of "*" can be used to apply the operation only if the certificate already exists. If omitted, this operation will always be applied. */ + ifMatch?: string; + /** Set to '*' to allow a new certificate to be created, but to prevent updating an existing certificate. Other values will be ignored. */ + ifNoneMatch?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: BatchLocationQuota; - }; -}; +/** Contains response data for the create operation. */ +export type CertificateCreateResponse = CertificateCreateHeaders & Certificate; -/** - * Contains response data for the checkNameAvailability operation. - */ -export type LocationCheckNameAvailabilityResponse = CheckNameAvailabilityResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface CertificateUpdateOptionalParams + extends coreClient.OperationOptions { + /** The entity state (ETag) version of the certificate to update. This value can be omitted or set to "*" to apply the operation unconditionally. */ + ifMatch?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: CheckNameAvailabilityResult; - }; -}; +/** Contains response data for the update operation. */ +export type CertificateUpdateResponse = CertificateUpdateHeaders & Certificate; -/** - * Contains response data for the list operation. - */ -export type OperationsListResponse = OperationListResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface CertificateDeleteOptionalParams + extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: OperationListResult; - }; -}; +/** Optional parameters. */ +export interface CertificateGetOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the listNext operation. - */ -export type OperationsListNextResponse = OperationListResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the get operation. */ +export type CertificateGetResponse = CertificateGetHeaders & Certificate; - /** - * The response body as parsed JSON or XML - */ - parsedBody: OperationListResult; - }; -}; +/** Optional parameters. */ +export interface CertificateCancelDeletionOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the listByBatchAccount operation. - */ -export type CertificateListByBatchAccountResponse = ListCertificatesResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the cancelDeletion operation. */ +export type CertificateCancelDeletionResponse = CertificateCancelDeletionHeaders & + Certificate; - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListCertificatesResult; - }; -}; +/** Optional parameters. */ +export interface CertificateListByBatchAccountNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; + /** OData filter expression. Valid properties for filtering are "properties/provisioningState", "properties/provisioningStateTransitionTime", "name". */ + filter?: string; + /** Comma separated list of properties that should be returned. e.g. "properties/provisioningState". Only top level properties under properties/ are valid for selection. */ + select?: string; +} -/** - * Contains response data for the create operation. - */ -export type CertificateCreateResponse = Certificate & CertificateCreateHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: CertificateCreateHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Certificate; - }; -}; +/** Contains response data for the listByBatchAccountNext operation. */ +export type CertificateListByBatchAccountNextResponse = ListCertificatesResult; -/** - * Contains response data for the update operation. - */ -export type CertificateUpdateResponse = Certificate & CertificateUpdateHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: CertificateUpdateHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Certificate; - }; -}; +/** Optional parameters. */ +export interface PrivateLinkResourceListByBatchAccountOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} -/** - * Contains response data for the deleteMethod operation. - */ -export type CertificateDeleteResponse = CertificateDeleteHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: CertificateDeleteHeaders; - }; -}; +/** Contains response data for the listByBatchAccount operation. */ +export type PrivateLinkResourceListByBatchAccountResponse = ListPrivateLinkResourcesResult; -/** - * Contains response data for the get operation. - */ -export type CertificateGetResponse = Certificate & CertificateGetHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: CertificateGetHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Certificate; - }; -}; +/** Optional parameters. */ +export interface PrivateLinkResourceGetOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the cancelDeletion operation. - */ -export type CertificateCancelDeletionResponse = Certificate & CertificateCancelDeletionHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: CertificateCancelDeletionHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Certificate; - }; -}; +/** Contains response data for the get operation. */ +export type PrivateLinkResourceGetResponse = PrivateLinkResource; -/** - * Contains response data for the listByBatchAccountNext operation. - */ -export type CertificateListByBatchAccountNextResponse = ListCertificatesResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface PrivateLinkResourceListByBatchAccountNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListCertificatesResult; - }; -}; +/** Contains response data for the listByBatchAccountNext operation. */ +export type PrivateLinkResourceListByBatchAccountNextResponse = ListPrivateLinkResourcesResult; -/** - * Contains response data for the listByBatchAccount operation. - */ -export type PrivateLinkResourceListByBatchAccountResponse = ListPrivateLinkResourcesResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface PrivateEndpointConnectionListByBatchAccountOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListPrivateLinkResourcesResult; - }; -}; +/** Contains response data for the listByBatchAccount operation. */ +export type PrivateEndpointConnectionListByBatchAccountResponse = ListPrivateEndpointConnectionsResult; -/** - * Contains response data for the get operation. - */ -export type PrivateLinkResourceGetResponse = PrivateLinkResource & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface PrivateEndpointConnectionGetOptionalParams + extends coreClient.OperationOptions {} - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateLinkResource; - }; -}; +/** Contains response data for the get operation. */ +export type PrivateEndpointConnectionGetResponse = PrivateEndpointConnection; -/** - * Contains response data for the listByBatchAccountNext operation. - */ -export type PrivateLinkResourceListByBatchAccountNextResponse = ListPrivateLinkResourcesResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface PrivateEndpointConnectionUpdateOptionalParams + extends coreClient.OperationOptions { + /** The state (ETag) version of the private endpoint connection to update. This value can be omitted or set to "*" to apply the operation unconditionally. */ + ifMatch?: string; + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListPrivateLinkResourcesResult; - }; -}; +/** Contains response data for the update operation. */ +export type PrivateEndpointConnectionUpdateResponse = PrivateEndpointConnection; -/** - * Contains response data for the listByBatchAccount operation. - */ -export type PrivateEndpointConnectionListByBatchAccountResponse = ListPrivateEndpointConnectionsResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Optional parameters. */ +export interface PrivateEndpointConnectionListByBatchAccountNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListPrivateEndpointConnectionsResult; - }; -}; +/** Contains response data for the listByBatchAccountNext operation. */ +export type PrivateEndpointConnectionListByBatchAccountNextResponse = ListPrivateEndpointConnectionsResult; -/** - * Contains response data for the get operation. - */ -export type PrivateEndpointConnectionGetResponse = PrivateEndpointConnection & { +/** Optional parameters. */ +export interface PoolListByBatchAccountOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; /** - * The underlying HTTP response. + * OData filter expression. Valid properties for filtering are: + * + * name + * properties/allocationState + * properties/allocationStateTransitionTime + * properties/creationTime + * properties/provisioningState + * properties/provisioningStateTransitionTime + * properties/lastModified + * properties/vmSize + * properties/interNodeCommunication + * properties/scaleSettings/autoScale + * properties/scaleSettings/fixedScale */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; + filter?: string; + /** Comma separated list of properties that should be returned. e.g. "properties/provisioningState". Only top level properties under properties/ are valid for selection. */ + select?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateEndpointConnection; - }; -}; +/** Contains response data for the listByBatchAccount operation. */ +export type PoolListByBatchAccountResponse = ListPoolsResult; -/** - * Contains response data for the update operation. - */ -export type PrivateEndpointConnectionUpdateResponse = PrivateEndpointConnection & PrivateEndpointConnectionUpdateHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: PrivateEndpointConnectionUpdateHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: PrivateEndpointConnection; - }; -}; +/** Optional parameters. */ +export interface PoolCreateOptionalParams extends coreClient.OperationOptions { + /** The entity state (ETag) version of the pool to update. A value of "*" can be used to apply the operation only if the pool already exists. If omitted, this operation will always be applied. */ + ifMatch?: string; + /** Set to '*' to allow a new pool to be created, but to prevent updating an existing pool. Other values will be ignored. */ + ifNoneMatch?: string; +} -/** - * Contains response data for the listByBatchAccountNext operation. - */ -export type PrivateEndpointConnectionListByBatchAccountNextResponse = ListPrivateEndpointConnectionsResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the create operation. */ +export type PoolCreateResponse = PoolCreateHeaders & Pool; - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListPrivateEndpointConnectionsResult; - }; -}; +/** Optional parameters. */ +export interface PoolUpdateOptionalParams extends coreClient.OperationOptions { + /** The entity state (ETag) version of the pool to update. This value can be omitted or set to "*" to apply the operation unconditionally. */ + ifMatch?: string; +} -/** - * Contains response data for the listByBatchAccount operation. - */ -export type PoolListByBatchAccountResponse = ListPoolsResult & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; +/** Contains response data for the update operation. */ +export type PoolUpdateResponse = PoolUpdateHeaders & Pool; - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListPoolsResult; - }; -}; +/** Optional parameters. */ +export interface PoolDeleteOptionalParams extends coreClient.OperationOptions { + /** Delay to wait until next poll, in milliseconds. */ + updateIntervalInMs?: number; + /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */ + resumeFrom?: string; +} -/** - * Contains response data for the create operation. - */ -export type PoolCreateResponse = Pool & PoolCreateHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: PoolCreateHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Pool; - }; -}; +/** Optional parameters. */ +export interface PoolGetOptionalParams extends coreClient.OperationOptions {} -/** - * Contains response data for the update operation. - */ -export type PoolUpdateResponse = Pool & PoolUpdateHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: PoolUpdateHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Pool; - }; -}; +/** Contains response data for the get operation. */ +export type PoolGetResponse = PoolGetHeaders & Pool; -/** - * Contains response data for the deleteMethod operation. - */ -export type PoolDeleteResponse = PoolDeleteHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: PoolDeleteHeaders; - }; -}; +/** Optional parameters. */ +export interface PoolDisableAutoScaleOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the get operation. - */ -export type PoolGetResponse = Pool & PoolGetHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: PoolGetHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Pool; - }; -}; +/** Contains response data for the disableAutoScale operation. */ +export type PoolDisableAutoScaleResponse = PoolDisableAutoScaleHeaders & Pool; -/** - * Contains response data for the disableAutoScale operation. - */ -export type PoolDisableAutoScaleResponse = Pool & PoolDisableAutoScaleHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: PoolDisableAutoScaleHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Pool; - }; -}; +/** Optional parameters. */ +export interface PoolStopResizeOptionalParams + extends coreClient.OperationOptions {} -/** - * Contains response data for the stopResize operation. - */ -export type PoolStopResizeResponse = Pool & PoolStopResizeHeaders & { - /** - * The underlying HTTP response. - */ - _response: msRest.HttpResponse & { - /** - * The parsed HTTP response headers. - */ - parsedHeaders: PoolStopResizeHeaders; - - /** - * The response body as text (string format) - */ - bodyAsText: string; - - /** - * The response body as parsed JSON or XML - */ - parsedBody: Pool; - }; -}; +/** Contains response data for the stopResize operation. */ +export type PoolStopResizeResponse = PoolStopResizeHeaders & Pool; -/** - * Contains response data for the listByBatchAccountNext operation. - */ -export type PoolListByBatchAccountNextResponse = ListPoolsResult & { +/** Optional parameters. */ +export interface PoolListByBatchAccountNextOptionalParams + extends coreClient.OperationOptions { + /** The maximum number of items to return in the response. */ + maxresults?: number; /** - * The underlying HTTP response. + * OData filter expression. Valid properties for filtering are: + * + * name + * properties/allocationState + * properties/allocationStateTransitionTime + * properties/creationTime + * properties/provisioningState + * properties/provisioningStateTransitionTime + * properties/lastModified + * properties/vmSize + * properties/interNodeCommunication + * properties/scaleSettings/autoScale + * properties/scaleSettings/fixedScale */ - _response: msRest.HttpResponse & { - /** - * The response body as text (string format) - */ - bodyAsText: string; + filter?: string; + /** Comma separated list of properties that should be returned. e.g. "properties/provisioningState". Only top level properties under properties/ are valid for selection. */ + select?: string; +} - /** - * The response body as parsed JSON or XML - */ - parsedBody: ListPoolsResult; - }; -}; +/** Contains response data for the listByBatchAccountNext operation. */ +export type PoolListByBatchAccountNextResponse = ListPoolsResult; + +/** Optional parameters. */ +export interface BatchManagementClientOptionalParams + extends coreClient.ServiceClientOptions { + /** server parameter */ + $host?: string; + /** Api Version */ + apiVersion?: string; + /** Overrides client endpoint. */ + endpoint?: string; +} diff --git a/sdk/batch/arm-batch/src/models/locationMappers.ts b/sdk/batch/arm-batch/src/models/locationMappers.ts deleted file mode 100644 index ddbec3b47f94..000000000000 --- a/sdk/batch/arm-batch/src/models/locationMappers.ts +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - BatchLocationQuota, - CheckNameAvailabilityParameters, - CheckNameAvailabilityResult, - CloudError -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/mappers.ts b/sdk/batch/arm-batch/src/models/mappers.ts index cc7d3296b2d5..53269a449d52 100644 --- a/sdk/batch/arm-batch/src/models/mappers.ts +++ b/sdk/batch/arm-batch/src/models/mappers.ts @@ -1,26 +1,130 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. + * 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 { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js"; -import * as msRest from "@azure/ms-rest-js"; +import * as coreClient from "@azure/core-client"; -export const CloudError = CloudErrorMapper; -export const BaseResource = BaseResourceMapper; +export const BatchAccountCreateParameters: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "BatchAccountCreateParameters", + modelProperties: { + location: { + serializedName: "location", + required: true, + type: { + name: "String" + } + }, + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { type: { name: "String" } } + } + }, + identity: { + serializedName: "identity", + type: { + name: "Composite", + className: "BatchAccountIdentity" + } + }, + autoStorage: { + serializedName: "properties.autoStorage", + type: { + name: "Composite", + className: "AutoStorageBaseProperties" + } + }, + poolAllocationMode: { + serializedName: "properties.poolAllocationMode", + type: { + name: "Enum", + allowedValues: ["BatchService", "UserSubscription"] + } + }, + keyVaultReference: { + serializedName: "properties.keyVaultReference", + type: { + name: "Composite", + className: "KeyVaultReference" + } + }, + publicNetworkAccess: { + defaultValue: "Enabled", + serializedName: "properties.publicNetworkAccess", + type: { + name: "Enum", + allowedValues: ["Enabled", "Disabled"] + } + }, + encryption: { + serializedName: "properties.encryption", + type: { + name: "Composite", + className: "EncryptionProperties" + } + }, + allowedAuthenticationModes: { + serializedName: "properties.allowedAuthenticationModes", + nullable: true, + type: { + name: "Sequence", + element: { + type: { + name: "Enum", + allowedValues: ["SharedKey", "AAD", "TaskAuthenticationToken"] + } + } + } + } + } + } +}; -export const AutoStorageBaseProperties: msRest.CompositeMapper = { - serializedName: "AutoStorageBaseProperties", +export const AutoStorageBaseProperties: coreClient.CompositeMapper = { type: { name: "Composite", className: "AutoStorageBaseProperties", modelProperties: { storageAccountId: { - required: true, serializedName: "storageAccountId", + required: true, + type: { + name: "String" + } + }, + authenticationMode: { + defaultValue: "StorageKeys", + serializedName: "authenticationMode", + type: { + name: "Enum", + allowedValues: ["StorageKeys", "BatchAccountManagedIdentity"] + } + }, + nodeIdentityReference: { + serializedName: "nodeIdentityReference", + type: { + name: "Composite", + className: "ComputeNodeIdentityReference" + } + } + } + } +}; + +export const ComputeNodeIdentityReference: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ComputeNodeIdentityReference", + modelProperties: { + resourceId: { + serializedName: "resourceId", type: { name: "String" } @@ -29,14 +133,21 @@ export const AutoStorageBaseProperties: msRest.CompositeMapper = { } }; -export const KeyVaultProperties: msRest.CompositeMapper = { - serializedName: "KeyVaultProperties", +export const KeyVaultReference: coreClient.CompositeMapper = { type: { name: "Composite", - className: "KeyVaultProperties", + className: "KeyVaultReference", modelProperties: { - keyIdentifier: { - serializedName: "keyIdentifier", + id: { + serializedName: "id", + required: true, + type: { + name: "String" + } + }, + url: { + serializedName: "url", + required: true, type: { name: "String" } @@ -45,8 +156,7 @@ export const KeyVaultProperties: msRest.CompositeMapper = { } }; -export const EncryptionProperties: msRest.CompositeMapper = { - serializedName: "EncryptionProperties", +export const EncryptionProperties: coreClient.CompositeMapper = { type: { name: "Composite", className: "EncryptionProperties", @@ -55,10 +165,7 @@ export const EncryptionProperties: msRest.CompositeMapper = { serializedName: "keySource", type: { name: "Enum", - allowedValues: [ - "Microsoft.Batch", - "Microsoft.KeyVault" - ] + allowedValues: ["Microsoft.Batch", "Microsoft.KeyVault"] } }, keyVaultProperties: { @@ -72,22 +179,13 @@ export const EncryptionProperties: msRest.CompositeMapper = { } }; -export const KeyVaultReference: msRest.CompositeMapper = { - serializedName: "KeyVaultReference", +export const KeyVaultProperties: coreClient.CompositeMapper = { type: { name: "Composite", - className: "KeyVaultReference", + className: "KeyVaultProperties", modelProperties: { - id: { - required: true, - serializedName: "id", - type: { - name: "String" - } - }, - url: { - required: true, - serializedName: "url", + keyIdentifier: { + serializedName: "keyIdentifier", type: { name: "String" } @@ -96,171 +194,77 @@ export const KeyVaultReference: msRest.CompositeMapper = { } }; -export const BatchAccountIdentity: msRest.CompositeMapper = { - serializedName: "BatchAccountIdentity", +export const BatchAccountIdentity: coreClient.CompositeMapper = { type: { name: "Composite", className: "BatchAccountIdentity", modelProperties: { principalId: { - readOnly: true, serializedName: "principalId", + readOnly: true, type: { name: "String" } }, tenantId: { - readOnly: true, serializedName: "tenantId", + readOnly: true, type: { name: "String" } }, type: { - required: true, serializedName: "type", - type: { - name: "Enum", - allowedValues: [ - "SystemAssigned", - "None" - ] - } - } - } - } -}; - -export const BatchAccountCreateParameters: msRest.CompositeMapper = { - serializedName: "BatchAccountCreateParameters", - type: { - name: "Composite", - className: "BatchAccountCreateParameters", - modelProperties: { - location: { required: true, - serializedName: "location", type: { - name: "String" + name: "Enum", + allowedValues: ["SystemAssigned", "UserAssigned", "None"] } }, - tags: { - serializedName: "tags", + userAssignedIdentities: { + serializedName: "userAssignedIdentities", type: { name: "Dictionary", value: { - type: { - name: "String" - } + type: { name: "Composite", className: "UserAssignedIdentities" } } } - }, - autoStorage: { - serializedName: "properties.autoStorage", - type: { - name: "Composite", - className: "AutoStorageBaseProperties" - } - }, - poolAllocationMode: { - serializedName: "properties.poolAllocationMode", - type: { - name: "Enum", - allowedValues: [ - "BatchService", - "UserSubscription" - ] - } - }, - keyVaultReference: { - serializedName: "properties.keyVaultReference", - type: { - name: "Composite", - className: "KeyVaultReference" - } - }, - publicNetworkAccess: { - serializedName: "properties.publicNetworkAccess", - defaultValue: 'Enabled', - type: { - name: "Enum", - allowedValues: [ - "Enabled", - "Disabled" - ] - } - }, - encryption: { - serializedName: "properties.encryption", - type: { - name: "Composite", - className: "EncryptionProperties" - } - }, - identity: { - serializedName: "identity", - type: { - name: "Composite", - className: "BatchAccountIdentity" - } - } - } - } -}; - -export const AutoStorageProperties: msRest.CompositeMapper = { - serializedName: "AutoStorageProperties", - type: { - name: "Composite", - className: "AutoStorageProperties", - modelProperties: { - ...AutoStorageBaseProperties.type.modelProperties, - lastKeySync: { - required: true, - serializedName: "lastKeySync", - type: { - name: "DateTime" - } } } } }; -export const VirtualMachineFamilyCoreQuota: msRest.CompositeMapper = { - serializedName: "VirtualMachineFamilyCoreQuota", +export const UserAssignedIdentities: coreClient.CompositeMapper = { type: { name: "Composite", - className: "VirtualMachineFamilyCoreQuota", + className: "UserAssignedIdentities", modelProperties: { - name: { - nullable: false, + principalId: { + serializedName: "principalId", readOnly: true, - serializedName: "name", type: { name: "String" } }, - coreQuota: { - nullable: false, + clientId: { + serializedName: "clientId", readOnly: true, - serializedName: "coreQuota", type: { - name: "Number" + name: "String" } } } } }; -export const PrivateEndpoint: msRest.CompositeMapper = { - serializedName: "PrivateEndpoint", +export const PrivateEndpoint: coreClient.CompositeMapper = { type: { name: "Composite", className: "PrivateEndpoint", modelProperties: { id: { - readOnly: true, serializedName: "id", + readOnly: true, type: { name: "String" } @@ -269,23 +273,17 @@ export const PrivateEndpoint: msRest.CompositeMapper = { } }; -export const PrivateLinkServiceConnectionState: msRest.CompositeMapper = { - serializedName: "PrivateLinkServiceConnectionState", +export const PrivateLinkServiceConnectionState: coreClient.CompositeMapper = { type: { name: "Composite", className: "PrivateLinkServiceConnectionState", modelProperties: { status: { - required: true, serializedName: "status", + required: true, type: { name: "Enum", - allowedValues: [ - "Approved", - "Pending", - "Rejected", - "Disconnected" - ] + allowedValues: ["Approved", "Pending", "Rejected", "Disconnected"] } }, description: { @@ -295,8 +293,8 @@ export const PrivateLinkServiceConnectionState: msRest.CompositeMapper = { } }, actionRequired: { - readOnly: true, serializedName: "actionRequired", + readOnly: true, type: { name: "String" } @@ -305,36 +303,35 @@ export const PrivateLinkServiceConnectionState: msRest.CompositeMapper = { } }; -export const ProxyResource: msRest.CompositeMapper = { - serializedName: "ProxyResource", +export const ProxyResource: coreClient.CompositeMapper = { type: { name: "Composite", className: "ProxyResource", modelProperties: { id: { - readOnly: true, serializedName: "id", + readOnly: true, type: { name: "String" } }, name: { - readOnly: true, serializedName: "name", + readOnly: true, type: { name: "String" } }, type: { - readOnly: true, serializedName: "type", + readOnly: true, type: { name: "String" } }, etag: { - readOnly: true, serializedName: "etag", + readOnly: true, type: { name: "String" } @@ -343,336 +340,245 @@ export const ProxyResource: msRest.CompositeMapper = { } }; -export const PrivateEndpointConnection: msRest.CompositeMapper = { - serializedName: "PrivateEndpointConnection", +export const VirtualMachineFamilyCoreQuota: coreClient.CompositeMapper = { type: { name: "Composite", - className: "PrivateEndpointConnection", + className: "VirtualMachineFamilyCoreQuota", modelProperties: { - ...ProxyResource.type.modelProperties, - provisioningState: { - nullable: false, + name: { + serializedName: "name", readOnly: true, - serializedName: "properties.provisioningState", type: { - name: "Enum", - allowedValues: [ - "Succeeded", - "Updating", - "Failed" - ] + name: "String" } }, - privateEndpoint: { - serializedName: "properties.privateEndpoint", + coreQuota: { + serializedName: "coreQuota", + readOnly: true, type: { - name: "Composite", - className: "PrivateEndpoint" - } - }, - privateLinkServiceConnectionState: { - serializedName: "properties.privateLinkServiceConnectionState", - type: { - name: "Composite", - className: "PrivateLinkServiceConnectionState" + name: "Number" } } } } }; -export const Resource: msRest.CompositeMapper = { - serializedName: "Resource", +export const Resource: coreClient.CompositeMapper = { type: { name: "Composite", className: "Resource", modelProperties: { id: { - readOnly: true, serializedName: "id", + readOnly: true, type: { name: "String" } }, name: { - readOnly: true, serializedName: "name", + readOnly: true, type: { name: "String" } }, type: { - readOnly: true, serializedName: "type", + readOnly: true, type: { name: "String" } }, location: { - readOnly: true, serializedName: "location", + readOnly: true, type: { name: "String" } }, tags: { - readOnly: true, serializedName: "tags", + readOnly: true, type: { name: "Dictionary", - value: { - type: { - name: "String" - } - } + value: { type: { name: "String" } } } } } } }; -export const BatchAccount: msRest.CompositeMapper = { - serializedName: "BatchAccount", +export const CloudError: coreClient.CompositeMapper = { type: { name: "Composite", - className: "BatchAccount", + className: "CloudError", modelProperties: { - ...Resource.type.modelProperties, - accountEndpoint: { - readOnly: true, - serializedName: "properties.accountEndpoint", - type: { - name: "String" - } - }, - provisioningState: { - nullable: false, - readOnly: true, - serializedName: "properties.provisioningState", + error: { + serializedName: "error", type: { - name: "Enum", - allowedValues: [ - "Invalid", - "Creating", - "Deleting", - "Succeeded", - "Failed", - "Cancelled" - ] + name: "Composite", + className: "CloudErrorBody" } - }, - poolAllocationMode: { - readOnly: true, - serializedName: "properties.poolAllocationMode", + } + } + } +}; + +export const CloudErrorBody: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudErrorBody", + modelProperties: { + code: { + serializedName: "code", type: { - name: "Enum", - allowedValues: [ - "BatchService", - "UserSubscription" - ] + name: "String" } }, - keyVaultReference: { - readOnly: true, - serializedName: "properties.keyVaultReference", + message: { + serializedName: "message", type: { - name: "Composite", - className: "KeyVaultReference" + name: "String" } }, - publicNetworkAccess: { - readOnly: true, - serializedName: "properties.publicNetworkAccess", - defaultValue: 'Enabled', + target: { + serializedName: "target", type: { - name: "Enum", - allowedValues: [ - "Enabled", - "Disabled" - ] + name: "String" } }, - privateEndpointConnections: { - nullable: true, - readOnly: true, - serializedName: "properties.privateEndpointConnections", + details: { + serializedName: "details", type: { name: "Sequence", element: { type: { name: "Composite", - className: "PrivateEndpointConnection" + className: "CloudErrorBody" } } } + } + } + } +}; + +export const BatchAccountUpdateParameters: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "BatchAccountUpdateParameters", + modelProperties: { + tags: { + serializedName: "tags", + type: { + name: "Dictionary", + value: { type: { name: "String" } } + } + }, + identity: { + serializedName: "identity", + type: { + name: "Composite", + className: "BatchAccountIdentity" + } }, autoStorage: { - readOnly: true, serializedName: "properties.autoStorage", type: { name: "Composite", - className: "AutoStorageProperties" + className: "AutoStorageBaseProperties" } }, encryption: { - readOnly: true, serializedName: "properties.encryption", type: { name: "Composite", className: "EncryptionProperties" } }, - dedicatedCoreQuota: { - nullable: true, - readOnly: true, - serializedName: "properties.dedicatedCoreQuota", - type: { - name: "Number" - } - }, - lowPriorityCoreQuota: { - nullable: true, - readOnly: true, - serializedName: "properties.lowPriorityCoreQuota", - type: { - name: "Number" - } - }, - dedicatedCoreQuotaPerVMFamily: { + allowedAuthenticationModes: { + serializedName: "properties.allowedAuthenticationModes", nullable: true, - readOnly: true, - serializedName: "properties.dedicatedCoreQuotaPerVMFamily", type: { name: "Sequence", element: { type: { - name: "Composite", - className: "VirtualMachineFamilyCoreQuota" + name: "Enum", + allowedValues: ["SharedKey", "AAD", "TaskAuthenticationToken"] } } } - }, - dedicatedCoreQuotaPerVMFamilyEnforced: { - nullable: false, - readOnly: true, - serializedName: "properties.dedicatedCoreQuotaPerVMFamilyEnforced", - type: { - name: "Boolean" - } - }, - poolQuota: { - nullable: false, - readOnly: true, - serializedName: "properties.poolQuota", - type: { - name: "Number" - } - }, - activeJobAndJobScheduleQuota: { - nullable: false, - readOnly: true, - serializedName: "properties.activeJobAndJobScheduleQuota", - type: { - name: "Number" - } - }, - identity: { - serializedName: "identity", - type: { - name: "Composite", - className: "BatchAccountIdentity" - } } } } }; -export const BatchAccountUpdateParameters: msRest.CompositeMapper = { - serializedName: "BatchAccountUpdateParameters", +export const BatchAccountListResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "BatchAccountUpdateParameters", + className: "BatchAccountListResult", modelProperties: { - tags: { - serializedName: "tags", + value: { + serializedName: "value", type: { - name: "Dictionary", - value: { + name: "Sequence", + element: { type: { - name: "String" + name: "Composite", + className: "BatchAccount" } } } }, - autoStorage: { - serializedName: "properties.autoStorage", - type: { - name: "Composite", - className: "AutoStorageBaseProperties" - } - }, - encryption: { - serializedName: "properties.encryption", - type: { - name: "Composite", - className: "EncryptionProperties" - } - }, - identity: { - serializedName: "identity", + nextLink: { + serializedName: "nextLink", type: { - name: "Composite", - className: "BatchAccountIdentity" + name: "String" } } } } }; -export const BatchAccountRegenerateKeyParameters: msRest.CompositeMapper = { - serializedName: "BatchAccountRegenerateKeyParameters", +export const BatchAccountRegenerateKeyParameters: coreClient.CompositeMapper = { type: { name: "Composite", className: "BatchAccountRegenerateKeyParameters", modelProperties: { keyName: { - required: true, serializedName: "keyName", + required: true, type: { name: "Enum", - allowedValues: [ - "Primary", - "Secondary" - ] + allowedValues: ["Primary", "Secondary"] } } } } }; -export const BatchAccountKeys: msRest.CompositeMapper = { - serializedName: "BatchAccountKeys", +export const BatchAccountKeys: coreClient.CompositeMapper = { type: { name: "Composite", className: "BatchAccountKeys", modelProperties: { accountName: { - readOnly: true, serializedName: "accountName", + readOnly: true, type: { name: "String" } }, primary: { - readOnly: true, serializedName: "primary", + readOnly: true, type: { name: "String" } }, secondary: { - readOnly: true, serializedName: "secondary", + readOnly: true, type: { name: "String" } @@ -681,15 +587,14 @@ export const BatchAccountKeys: msRest.CompositeMapper = { } }; -export const ActivateApplicationPackageParameters: msRest.CompositeMapper = { - serializedName: "ActivateApplicationPackageParameters", +export const ActivateApplicationPackageParameters: coreClient.CompositeMapper = { type: { name: "Composite", className: "ActivateApplicationPackageParameters", modelProperties: { format: { - required: true, serializedName: "format", + required: true, type: { name: "String" } @@ -698,27 +603,25 @@ export const ActivateApplicationPackageParameters: msRest.CompositeMapper = { } }; -export const Application: msRest.CompositeMapper = { - serializedName: "Application", +export const ListApplicationsResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "Application", + className: "ListApplicationsResult", modelProperties: { - ...ProxyResource.type.modelProperties, - displayName: { - serializedName: "properties.displayName", - type: { - name: "String" - } - }, - allowUpdates: { - serializedName: "properties.allowUpdates", + value: { + serializedName: "value", type: { - name: "Boolean" + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Application" + } + } } }, - defaultVersion: { - serializedName: "properties.defaultVersion", + nextLink: { + serializedName: "nextLink", type: { name: "String" } @@ -727,65 +630,41 @@ export const Application: msRest.CompositeMapper = { } }; -export const ApplicationPackage: msRest.CompositeMapper = { - serializedName: "ApplicationPackage", +export const ListApplicationPackagesResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ApplicationPackage", + className: "ListApplicationPackagesResult", modelProperties: { - ...ProxyResource.type.modelProperties, - state: { - readOnly: true, - serializedName: "properties.state", + value: { + serializedName: "value", type: { - name: "Enum", - allowedValues: [ - "Pending", - "Active" - ] + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ApplicationPackage" + } + } } }, - format: { - readOnly: true, - serializedName: "properties.format", + nextLink: { + serializedName: "nextLink", type: { name: "String" } - }, - storageUrl: { - readOnly: true, - serializedName: "properties.storageUrl", - type: { - name: "String" - } - }, - storageUrlExpiry: { - readOnly: true, - serializedName: "properties.storageUrlExpiry", - type: { - name: "DateTime" - } - }, - lastActivationTime: { - readOnly: true, - serializedName: "properties.lastActivationTime", - type: { - name: "DateTime" - } } } } }; -export const BatchLocationQuota: msRest.CompositeMapper = { - serializedName: "BatchLocationQuota", +export const BatchLocationQuota: coreClient.CompositeMapper = { type: { name: "Composite", className: "BatchLocationQuota", modelProperties: { accountQuota: { - readOnly: true, serializedName: "accountQuota", + readOnly: true, type: { name: "Number" } @@ -794,73 +673,63 @@ export const BatchLocationQuota: msRest.CompositeMapper = { } }; -export const CertificateBaseProperties: msRest.CompositeMapper = { - serializedName: "CertificateBaseProperties", +export const SupportedSkusResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "CertificateBaseProperties", + className: "SupportedSkusResult", modelProperties: { - thumbprintAlgorithm: { - serializedName: "thumbprintAlgorithm", + value: { + serializedName: "value", + required: true, type: { - name: "String" + name: "Sequence", + element: { + type: { + name: "Composite", + className: "SupportedSku" + } + } } }, - thumbprint: { - serializedName: "thumbprint", + nextLink: { + serializedName: "nextLink", + readOnly: true, type: { name: "String" } - }, - format: { - nullable: false, - serializedName: "format", - type: { - name: "Enum", - allowedValues: [ - "Pfx", - "Cer" - ] - } } } } }; -export const DeleteCertificateError: msRest.CompositeMapper = { - serializedName: "DeleteCertificateError", +export const SupportedSku: coreClient.CompositeMapper = { type: { name: "Composite", - className: "DeleteCertificateError", + className: "SupportedSku", modelProperties: { - code: { - required: true, - serializedName: "code", - type: { - name: "String" - } - }, - message: { - required: true, - serializedName: "message", + name: { + serializedName: "name", + readOnly: true, type: { name: "String" } }, - target: { - serializedName: "target", + familyName: { + serializedName: "familyName", + readOnly: true, type: { name: "String" } }, - details: { - serializedName: "details", + capabilities: { + serializedName: "capabilities", + readOnly: true, type: { name: "Sequence", element: { type: { name: "Composite", - className: "DeleteCertificateError" + className: "SkuCapability" } } } @@ -869,134 +738,146 @@ export const DeleteCertificateError: msRest.CompositeMapper = { } }; -export const Certificate: msRest.CompositeMapper = { - serializedName: "Certificate", +export const SkuCapability: coreClient.CompositeMapper = { type: { name: "Composite", - className: "Certificate", + className: "SkuCapability", modelProperties: { - ...ProxyResource.type.modelProperties, - thumbprintAlgorithm: { - serializedName: "properties.thumbprintAlgorithm", + name: { + serializedName: "name", + readOnly: true, type: { name: "String" } }, - thumbprint: { - serializedName: "properties.thumbprint", + value: { + serializedName: "value", + readOnly: true, type: { name: "String" } - }, - format: { - nullable: false, - serializedName: "properties.format", + } + } + } +}; + +export const OperationListResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OperationListResult", + modelProperties: { + value: { + serializedName: "value", type: { - name: "Enum", - allowedValues: [ - "Pfx", - "Cer" - ] + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Operation" + } + } } }, - provisioningState: { - nullable: false, - readOnly: true, - serializedName: "properties.provisioningState", + nextLink: { + serializedName: "nextLink", type: { - name: "Enum", - allowedValues: [ - "Succeeded", - "Deleting", - "Failed" - ] + name: "String" } - }, - provisioningStateTransitionTime: { - readOnly: true, - serializedName: "properties.provisioningStateTransitionTime", + } + } + } +}; + +export const Operation: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "Operation", + modelProperties: { + name: { + serializedName: "name", type: { - name: "DateTime" + name: "String" } }, - previousProvisioningState: { - nullable: false, - readOnly: true, - serializedName: "properties.previousProvisioningState", + isDataAction: { + serializedName: "isDataAction", type: { - name: "Enum", - allowedValues: [ - "Succeeded", - "Deleting", - "Failed" - ] + name: "Boolean" } }, - previousProvisioningStateTransitionTime: { - readOnly: true, - serializedName: "properties.previousProvisioningStateTransitionTime", + display: { + serializedName: "display", type: { - name: "DateTime" + name: "Composite", + className: "OperationDisplay" } }, - publicData: { - readOnly: true, - serializedName: "properties.publicData", + origin: { + serializedName: "origin", type: { name: "String" } }, - deleteCertificateError: { - readOnly: true, - serializedName: "properties.deleteCertificateError", + properties: { + serializedName: "properties", type: { - name: "Composite", - className: "DeleteCertificateError" + name: "Dictionary", + value: { type: { name: "any" } } } } } } }; -export const CertificateCreateOrUpdateParameters: msRest.CompositeMapper = { - serializedName: "CertificateCreateOrUpdateParameters", +export const OperationDisplay: coreClient.CompositeMapper = { type: { name: "Composite", - className: "CertificateCreateOrUpdateParameters", + className: "OperationDisplay", modelProperties: { - ...ProxyResource.type.modelProperties, - thumbprintAlgorithm: { - serializedName: "properties.thumbprintAlgorithm", + provider: { + serializedName: "provider", type: { name: "String" } }, - thumbprint: { - serializedName: "properties.thumbprint", + operation: { + serializedName: "operation", type: { name: "String" } }, - format: { - nullable: false, - serializedName: "properties.format", + resource: { + serializedName: "resource", type: { - name: "Enum", - allowedValues: [ - "Pfx", - "Cer" - ] + name: "String" } }, - data: { + description: { + serializedName: "description", + type: { + name: "String" + } + } + } + } +}; + +export const CheckNameAvailabilityParameters: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CheckNameAvailabilityParameters", + modelProperties: { + name: { + serializedName: "name", required: true, - serializedName: "properties.data", type: { name: "String" } }, - password: { - serializedName: "properties.password", + type: { + defaultValue: "Microsoft.Batch/batchAccounts", + isConstant: true, + serializedName: "type", type: { name: "String" } @@ -1005,63 +886,56 @@ export const CertificateCreateOrUpdateParameters: msRest.CompositeMapper = { } }; -export const PrivateLinkResource: msRest.CompositeMapper = { - serializedName: "PrivateLinkResource", +export const CheckNameAvailabilityResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "PrivateLinkResource", + className: "CheckNameAvailabilityResult", modelProperties: { - ...ProxyResource.type.modelProperties, - groupId: { + nameAvailable: { + serializedName: "nameAvailable", readOnly: true, - serializedName: "properties.groupId", type: { - name: "String" + name: "Boolean" } }, - requiredMembers: { + reason: { + serializedName: "reason", readOnly: true, - serializedName: "properties.requiredMembers", type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } + name: "Enum", + allowedValues: ["Invalid", "AlreadyExists"] } }, - requiredZoneNames: { + message: { + serializedName: "message", readOnly: true, - serializedName: "properties.requiredZoneNames", type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } + name: "String" } } } } }; -export const CloudServiceConfiguration: msRest.CompositeMapper = { - serializedName: "CloudServiceConfiguration", +export const ListCertificatesResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "CloudServiceConfiguration", + className: "ListCertificatesResult", modelProperties: { - osFamily: { - required: true, - serializedName: "osFamily", + value: { + serializedName: "value", type: { - name: "String" + name: "Sequence", + element: { + type: { + name: "Composite", + className: "Certificate" + } + } } }, - osVersion: { - serializedName: "osVersion", + nextLink: { + serializedName: "nextLink", type: { name: "String" } @@ -1070,129 +944,94 @@ export const CloudServiceConfiguration: msRest.CompositeMapper = { } }; -export const ImageReference: msRest.CompositeMapper = { - serializedName: "ImageReference", +export const DeleteCertificateError: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ImageReference", + className: "DeleteCertificateError", modelProperties: { - publisher: { - serializedName: "publisher", - type: { - name: "String" - } - }, - offer: { - serializedName: "offer", + code: { + serializedName: "code", + required: true, type: { name: "String" } }, - sku: { - serializedName: "sku", + message: { + serializedName: "message", + required: true, type: { name: "String" } }, - version: { - serializedName: "version", + target: { + serializedName: "target", type: { name: "String" } }, - id: { - serializedName: "id", - type: { - name: "String" - } - } - } - } -}; - -export const WindowsConfiguration: msRest.CompositeMapper = { - serializedName: "WindowsConfiguration", - type: { - name: "Composite", - className: "WindowsConfiguration", - modelProperties: { - enableAutomaticUpdates: { - serializedName: "enableAutomaticUpdates", + details: { + serializedName: "details", type: { - name: "Boolean" + name: "Sequence", + element: { + type: { + name: "Composite", + className: "DeleteCertificateError" + } + } } } } } }; -export const DataDisk: msRest.CompositeMapper = { - serializedName: "DataDisk", +export const CertificateBaseProperties: coreClient.CompositeMapper = { type: { name: "Composite", - className: "DataDisk", + className: "CertificateBaseProperties", modelProperties: { - lun: { - required: true, - serializedName: "lun", - type: { - name: "Number" - } - }, - caching: { - serializedName: "caching", + thumbprintAlgorithm: { + serializedName: "thumbprintAlgorithm", type: { - name: "Enum", - allowedValues: [ - "None", - "ReadOnly", - "ReadWrite" - ] + name: "String" } }, - diskSizeGB: { - required: true, - serializedName: "diskSizeGB", + thumbprint: { + serializedName: "thumbprint", type: { - name: "Number" + name: "String" } }, - storageAccountType: { - serializedName: "storageAccountType", + format: { + serializedName: "format", type: { name: "Enum", - allowedValues: [ - "Standard_LRS", - "Premium_LRS" - ] + allowedValues: ["Pfx", "Cer"] } } } } }; -export const ContainerRegistry: msRest.CompositeMapper = { - serializedName: "ContainerRegistry", +export const ListPrivateLinkResourcesResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ContainerRegistry", + className: "ListPrivateLinkResourcesResult", modelProperties: { - registryServer: { - serializedName: "registryServer", - type: { - name: "String" - } - }, - userName: { - required: true, - serializedName: "username", + value: { + serializedName: "value", type: { - name: "String" + name: "Sequence", + element: { + type: { + name: "Composite", + className: "PrivateLinkResource" + } + } } }, - password: { - required: true, - serializedName: "password", + nextLink: { + serializedName: "nextLink", type: { name: "String" } @@ -1201,81 +1040,111 @@ export const ContainerRegistry: msRest.CompositeMapper = { } }; -export const ContainerConfiguration: msRest.CompositeMapper = { - serializedName: "ContainerConfiguration", +export const ListPrivateEndpointConnectionsResult: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ContainerConfiguration", + className: "ListPrivateEndpointConnectionsResult", modelProperties: { - type: { - required: true, - isConstant: true, - serializedName: "type", - defaultValue: 'DockerCompatible', - type: { - name: "String" - } - }, - containerImageNames: { - serializedName: "containerImageNames", + value: { + serializedName: "value", type: { name: "Sequence", element: { type: { - name: "String" + name: "Composite", + className: "PrivateEndpointConnection" } } } }, - containerRegistries: { - serializedName: "containerRegistries", + nextLink: { + serializedName: "nextLink", + type: { + name: "String" + } + } + } + } +}; + +export const ListPoolsResult: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ListPoolsResult", + modelProperties: { + value: { + serializedName: "value", type: { name: "Sequence", element: { type: { name: "Composite", - className: "ContainerRegistry" + className: "Pool" } } } + }, + nextLink: { + serializedName: "nextLink", + type: { + name: "String" + } } } } }; -export const DiskEncryptionConfiguration: msRest.CompositeMapper = { - serializedName: "DiskEncryptionConfiguration", +export const DeploymentConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "DiskEncryptionConfiguration", + className: "DeploymentConfiguration", modelProperties: { - targets: { - serializedName: "targets", + cloudServiceConfiguration: { + serializedName: "cloudServiceConfiguration", type: { - name: "Sequence", - element: { - type: { - name: "Enum", - allowedValues: [ - "OsDisk", - "TemporaryDisk" - ] - } - } + name: "Composite", + className: "CloudServiceConfiguration" + } + }, + virtualMachineConfiguration: { + serializedName: "virtualMachineConfiguration", + type: { + name: "Composite", + className: "VirtualMachineConfiguration" + } + } + } + } +}; + +export const CloudServiceConfiguration: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CloudServiceConfiguration", + modelProperties: { + osFamily: { + serializedName: "osFamily", + required: true, + type: { + name: "String" + } + }, + osVersion: { + serializedName: "osVersion", + type: { + name: "String" } } } } }; -export const VirtualMachineConfiguration: msRest.CompositeMapper = { - serializedName: "VirtualMachineConfiguration", +export const VirtualMachineConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", className: "VirtualMachineConfiguration", modelProperties: { imageReference: { - required: true, serializedName: "imageReference", type: { name: "Composite", @@ -1283,8 +1152,8 @@ export const VirtualMachineConfiguration: msRest.CompositeMapper = { } }, nodeAgentSkuId: { - required: true, serializedName: "nodeAgentSkuId", + required: true, type: { name: "String" } @@ -1327,150 +1196,160 @@ export const VirtualMachineConfiguration: msRest.CompositeMapper = { name: "Composite", className: "DiskEncryptionConfiguration" } - } - } - } -}; - -export const DeploymentConfiguration: msRest.CompositeMapper = { - serializedName: "DeploymentConfiguration", - type: { - name: "Composite", - className: "DeploymentConfiguration", - modelProperties: { - cloudServiceConfiguration: { - serializedName: "cloudServiceConfiguration", + }, + nodePlacementConfiguration: { + serializedName: "nodePlacementConfiguration", type: { name: "Composite", - className: "CloudServiceConfiguration" + className: "NodePlacementConfiguration" } }, - virtualMachineConfiguration: { - serializedName: "virtualMachineConfiguration", + extensions: { + serializedName: "extensions", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "VMExtension" + } + } + } + }, + osDisk: { + serializedName: "osDisk", type: { name: "Composite", - className: "VirtualMachineConfiguration" + className: "OSDisk" } } } } }; -export const FixedScaleSettings: msRest.CompositeMapper = { - serializedName: "FixedScaleSettings", +export const ImageReference: coreClient.CompositeMapper = { type: { name: "Composite", - className: "FixedScaleSettings", + className: "ImageReference", modelProperties: { - resizeTimeout: { - serializedName: "resizeTimeout", + publisher: { + serializedName: "publisher", type: { - name: "TimeSpan" + name: "String" } }, - targetDedicatedNodes: { - serializedName: "targetDedicatedNodes", + offer: { + serializedName: "offer", type: { - name: "Number" + name: "String" } }, - targetLowPriorityNodes: { - serializedName: "targetLowPriorityNodes", + sku: { + serializedName: "sku", type: { - name: "Number" + name: "String" } }, - nodeDeallocationOption: { - serializedName: "nodeDeallocationOption", + version: { + serializedName: "version", type: { - name: "Enum", - allowedValues: [ - "Requeue", - "Terminate", - "TaskCompletion", - "RetainedData" - ] + name: "String" + } + }, + id: { + serializedName: "id", + type: { + name: "String" } } } } }; -export const AutoScaleSettings: msRest.CompositeMapper = { - serializedName: "AutoScaleSettings", +export const WindowsConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "AutoScaleSettings", + className: "WindowsConfiguration", modelProperties: { - formula: { - required: true, - serializedName: "formula", - type: { - name: "String" - } - }, - evaluationInterval: { - serializedName: "evaluationInterval", + enableAutomaticUpdates: { + serializedName: "enableAutomaticUpdates", type: { - name: "TimeSpan" + name: "Boolean" } } } } }; -export const ScaleSettings: msRest.CompositeMapper = { - serializedName: "ScaleSettings", +export const DataDisk: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ScaleSettings", + className: "DataDisk", modelProperties: { - fixedScale: { - serializedName: "fixedScale", + lun: { + serializedName: "lun", + required: true, type: { - name: "Composite", - className: "FixedScaleSettings" + name: "Number" } }, - autoScale: { - serializedName: "autoScale", + caching: { + serializedName: "caching", type: { - name: "Composite", - className: "AutoScaleSettings" + name: "Enum", + allowedValues: ["None", "ReadOnly", "ReadWrite"] + } + }, + diskSizeGB: { + serializedName: "diskSizeGB", + required: true, + type: { + name: "Number" + } + }, + storageAccountType: { + serializedName: "storageAccountType", + type: { + name: "Enum", + allowedValues: ["Standard_LRS", "Premium_LRS"] } } } } }; -export const AutoScaleRunError: msRest.CompositeMapper = { - serializedName: "AutoScaleRunError", +export const ContainerConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "AutoScaleRunError", + className: "ContainerConfiguration", modelProperties: { - code: { - required: true, - serializedName: "code", + type: { + defaultValue: "DockerCompatible", + isConstant: true, + serializedName: "type", type: { name: "String" } }, - message: { - required: true, - serializedName: "message", + containerImageNames: { + serializedName: "containerImageNames", type: { - name: "String" + name: "Sequence", + element: { + type: { + name: "String" + } + } } }, - details: { - serializedName: "details", + containerRegistries: { + serializedName: "containerRegistries", type: { name: "Sequence", element: { type: { name: "Composite", - className: "AutoScaleRunError" + className: "ContainerRegistry" } } } @@ -1479,74 +1358,53 @@ export const AutoScaleRunError: msRest.CompositeMapper = { } }; -export const AutoScaleRun: msRest.CompositeMapper = { - serializedName: "AutoScaleRun", +export const ContainerRegistry: coreClient.CompositeMapper = { type: { name: "Composite", - className: "AutoScaleRun", + className: "ContainerRegistry", modelProperties: { - evaluationTime: { - required: true, - serializedName: "evaluationTime", + userName: { + serializedName: "username", type: { - name: "DateTime" + name: "String" } }, - results: { - serializedName: "results", + password: { + serializedName: "password", type: { name: "String" } }, - error: { - serializedName: "error", + registryServer: { + serializedName: "registryServer", + type: { + name: "String" + } + }, + identityReference: { + serializedName: "identityReference", type: { name: "Composite", - className: "AutoScaleRunError" + className: "ComputeNodeIdentityReference" } } } } }; -export const NetworkSecurityGroupRule: msRest.CompositeMapper = { - serializedName: "NetworkSecurityGroupRule", +export const DiskEncryptionConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "NetworkSecurityGroupRule", + className: "DiskEncryptionConfiguration", modelProperties: { - priority: { - required: true, - serializedName: "priority", - type: { - name: "Number" - } - }, - access: { - required: true, - serializedName: "access", - type: { - name: "Enum", - allowedValues: [ - "Allow", - "Deny" - ] - } - }, - sourceAddressPrefix: { - required: true, - serializedName: "sourceAddressPrefix", - type: { - name: "String" - } - }, - sourcePortRanges: { - serializedName: "sourcePortRanges", + targets: { + serializedName: "targets", type: { name: "Sequence", element: { type: { - name: "String" + name: "Enum", + allowedValues: ["OsDisk", "TemporaryDisk"] } } } @@ -1555,59 +1413,81 @@ export const NetworkSecurityGroupRule: msRest.CompositeMapper = { } }; -export const InboundNatPool: msRest.CompositeMapper = { - serializedName: "InboundNatPool", +export const NodePlacementConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "InboundNatPool", + className: "NodePlacementConfiguration", + modelProperties: { + policy: { + serializedName: "policy", + type: { + name: "Enum", + allowedValues: ["Regional", "Zonal"] + } + } + } + } +}; + +export const VMExtension: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "VMExtension", modelProperties: { name: { - required: true, serializedName: "name", + required: true, type: { name: "String" } }, - protocol: { + publisher: { + serializedName: "publisher", required: true, - serializedName: "protocol", type: { - name: "Enum", - allowedValues: [ - "TCP", - "UDP" - ] + name: "String" } }, - backendPort: { + type: { + serializedName: "type", required: true, - serializedName: "backendPort", type: { - name: "Number" + name: "String" } }, - frontendPortRangeStart: { - required: true, - serializedName: "frontendPortRangeStart", + typeHandlerVersion: { + serializedName: "typeHandlerVersion", type: { - name: "Number" + name: "String" } }, - frontendPortRangeEnd: { - required: true, - serializedName: "frontendPortRangeEnd", + autoUpgradeMinorVersion: { + serializedName: "autoUpgradeMinorVersion", type: { - name: "Number" + name: "Boolean" } }, - networkSecurityGroupRules: { - serializedName: "networkSecurityGroupRules", + settings: { + serializedName: "settings", + type: { + name: "Dictionary", + value: { type: { name: "any" } } + } + }, + protectedSettings: { + serializedName: "protectedSettings", + type: { + name: "Dictionary", + value: { type: { name: "any" } } + } + }, + provisionAfterExtensions: { + serializedName: "provisionAfterExtensions", type: { name: "Sequence", element: { type: { - name: "Composite", - className: "NetworkSecurityGroupRule" + name: "String" } } } @@ -1616,105 +1496,94 @@ export const InboundNatPool: msRest.CompositeMapper = { } }; -export const PoolEndpointConfiguration: msRest.CompositeMapper = { - serializedName: "PoolEndpointConfiguration", +export const OSDisk: coreClient.CompositeMapper = { type: { name: "Composite", - className: "PoolEndpointConfiguration", + className: "OSDisk", modelProperties: { - inboundNatPools: { - required: true, - serializedName: "inboundNatPools", + ephemeralOSDiskSettings: { + serializedName: "ephemeralOSDiskSettings", type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "InboundNatPool" - } - } + name: "Composite", + className: "DiffDiskSettings" } } } } }; -export const PublicIPAddressConfiguration: msRest.CompositeMapper = { - serializedName: "PublicIPAddressConfiguration", +export const DiffDiskSettings: coreClient.CompositeMapper = { type: { name: "Composite", - className: "PublicIPAddressConfiguration", + className: "DiffDiskSettings", modelProperties: { - provision: { - serializedName: "provision", - type: { - name: "Enum", - allowedValues: [ - "BatchManaged", - "UserManaged", - "NoPublicIPAddresses" - ] - } - }, - ipAddressIds: { - serializedName: "ipAddressIds", + placement: { + defaultValue: "CacheDisk", + isConstant: true, + serializedName: "placement", type: { - name: "Sequence", - element: { - type: { - name: "String" - } - } + name: "String" } } } } }; -export const NetworkConfiguration: msRest.CompositeMapper = { - serializedName: "NetworkConfiguration", +export const ScaleSettings: coreClient.CompositeMapper = { type: { name: "Composite", - className: "NetworkConfiguration", + className: "ScaleSettings", modelProperties: { - subnetId: { - serializedName: "subnetId", - type: { - name: "String" - } - }, - endpointConfiguration: { - serializedName: "endpointConfiguration", + fixedScale: { + serializedName: "fixedScale", type: { name: "Composite", - className: "PoolEndpointConfiguration" + className: "FixedScaleSettings" } }, - publicIPAddressConfiguration: { - serializedName: "publicIPAddressConfiguration", + autoScale: { + serializedName: "autoScale", type: { name: "Composite", - className: "PublicIPAddressConfiguration" + className: "AutoScaleSettings" } } } } }; -export const TaskSchedulingPolicy: msRest.CompositeMapper = { - serializedName: "TaskSchedulingPolicy", +export const FixedScaleSettings: coreClient.CompositeMapper = { type: { name: "Composite", - className: "TaskSchedulingPolicy", + className: "FixedScaleSettings", modelProperties: { - nodeFillType: { - required: true, - serializedName: "nodeFillType", + resizeTimeout: { + serializedName: "resizeTimeout", + type: { + name: "TimeSpan" + } + }, + targetDedicatedNodes: { + serializedName: "targetDedicatedNodes", + type: { + name: "Number" + } + }, + targetLowPriorityNodes: { + serializedName: "targetLowPriorityNodes", + type: { + name: "Number" + } + }, + nodeDeallocationOption: { + serializedName: "nodeDeallocationOption", type: { name: "Enum", allowedValues: [ - "Spread", - "Pack" + "Requeue", + "Terminate", + "TaskCompletion", + "RetainedData" ] } } @@ -1722,454 +1591,1089 @@ export const TaskSchedulingPolicy: msRest.CompositeMapper = { } }; -export const LinuxUserConfiguration: msRest.CompositeMapper = { - serializedName: "LinuxUserConfiguration", +export const AutoScaleSettings: coreClient.CompositeMapper = { type: { name: "Composite", - className: "LinuxUserConfiguration", + className: "AutoScaleSettings", modelProperties: { - uid: { + formula: { + serializedName: "formula", + required: true, + type: { + name: "String" + } + }, + evaluationInterval: { + serializedName: "evaluationInterval", + type: { + name: "TimeSpan" + } + } + } + } +}; + +export const AutoScaleRun: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutoScaleRun", + modelProperties: { + evaluationTime: { + serializedName: "evaluationTime", + required: true, + type: { + name: "DateTime" + } + }, + results: { + serializedName: "results", + type: { + name: "String" + } + }, + error: { + serializedName: "error", + type: { + name: "Composite", + className: "AutoScaleRunError" + } + } + } + } +}; + +export const AutoScaleRunError: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutoScaleRunError", + modelProperties: { + code: { + serializedName: "code", + required: true, + type: { + name: "String" + } + }, + message: { + serializedName: "message", + required: true, + type: { + name: "String" + } + }, + details: { + serializedName: "details", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "AutoScaleRunError" + } + } + } + } + } + } +}; + +export const NetworkConfiguration: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "NetworkConfiguration", + modelProperties: { + subnetId: { + serializedName: "subnetId", + type: { + name: "String" + } + }, + endpointConfiguration: { + serializedName: "endpointConfiguration", + type: { + name: "Composite", + className: "PoolEndpointConfiguration" + } + }, + publicIPAddressConfiguration: { + serializedName: "publicIPAddressConfiguration", + type: { + name: "Composite", + className: "PublicIPAddressConfiguration" + } + } + } + } +}; + +export const PoolEndpointConfiguration: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PoolEndpointConfiguration", + modelProperties: { + inboundNatPools: { + serializedName: "inboundNatPools", + required: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "InboundNatPool" + } + } + } + } + } + } +}; + +export const InboundNatPool: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "InboundNatPool", + modelProperties: { + name: { + serializedName: "name", + required: true, + type: { + name: "String" + } + }, + protocol: { + serializedName: "protocol", + required: true, + type: { + name: "Enum", + allowedValues: ["TCP", "UDP"] + } + }, + backendPort: { + serializedName: "backendPort", + required: true, + type: { + name: "Number" + } + }, + frontendPortRangeStart: { + serializedName: "frontendPortRangeStart", + required: true, + type: { + name: "Number" + } + }, + frontendPortRangeEnd: { + serializedName: "frontendPortRangeEnd", + required: true, + type: { + name: "Number" + } + }, + networkSecurityGroupRules: { + serializedName: "networkSecurityGroupRules", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "NetworkSecurityGroupRule" + } + } + } + } + } + } +}; + +export const NetworkSecurityGroupRule: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "NetworkSecurityGroupRule", + modelProperties: { + priority: { + serializedName: "priority", + required: true, + type: { + name: "Number" + } + }, + access: { + serializedName: "access", + required: true, + type: { + name: "Enum", + allowedValues: ["Allow", "Deny"] + } + }, + sourceAddressPrefix: { + serializedName: "sourceAddressPrefix", + required: true, + type: { + name: "String" + } + }, + sourcePortRanges: { + serializedName: "sourcePortRanges", + type: { + name: "Sequence", + element: { + type: { + name: "String" + } + } + } + } + } + } +}; + +export const PublicIPAddressConfiguration: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PublicIPAddressConfiguration", + modelProperties: { + provision: { + serializedName: "provision", + type: { + name: "Enum", + allowedValues: ["BatchManaged", "UserManaged", "NoPublicIPAddresses"] + } + }, + ipAddressIds: { + serializedName: "ipAddressIds", + type: { + name: "Sequence", + element: { + type: { + name: "String" + } + } + } + } + } + } +}; + +export const TaskSchedulingPolicy: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "TaskSchedulingPolicy", + modelProperties: { + nodeFillType: { + serializedName: "nodeFillType", + required: true, + type: { + name: "Enum", + allowedValues: ["Spread", "Pack"] + } + } + } + } +}; + +export const UserAccount: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "UserAccount", + modelProperties: { + name: { + serializedName: "name", + required: true, + type: { + name: "String" + } + }, + password: { + serializedName: "password", + required: true, + type: { + name: "String" + } + }, + elevationLevel: { + serializedName: "elevationLevel", + type: { + name: "Enum", + allowedValues: ["NonAdmin", "Admin"] + } + }, + linuxUserConfiguration: { + serializedName: "linuxUserConfiguration", + type: { + name: "Composite", + className: "LinuxUserConfiguration" + } + }, + windowsUserConfiguration: { + serializedName: "windowsUserConfiguration", + type: { + name: "Composite", + className: "WindowsUserConfiguration" + } + } + } + } +}; + +export const LinuxUserConfiguration: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "LinuxUserConfiguration", + modelProperties: { + uid: { serializedName: "uid", type: { - name: "Number" + name: "Number" + } + }, + gid: { + serializedName: "gid", + type: { + name: "Number" + } + }, + sshPrivateKey: { + serializedName: "sshPrivateKey", + type: { + name: "String" + } + } + } + } +}; + +export const WindowsUserConfiguration: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "WindowsUserConfiguration", + modelProperties: { + loginMode: { + serializedName: "loginMode", + type: { + name: "Enum", + allowedValues: ["Batch", "Interactive"] + } + } + } + } +}; + +export const MetadataItem: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "MetadataItem", + modelProperties: { + name: { + serializedName: "name", + required: true, + type: { + name: "String" + } + }, + value: { + serializedName: "value", + required: true, + type: { + name: "String" + } + } + } + } +}; + +export const StartTask: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "StartTask", + modelProperties: { + commandLine: { + serializedName: "commandLine", + type: { + name: "String" + } + }, + resourceFiles: { + serializedName: "resourceFiles", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ResourceFile" + } + } + } + }, + environmentSettings: { + serializedName: "environmentSettings", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "EnvironmentSetting" + } + } + } + }, + userIdentity: { + serializedName: "userIdentity", + type: { + name: "Composite", + className: "UserIdentity" + } + }, + maxTaskRetryCount: { + serializedName: "maxTaskRetryCount", + type: { + name: "Number" + } + }, + waitForSuccess: { + serializedName: "waitForSuccess", + type: { + name: "Boolean" } }, - gid: { - serializedName: "gid", + containerSettings: { + serializedName: "containerSettings", type: { - name: "Number" + name: "Composite", + className: "TaskContainerSettings" + } + } + } + } +}; + +export const ResourceFile: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ResourceFile", + modelProperties: { + autoStorageContainerName: { + serializedName: "autoStorageContainerName", + type: { + name: "String" } }, - sshPrivateKey: { - serializedName: "sshPrivateKey", + storageContainerUrl: { + serializedName: "storageContainerUrl", + type: { + name: "String" + } + }, + httpUrl: { + serializedName: "httpUrl", + type: { + name: "String" + } + }, + blobPrefix: { + serializedName: "blobPrefix", + type: { + name: "String" + } + }, + filePath: { + serializedName: "filePath", + type: { + name: "String" + } + }, + fileMode: { + serializedName: "fileMode", type: { name: "String" } + }, + identityReference: { + serializedName: "identityReference", + type: { + name: "Composite", + className: "ComputeNodeIdentityReference" + } } } } }; -export const WindowsUserConfiguration: msRest.CompositeMapper = { - serializedName: "WindowsUserConfiguration", +export const EnvironmentSetting: coreClient.CompositeMapper = { type: { name: "Composite", - className: "WindowsUserConfiguration", + className: "EnvironmentSetting", modelProperties: { - loginMode: { - serializedName: "loginMode", + name: { + serializedName: "name", + required: true, + type: { + name: "String" + } + }, + value: { + serializedName: "value", + type: { + name: "String" + } + } + } + } +}; + +export const UserIdentity: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "UserIdentity", + modelProperties: { + userName: { + serializedName: "userName", + type: { + name: "String" + } + }, + autoUser: { + serializedName: "autoUser", + type: { + name: "Composite", + className: "AutoUserSpecification" + } + } + } + } +}; + +export const AutoUserSpecification: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutoUserSpecification", + modelProperties: { + scope: { + serializedName: "scope", + type: { + name: "Enum", + allowedValues: ["Task", "Pool"] + } + }, + elevationLevel: { + serializedName: "elevationLevel", + type: { + name: "Enum", + allowedValues: ["NonAdmin", "Admin"] + } + } + } + } +}; + +export const TaskContainerSettings: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "TaskContainerSettings", + modelProperties: { + containerRunOptions: { + serializedName: "containerRunOptions", + type: { + name: "String" + } + }, + imageName: { + serializedName: "imageName", + required: true, + type: { + name: "String" + } + }, + registry: { + serializedName: "registry", + type: { + name: "Composite", + className: "ContainerRegistry" + } + }, + workingDirectory: { + serializedName: "workingDirectory", + type: { + name: "Enum", + allowedValues: ["TaskWorkingDirectory", "ContainerImageDefault"] + } + } + } + } +}; + +export const CertificateReference: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "CertificateReference", + modelProperties: { + id: { + serializedName: "id", + required: true, + type: { + name: "String" + } + }, + storeLocation: { + serializedName: "storeLocation", + type: { + name: "Enum", + allowedValues: ["CurrentUser", "LocalMachine"] + } + }, + storeName: { + serializedName: "storeName", + type: { + name: "String" + } + }, + visibility: { + serializedName: "visibility", + type: { + name: "Sequence", + element: { + type: { + name: "Enum", + allowedValues: ["StartTask", "Task", "RemoteUser"] + } + } + } + } + } + } +}; + +export const ApplicationPackageReference: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ApplicationPackageReference", + modelProperties: { + id: { + serializedName: "id", + required: true, + type: { + name: "String" + } + }, + version: { + serializedName: "version", + type: { + name: "String" + } + } + } + } +}; + +export const ResizeOperationStatus: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "ResizeOperationStatus", + modelProperties: { + targetDedicatedNodes: { + serializedName: "targetDedicatedNodes", + type: { + name: "Number" + } + }, + targetLowPriorityNodes: { + serializedName: "targetLowPriorityNodes", + type: { + name: "Number" + } + }, + resizeTimeout: { + serializedName: "resizeTimeout", + type: { + name: "TimeSpan" + } + }, + nodeDeallocationOption: { + serializedName: "nodeDeallocationOption", type: { name: "Enum", allowedValues: [ - "Batch", - "Interactive" + "Requeue", + "Terminate", + "TaskCompletion", + "RetainedData" ] } + }, + startTime: { + serializedName: "startTime", + type: { + name: "DateTime" + } + }, + errors: { + serializedName: "errors", + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ResizeError" + } + } + } } } } }; -export const UserAccount: msRest.CompositeMapper = { - serializedName: "UserAccount", +export const ResizeError: coreClient.CompositeMapper = { type: { name: "Composite", - className: "UserAccount", + className: "ResizeError", modelProperties: { - name: { + code: { + serializedName: "code", required: true, - serializedName: "name", type: { name: "String" } }, - password: { + message: { + serializedName: "message", required: true, - serializedName: "password", type: { name: "String" } }, - elevationLevel: { - serializedName: "elevationLevel", - type: { - name: "Enum", - allowedValues: [ - "NonAdmin", - "Admin" - ] - } - }, - linuxUserConfiguration: { - serializedName: "linuxUserConfiguration", - type: { - name: "Composite", - className: "LinuxUserConfiguration" - } - }, - windowsUserConfiguration: { - serializedName: "windowsUserConfiguration", + details: { + serializedName: "details", type: { - name: "Composite", - className: "WindowsUserConfiguration" + name: "Sequence", + element: { + type: { + name: "Composite", + className: "ResizeError" + } + } } } } } }; -export const MetadataItem: msRest.CompositeMapper = { - serializedName: "MetadataItem", +export const MountConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "MetadataItem", + className: "MountConfiguration", modelProperties: { - name: { - required: true, - serializedName: "name", + azureBlobFileSystemConfiguration: { + serializedName: "azureBlobFileSystemConfiguration", type: { - name: "String" + name: "Composite", + className: "AzureBlobFileSystemConfiguration" } }, - value: { - required: true, - serializedName: "value", + nfsMountConfiguration: { + serializedName: "nfsMountConfiguration", type: { - name: "String" + name: "Composite", + className: "NFSMountConfiguration" + } + }, + cifsMountConfiguration: { + serializedName: "cifsMountConfiguration", + type: { + name: "Composite", + className: "CifsMountConfiguration" + } + }, + azureFileShareConfiguration: { + serializedName: "azureFileShareConfiguration", + type: { + name: "Composite", + className: "AzureFileShareConfiguration" } } } } }; -export const ResourceFile: msRest.CompositeMapper = { - serializedName: "ResourceFile", +export const AzureBlobFileSystemConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ResourceFile", + className: "AzureBlobFileSystemConfiguration", modelProperties: { - autoStorageContainerName: { - serializedName: "autoStorageContainerName", + accountName: { + serializedName: "accountName", + required: true, type: { name: "String" } }, - storageContainerUrl: { - serializedName: "storageContainerUrl", + containerName: { + serializedName: "containerName", + required: true, type: { name: "String" } }, - httpUrl: { - serializedName: "httpUrl", + accountKey: { + serializedName: "accountKey", type: { name: "String" } }, - blobPrefix: { - serializedName: "blobPrefix", + sasKey: { + serializedName: "sasKey", type: { name: "String" } }, - filePath: { - serializedName: "filePath", + blobfuseOptions: { + serializedName: "blobfuseOptions", type: { name: "String" } }, - fileMode: { - serializedName: "fileMode", + relativeMountPath: { + serializedName: "relativeMountPath", + required: true, type: { name: "String" } + }, + identityReference: { + serializedName: "identityReference", + type: { + name: "Composite", + className: "ComputeNodeIdentityReference" + } } } } }; -export const EnvironmentSetting: msRest.CompositeMapper = { - serializedName: "EnvironmentSetting", +export const NFSMountConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "EnvironmentSetting", + className: "NFSMountConfiguration", modelProperties: { - name: { + source: { + serializedName: "source", required: true, - serializedName: "name", type: { name: "String" } }, - value: { - serializedName: "value", + relativeMountPath: { + serializedName: "relativeMountPath", + required: true, type: { name: "String" } - } - } - } -}; - -export const AutoUserSpecification: msRest.CompositeMapper = { - serializedName: "AutoUserSpecification", - type: { - name: "Composite", - className: "AutoUserSpecification", - modelProperties: { - scope: { - serializedName: "scope", - type: { - name: "Enum", - allowedValues: [ - "Task", - "Pool" - ] - } }, - elevationLevel: { - serializedName: "elevationLevel", + mountOptions: { + serializedName: "mountOptions", type: { - name: "Enum", - allowedValues: [ - "NonAdmin", - "Admin" - ] + name: "String" } } } } }; -export const UserIdentity: msRest.CompositeMapper = { - serializedName: "UserIdentity", +export const CifsMountConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "UserIdentity", + className: "CifsMountConfiguration", modelProperties: { - userName: { - serializedName: "userName", + username: { + serializedName: "username", + required: true, type: { name: "String" } }, - autoUser: { - serializedName: "autoUser", - type: { - name: "Composite", - className: "AutoUserSpecification" - } - } - } - } -}; - -export const TaskContainerSettings: msRest.CompositeMapper = { - serializedName: "TaskContainerSettings", - type: { - name: "Composite", - className: "TaskContainerSettings", - modelProperties: { - containerRunOptions: { - serializedName: "containerRunOptions", + source: { + serializedName: "source", + required: true, type: { name: "String" } }, - imageName: { + relativeMountPath: { + serializedName: "relativeMountPath", required: true, - serializedName: "imageName", type: { name: "String" } }, - registry: { - serializedName: "registry", + mountOptions: { + serializedName: "mountOptions", type: { - name: "Composite", - className: "ContainerRegistry" + name: "String" } }, - workingDirectory: { - serializedName: "workingDirectory", + password: { + serializedName: "password", + required: true, type: { - name: "Enum", - allowedValues: [ - "TaskWorkingDirectory", - "ContainerImageDefault" - ] + name: "String" } } } } }; -export const StartTask: msRest.CompositeMapper = { - serializedName: "StartTask", +export const AzureFileShareConfiguration: coreClient.CompositeMapper = { type: { name: "Composite", - className: "StartTask", + className: "AzureFileShareConfiguration", modelProperties: { - commandLine: { - serializedName: "commandLine", + accountName: { + serializedName: "accountName", + required: true, type: { name: "String" } }, - resourceFiles: { - serializedName: "resourceFiles", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ResourceFile" - } - } - } - }, - environmentSettings: { - serializedName: "environmentSettings", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "EnvironmentSetting" - } - } - } - }, - userIdentity: { - serializedName: "userIdentity", + azureFileUrl: { + serializedName: "azureFileUrl", + required: true, type: { - name: "Composite", - className: "UserIdentity" + name: "String" } }, - maxTaskRetryCount: { - serializedName: "maxTaskRetryCount", + accountKey: { + serializedName: "accountKey", + required: true, type: { - name: "Number" + name: "String" } }, - waitForSuccess: { - serializedName: "waitForSuccess", + relativeMountPath: { + serializedName: "relativeMountPath", + required: true, type: { - name: "Boolean" + name: "String" } }, - containerSettings: { - serializedName: "containerSettings", + mountOptions: { + serializedName: "mountOptions", type: { - name: "Composite", - className: "TaskContainerSettings" + name: "String" } } } } }; -export const CertificateReference: msRest.CompositeMapper = { - serializedName: "CertificateReference", +export const BatchPoolIdentity: coreClient.CompositeMapper = { type: { name: "Composite", - className: "CertificateReference", + className: "BatchPoolIdentity", modelProperties: { - id: { + type: { + serializedName: "type", required: true, - serializedName: "id", - type: { - name: "String" - } - }, - storeLocation: { - serializedName: "storeLocation", type: { name: "Enum", - allowedValues: [ - "CurrentUser", - "LocalMachine" - ] + allowedValues: ["UserAssigned", "None"] } }, - storeName: { - serializedName: "storeName", + userAssignedIdentities: { + serializedName: "userAssignedIdentities", type: { - name: "String" + name: "Dictionary", + value: { + type: { name: "Composite", className: "UserAssignedIdentities" } + } } - }, - visibility: { - serializedName: "visibility", + } + } + } +}; + +export const OutboundEnvironmentEndpointCollection: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "OutboundEnvironmentEndpointCollection", + modelProperties: { + value: { + serializedName: "value", + readOnly: true, type: { name: "Sequence", element: { type: { - name: "Enum", - allowedValues: [ - "StartTask", - "Task", - "RemoteUser" - ] + name: "Composite", + className: "OutboundEnvironmentEndpoint" } } } + }, + nextLink: { + serializedName: "nextLink", + type: { + name: "String" + } } } } }; -export const ApplicationPackageReference: msRest.CompositeMapper = { - serializedName: "ApplicationPackageReference", +export const OutboundEnvironmentEndpoint: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ApplicationPackageReference", + className: "OutboundEnvironmentEndpoint", modelProperties: { - id: { - required: true, - serializedName: "id", + category: { + serializedName: "category", + readOnly: true, type: { name: "String" } }, - version: { - serializedName: "version", + endpoints: { + serializedName: "endpoints", + readOnly: true, type: { - name: "String" + name: "Sequence", + element: { + type: { + name: "Composite", + className: "EndpointDependency" + } + } } } } } }; -export const ResizeError: msRest.CompositeMapper = { - serializedName: "ResizeError", +export const EndpointDependency: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ResizeError", + className: "EndpointDependency", modelProperties: { - code: { - required: true, - serializedName: "code", + domainName: { + serializedName: "domainName", + readOnly: true, type: { name: "String" } }, - message: { - required: true, - serializedName: "message", + description: { + serializedName: "description", + readOnly: true, type: { name: "String" } }, - details: { - serializedName: "details", + endpointDetails: { + serializedName: "endpointDetails", + readOnly: true, type: { name: "Sequence", element: { type: { name: "Composite", - className: "ResizeError" + className: "EndpointDetail" } } } @@ -2178,135 +2682,137 @@ export const ResizeError: msRest.CompositeMapper = { } }; -export const ResizeOperationStatus: msRest.CompositeMapper = { - serializedName: "ResizeOperationStatus", +export const EndpointDetail: coreClient.CompositeMapper = { type: { name: "Composite", - className: "ResizeOperationStatus", + className: "EndpointDetail", modelProperties: { - targetDedicatedNodes: { - serializedName: "targetDedicatedNodes", - type: { - name: "Number" - } - }, - targetLowPriorityNodes: { - serializedName: "targetLowPriorityNodes", + port: { + serializedName: "port", + readOnly: true, type: { name: "Number" } - }, - resizeTimeout: { - serializedName: "resizeTimeout", + } + } + } +}; + +export const AutoStorageProperties: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "AutoStorageProperties", + modelProperties: { + ...AutoStorageBaseProperties.type.modelProperties, + lastKeySync: { + serializedName: "lastKeySync", + required: true, type: { - name: "TimeSpan" + name: "DateTime" } - }, - nodeDeallocationOption: { - serializedName: "nodeDeallocationOption", + } + } + } +}; + +export const PrivateEndpointConnection: coreClient.CompositeMapper = { + type: { + name: "Composite", + className: "PrivateEndpointConnection", + modelProperties: { + ...ProxyResource.type.modelProperties, + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, type: { name: "Enum", - allowedValues: [ - "Requeue", - "Terminate", - "TaskCompletion", - "RetainedData" - ] + allowedValues: ["Succeeded", "Updating", "Failed"] } }, - startTime: { - serializedName: "startTime", + privateEndpoint: { + serializedName: "properties.privateEndpoint", type: { - name: "DateTime" + name: "Composite", + className: "PrivateEndpoint" } }, - errors: { - serializedName: "errors", + privateLinkServiceConnectionState: { + serializedName: "properties.privateLinkServiceConnectionState", type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ResizeError" - } - } + name: "Composite", + className: "PrivateLinkServiceConnectionState" } } } } }; -export const AzureBlobFileSystemConfiguration: msRest.CompositeMapper = { - serializedName: "AzureBlobFileSystemConfiguration", +export const ApplicationPackage: coreClient.CompositeMapper = { type: { name: "Composite", - className: "AzureBlobFileSystemConfiguration", + className: "ApplicationPackage", modelProperties: { - accountName: { - required: true, - serializedName: "accountName", - type: { - name: "String" - } - }, - containerName: { - required: true, - serializedName: "containerName", + ...ProxyResource.type.modelProperties, + state: { + serializedName: "properties.state", + readOnly: true, type: { - name: "String" + name: "Enum", + allowedValues: ["Pending", "Active"] } }, - accountKey: { - serializedName: "accountKey", + format: { + serializedName: "properties.format", + readOnly: true, type: { name: "String" } }, - sasKey: { - serializedName: "sasKey", + storageUrl: { + serializedName: "properties.storageUrl", + readOnly: true, type: { name: "String" } }, - blobfuseOptions: { - serializedName: "blobfuseOptions", + storageUrlExpiry: { + serializedName: "properties.storageUrlExpiry", + readOnly: true, type: { - name: "String" + name: "DateTime" } }, - relativeMountPath: { - required: true, - serializedName: "relativeMountPath", + lastActivationTime: { + serializedName: "properties.lastActivationTime", + readOnly: true, type: { - name: "String" + name: "DateTime" } } } } }; -export const NFSMountConfiguration: msRest.CompositeMapper = { - serializedName: "NFSMountConfiguration", +export const Application: coreClient.CompositeMapper = { type: { name: "Composite", - className: "NFSMountConfiguration", + className: "Application", modelProperties: { - source: { - required: true, - serializedName: "source", + ...ProxyResource.type.modelProperties, + displayName: { + serializedName: "properties.displayName", type: { name: "String" } }, - relativeMountPath: { - required: true, - serializedName: "relativeMountPath", + allowUpdates: { + serializedName: "properties.allowUpdates", type: { - name: "String" + name: "Boolean" } }, - mountOptions: { - serializedName: "mountOptions", + defaultVersion: { + serializedName: "properties.defaultVersion", type: { name: "String" } @@ -2315,86 +2821,112 @@ export const NFSMountConfiguration: msRest.CompositeMapper = { } }; -export const CIFSMountConfiguration: msRest.CompositeMapper = { - serializedName: "CIFSMountConfiguration", +export const Certificate: coreClient.CompositeMapper = { type: { name: "Composite", - className: "CIFSMountConfiguration", + className: "Certificate", modelProperties: { - username: { - required: true, - serializedName: "username", + ...ProxyResource.type.modelProperties, + thumbprintAlgorithm: { + serializedName: "properties.thumbprintAlgorithm", type: { name: "String" } }, - source: { - required: true, - serializedName: "source", + thumbprint: { + serializedName: "properties.thumbprint", type: { name: "String" } }, - relativeMountPath: { - required: true, - serializedName: "relativeMountPath", + format: { + serializedName: "properties.format", type: { - name: "String" + name: "Enum", + allowedValues: ["Pfx", "Cer"] } }, - mountOptions: { - serializedName: "mountOptions", + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, type: { - name: "String" + name: "Enum", + allowedValues: ["Succeeded", "Deleting", "Failed"] } }, - password: { - required: true, - serializedName: "password", + provisioningStateTransitionTime: { + serializedName: "properties.provisioningStateTransitionTime", + readOnly: true, + type: { + name: "DateTime" + } + }, + previousProvisioningState: { + serializedName: "properties.previousProvisioningState", + readOnly: true, + type: { + name: "Enum", + allowedValues: ["Succeeded", "Deleting", "Failed"] + } + }, + previousProvisioningStateTransitionTime: { + serializedName: "properties.previousProvisioningStateTransitionTime", + readOnly: true, + type: { + name: "DateTime" + } + }, + publicData: { + serializedName: "properties.publicData", + readOnly: true, type: { name: "String" } + }, + deleteCertificateError: { + serializedName: "properties.deleteCertificateError", + type: { + name: "Composite", + className: "DeleteCertificateError" + } } } } }; -export const AzureFileShareConfiguration: msRest.CompositeMapper = { - serializedName: "AzureFileShareConfiguration", +export const CertificateCreateOrUpdateParameters: coreClient.CompositeMapper = { type: { name: "Composite", - className: "AzureFileShareConfiguration", - modelProperties: { - accountName: { - required: true, - serializedName: "accountName", + className: "CertificateCreateOrUpdateParameters", + modelProperties: { + ...ProxyResource.type.modelProperties, + thumbprintAlgorithm: { + serializedName: "properties.thumbprintAlgorithm", type: { name: "String" } }, - azureFileUrl: { - required: true, - serializedName: "azureFileUrl", + thumbprint: { + serializedName: "properties.thumbprint", type: { name: "String" } }, - accountKey: { - required: true, - serializedName: "accountKey", + format: { + serializedName: "properties.format", type: { - name: "String" + name: "Enum", + allowedValues: ["Pfx", "Cer"] } }, - relativeMountPath: { - required: true, - serializedName: "relativeMountPath", + data: { + serializedName: "properties.data", type: { name: "String" } }, - mountOptions: { - serializedName: "mountOptions", + password: { + serializedName: "properties.password", type: { name: "String" } @@ -2403,51 +2935,60 @@ export const AzureFileShareConfiguration: msRest.CompositeMapper = { } }; -export const MountConfiguration: msRest.CompositeMapper = { - serializedName: "MountConfiguration", +export const PrivateLinkResource: coreClient.CompositeMapper = { type: { name: "Composite", - className: "MountConfiguration", + className: "PrivateLinkResource", modelProperties: { - azureBlobFileSystemConfiguration: { - serializedName: "azureBlobFileSystemConfiguration", - type: { - name: "Composite", - className: "AzureBlobFileSystemConfiguration" - } - }, - nfsMountConfiguration: { - serializedName: "nfsMountConfiguration", + ...ProxyResource.type.modelProperties, + groupId: { + serializedName: "properties.groupId", + readOnly: true, type: { - name: "Composite", - className: "NFSMountConfiguration" + name: "String" } }, - cifsMountConfiguration: { - serializedName: "cifsMountConfiguration", + requiredMembers: { + serializedName: "properties.requiredMembers", + readOnly: true, type: { - name: "Composite", - className: "CIFSMountConfiguration" + name: "Sequence", + element: { + type: { + name: "String" + } + } } }, - azureFileShareConfiguration: { - serializedName: "azureFileShareConfiguration", + requiredZoneNames: { + serializedName: "properties.requiredZoneNames", + readOnly: true, type: { - name: "Composite", - className: "AzureFileShareConfiguration" + name: "Sequence", + element: { + type: { + name: "String" + } + } } } } } }; -export const Pool: msRest.CompositeMapper = { - serializedName: "Pool", +export const Pool: coreClient.CompositeMapper = { type: { name: "Composite", className: "Pool", modelProperties: { ...ProxyResource.type.modelProperties, + identity: { + serializedName: "identity", + type: { + name: "Composite", + className: "BatchPoolIdentity" + } + }, displayName: { serializedName: "properties.displayName", type: { @@ -2455,52 +2996,45 @@ export const Pool: msRest.CompositeMapper = { } }, lastModified: { - readOnly: true, serializedName: "properties.lastModified", + readOnly: true, type: { name: "DateTime" } }, creationTime: { - readOnly: true, serializedName: "properties.creationTime", + readOnly: true, type: { name: "DateTime" } }, provisioningState: { - readOnly: true, serializedName: "properties.provisioningState", + readOnly: true, type: { name: "Enum", - allowedValues: [ - "Succeeded", - "Deleting" - ] + allowedValues: ["Succeeded", "Deleting"] } }, provisioningStateTransitionTime: { - readOnly: true, serializedName: "properties.provisioningStateTransitionTime", + readOnly: true, type: { name: "DateTime" } }, allocationState: { - readOnly: true, serializedName: "properties.allocationState", + readOnly: true, type: { name: "Enum", - allowedValues: [ - "Steady", - "Resizing", - "Stopping" - ] + allowedValues: ["Steady", "Resizing", "Stopping"] } }, allocationStateTransitionTime: { - readOnly: true, serializedName: "properties.allocationStateTransitionTime", + readOnly: true, type: { name: "DateTime" } @@ -2519,15 +3053,15 @@ export const Pool: msRest.CompositeMapper = { } }, currentDedicatedNodes: { - readOnly: true, serializedName: "properties.currentDedicatedNodes", + readOnly: true, type: { name: "Number" } }, currentLowPriorityNodes: { - readOnly: true, serializedName: "properties.currentLowPriorityNodes", + readOnly: true, type: { name: "Number" } @@ -2540,7 +3074,6 @@ export const Pool: msRest.CompositeMapper = { } }, autoScaleRun: { - readOnly: true, serializedName: "properties.autoScaleRun", type: { name: "Composite", @@ -2551,10 +3084,7 @@ export const Pool: msRest.CompositeMapper = { serializedName: "properties.interNodeCommunication", type: { name: "Enum", - allowedValues: [ - "Enabled", - "Disabled" - ] + allowedValues: ["Enabled", "Disabled"] } }, networkConfiguration: { @@ -2644,7 +3174,6 @@ export const Pool: msRest.CompositeMapper = { } }, resizeOperationStatus: { - readOnly: true, serializedName: "properties.resizeOperationStatus", type: { name: "Composite", @@ -2667,128 +3196,231 @@ export const Pool: msRest.CompositeMapper = { } }; -export const OperationDisplay: msRest.CompositeMapper = { - serializedName: "Operation_display", +export const BatchAccount: coreClient.CompositeMapper = { type: { name: "Composite", - className: "OperationDisplay", + className: "BatchAccount", modelProperties: { - provider: { - serializedName: "provider", + ...Resource.type.modelProperties, + identity: { + serializedName: "identity", type: { - name: "String" + name: "Composite", + className: "BatchAccountIdentity" } }, - operation: { - serializedName: "operation", + accountEndpoint: { + serializedName: "properties.accountEndpoint", + readOnly: true, type: { name: "String" } }, - resource: { - serializedName: "resource", + provisioningState: { + serializedName: "properties.provisioningState", + readOnly: true, type: { - name: "String" + name: "Enum", + allowedValues: [ + "Invalid", + "Creating", + "Deleting", + "Succeeded", + "Failed", + "Cancelled" + ] } }, - description: { - serializedName: "description", + poolAllocationMode: { + serializedName: "properties.poolAllocationMode", + readOnly: true, type: { - name: "String" + name: "Enum", + allowedValues: ["BatchService", "UserSubscription"] + } + }, + keyVaultReference: { + serializedName: "properties.keyVaultReference", + type: { + name: "Composite", + className: "KeyVaultReference" + } + }, + publicNetworkAccess: { + defaultValue: "Enabled", + serializedName: "properties.publicNetworkAccess", + readOnly: true, + nullable: true, + type: { + name: "Enum", + allowedValues: ["Enabled", "Disabled"] + } + }, + privateEndpointConnections: { + serializedName: "properties.privateEndpointConnections", + readOnly: true, + nullable: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "PrivateEndpointConnection" + } + } + } + }, + autoStorage: { + serializedName: "properties.autoStorage", + type: { + name: "Composite", + className: "AutoStorageProperties" + } + }, + encryption: { + serializedName: "properties.encryption", + type: { + name: "Composite", + className: "EncryptionProperties" + } + }, + dedicatedCoreQuota: { + serializedName: "properties.dedicatedCoreQuota", + readOnly: true, + nullable: true, + type: { + name: "Number" + } + }, + lowPriorityCoreQuota: { + serializedName: "properties.lowPriorityCoreQuota", + readOnly: true, + nullable: true, + type: { + name: "Number" + } + }, + dedicatedCoreQuotaPerVMFamily: { + serializedName: "properties.dedicatedCoreQuotaPerVMFamily", + readOnly: true, + nullable: true, + type: { + name: "Sequence", + element: { + type: { + name: "Composite", + className: "VirtualMachineFamilyCoreQuota" + } + } + } + }, + dedicatedCoreQuotaPerVMFamilyEnforced: { + serializedName: "properties.dedicatedCoreQuotaPerVMFamilyEnforced", + readOnly: true, + type: { + name: "Boolean" + } + }, + poolQuota: { + serializedName: "properties.poolQuota", + readOnly: true, + type: { + name: "Number" + } + }, + activeJobAndJobScheduleQuota: { + serializedName: "properties.activeJobAndJobScheduleQuota", + readOnly: true, + type: { + name: "Number" + } + }, + allowedAuthenticationModes: { + serializedName: "properties.allowedAuthenticationModes", + readOnly: true, + type: { + name: "Sequence", + element: { + type: { + name: "Enum", + allowedValues: ["SharedKey", "AAD", "TaskAuthenticationToken"] + } + } } } } } }; -export const Operation: msRest.CompositeMapper = { - serializedName: "Operation", +export const CertificateProperties: coreClient.CompositeMapper = { type: { name: "Composite", - className: "Operation", + className: "CertificateProperties", modelProperties: { - name: { - serializedName: "name", + ...CertificateBaseProperties.type.modelProperties, + provisioningState: { + serializedName: "provisioningState", + readOnly: true, type: { - name: "String" + name: "Enum", + allowedValues: ["Succeeded", "Deleting", "Failed"] } }, - display: { - serializedName: "display", + provisioningStateTransitionTime: { + serializedName: "provisioningStateTransitionTime", + readOnly: true, type: { - name: "Composite", - className: "OperationDisplay" + name: "DateTime" } }, - origin: { - serializedName: "origin", + previousProvisioningState: { + serializedName: "previousProvisioningState", + readOnly: true, type: { - name: "String" + name: "Enum", + allowedValues: ["Succeeded", "Deleting", "Failed"] } }, - properties: { - serializedName: "properties", + previousProvisioningStateTransitionTime: { + serializedName: "previousProvisioningStateTransitionTime", + readOnly: true, type: { - name: "Object" + name: "DateTime" } - } - } - } -}; - -export const CheckNameAvailabilityParameters: msRest.CompositeMapper = { - serializedName: "CheckNameAvailabilityParameters", - type: { - name: "Composite", - className: "CheckNameAvailabilityParameters", - modelProperties: { - name: { - required: true, - serializedName: "name", + }, + publicData: { + serializedName: "publicData", + readOnly: true, type: { name: "String" } }, - type: { - required: true, - isConstant: true, - serializedName: "type", - defaultValue: 'Microsoft.Batch/batchAccounts', + deleteCertificateError: { + serializedName: "deleteCertificateError", type: { - name: "String" + name: "Composite", + className: "DeleteCertificateError" } } } } }; -export const CheckNameAvailabilityResult: msRest.CompositeMapper = { - serializedName: "CheckNameAvailabilityResult", +export const CertificateCreateOrUpdateProperties: coreClient.CompositeMapper = { type: { name: "Composite", - className: "CheckNameAvailabilityResult", + className: "CertificateCreateOrUpdateProperties", modelProperties: { - nameAvailable: { - readOnly: true, - serializedName: "nameAvailable", - type: { - name: "Boolean" - } - }, - reason: { - readOnly: true, - serializedName: "reason", + ...CertificateBaseProperties.type.modelProperties, + data: { + serializedName: "data", + required: true, type: { - name: "Enum", - allowedValues: [ - "Invalid", - "AlreadyExists" - ] + name: "String" } }, - message: { - readOnly: true, - serializedName: "message", + password: { + serializedName: "password", type: { name: "String" } @@ -2797,13 +3429,12 @@ export const CheckNameAvailabilityResult: msRest.CompositeMapper = { } }; -export const BatchAccountCreateHeaders: msRest.CompositeMapper = { - serializedName: "batchaccount-create-headers", +export const BatchAccountCreateHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "BatchAccountCreateHeaders", modelProperties: { - locationHeader: { + location: { serializedName: "location", type: { name: "String" @@ -2819,8 +3450,7 @@ export const BatchAccountCreateHeaders: msRest.CompositeMapper = { } }; -export const BatchAccountDeleteHeaders: msRest.CompositeMapper = { - serializedName: "batchaccount-delete-headers", +export const BatchAccountDeleteHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "BatchAccountDeleteHeaders", @@ -2841,8 +3471,7 @@ export const BatchAccountDeleteHeaders: msRest.CompositeMapper = { } }; -export const CertificateCreateHeaders: msRest.CompositeMapper = { - serializedName: "certificate-create-headers", +export const CertificateCreateHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "CertificateCreateHeaders", @@ -2857,8 +3486,7 @@ export const CertificateCreateHeaders: msRest.CompositeMapper = { } }; -export const CertificateUpdateHeaders: msRest.CompositeMapper = { - serializedName: "certificate-update-headers", +export const CertificateUpdateHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "CertificateUpdateHeaders", @@ -2873,8 +3501,7 @@ export const CertificateUpdateHeaders: msRest.CompositeMapper = { } }; -export const CertificateDeleteHeaders: msRest.CompositeMapper = { - serializedName: "certificate-delete-headers", +export const CertificateDeleteHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "CertificateDeleteHeaders", @@ -2895,8 +3522,7 @@ export const CertificateDeleteHeaders: msRest.CompositeMapper = { } }; -export const CertificateGetHeaders: msRest.CompositeMapper = { - serializedName: "certificate-get-headers", +export const CertificateGetHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "CertificateGetHeaders", @@ -2911,8 +3537,7 @@ export const CertificateGetHeaders: msRest.CompositeMapper = { } }; -export const CertificateCancelDeletionHeaders: msRest.CompositeMapper = { - serializedName: "certificate-canceldeletion-headers", +export const CertificateCancelDeletionHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "CertificateCancelDeletionHeaders", @@ -2927,8 +3552,7 @@ export const CertificateCancelDeletionHeaders: msRest.CompositeMapper = { } }; -export const PrivateEndpointConnectionUpdateHeaders: msRest.CompositeMapper = { - serializedName: "privateendpointconnection-update-headers", +export const PrivateEndpointConnectionUpdateHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "PrivateEndpointConnectionUpdateHeaders", @@ -2949,8 +3573,7 @@ export const PrivateEndpointConnectionUpdateHeaders: msRest.CompositeMapper = { } }; -export const PoolCreateHeaders: msRest.CompositeMapper = { - serializedName: "pool-create-headers", +export const PoolCreateHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "PoolCreateHeaders", @@ -2965,8 +3588,7 @@ export const PoolCreateHeaders: msRest.CompositeMapper = { } }; -export const PoolUpdateHeaders: msRest.CompositeMapper = { - serializedName: "pool-update-headers", +export const PoolUpdateHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "PoolUpdateHeaders", @@ -2981,8 +3603,7 @@ export const PoolUpdateHeaders: msRest.CompositeMapper = { } }; -export const PoolDeleteHeaders: msRest.CompositeMapper = { - serializedName: "pool-delete-headers", +export const PoolDeleteHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "PoolDeleteHeaders", @@ -3003,8 +3624,7 @@ export const PoolDeleteHeaders: msRest.CompositeMapper = { } }; -export const PoolGetHeaders: msRest.CompositeMapper = { - serializedName: "pool-get-headers", +export const PoolGetHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "PoolGetHeaders", @@ -3019,8 +3639,7 @@ export const PoolGetHeaders: msRest.CompositeMapper = { } }; -export const PoolDisableAutoScaleHeaders: msRest.CompositeMapper = { - serializedName: "pool-disableautoscale-headers", +export const PoolDisableAutoScaleHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "PoolDisableAutoScaleHeaders", @@ -3035,8 +3654,7 @@ export const PoolDisableAutoScaleHeaders: msRest.CompositeMapper = { } }; -export const PoolStopResizeHeaders: msRest.CompositeMapper = { - serializedName: "pool-stopresize-headers", +export const PoolStopResizeHeaders: coreClient.CompositeMapper = { type: { name: "Composite", className: "PoolStopResizeHeaders", @@ -3050,227 +3668,3 @@ export const PoolStopResizeHeaders: msRest.CompositeMapper = { } } }; - -export const BatchAccountListResult: msRest.CompositeMapper = { - serializedName: "BatchAccountListResult", - type: { - name: "Composite", - className: "BatchAccountListResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "BatchAccount" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; - -export const ListApplicationPackagesResult: msRest.CompositeMapper = { - serializedName: "ListApplicationPackagesResult", - type: { - name: "Composite", - className: "ListApplicationPackagesResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "ApplicationPackage" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; - -export const ListApplicationsResult: msRest.CompositeMapper = { - serializedName: "ListApplicationsResult", - type: { - name: "Composite", - className: "ListApplicationsResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "Application" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; - -export const OperationListResult: msRest.CompositeMapper = { - serializedName: "OperationListResult", - type: { - name: "Composite", - className: "OperationListResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "Operation" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; - -export const ListCertificatesResult: msRest.CompositeMapper = { - serializedName: "ListCertificatesResult", - type: { - name: "Composite", - className: "ListCertificatesResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "Certificate" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; - -export const ListPrivateLinkResourcesResult: msRest.CompositeMapper = { - serializedName: "ListPrivateLinkResourcesResult", - type: { - name: "Composite", - className: "ListPrivateLinkResourcesResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "PrivateLinkResource" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; - -export const ListPrivateEndpointConnectionsResult: msRest.CompositeMapper = { - serializedName: "ListPrivateEndpointConnectionsResult", - type: { - name: "Composite", - className: "ListPrivateEndpointConnectionsResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "PrivateEndpointConnection" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; - -export const ListPoolsResult: msRest.CompositeMapper = { - serializedName: "ListPoolsResult", - type: { - name: "Composite", - className: "ListPoolsResult", - modelProperties: { - value: { - serializedName: "", - type: { - name: "Sequence", - element: { - type: { - name: "Composite", - className: "Pool" - } - } - } - }, - nextLink: { - serializedName: "nextLink", - type: { - name: "String" - } - } - } - } -}; diff --git a/sdk/batch/arm-batch/src/models/operationsMappers.ts b/sdk/batch/arm-batch/src/models/operationsMappers.ts deleted file mode 100644 index 689688180be7..000000000000 --- a/sdk/batch/arm-batch/src/models/operationsMappers.ts +++ /dev/null @@ -1,14 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - CloudError, - Operation, - OperationDisplay, - OperationListResult -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/parameters.ts b/sdk/batch/arm-batch/src/models/parameters.ts index 519b835471af..3815a96a0fec 100644 --- a/sdk/batch/arm-batch/src/models/parameters.ts +++ b/sdk/batch/arm-batch/src/models/parameters.ts @@ -1,146 +1,202 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; +import { + OperationParameter, + OperationURLParameter, + OperationQueryParameter +} from "@azure/core-client"; +import { + BatchAccountCreateParameters as BatchAccountCreateParametersMapper, + BatchAccountUpdateParameters as BatchAccountUpdateParametersMapper, + BatchAccountRegenerateKeyParameters as BatchAccountRegenerateKeyParametersMapper, + ActivateApplicationPackageParameters as ActivateApplicationPackageParametersMapper, + ApplicationPackage as ApplicationPackageMapper, + Application as ApplicationMapper, + CheckNameAvailabilityParameters as CheckNameAvailabilityParametersMapper, + CertificateCreateOrUpdateParameters as CertificateCreateOrUpdateParametersMapper, + PrivateEndpointConnection as PrivateEndpointConnectionMapper, + Pool as PoolMapper +} from "../models/mappers"; -export const acceptLanguage: msRest.OperationParameter = { - parameterPath: "acceptLanguage", +export const contentType: OperationParameter = { + parameterPath: ["options", "contentType"], mapper: { - serializedName: "accept-language", - defaultValue: 'en-US', + defaultValue: "application/json", + isConstant: true, + serializedName: "Content-Type", type: { name: "String" } } }; -export const accountName0: msRest.OperationURLParameter = { - parameterPath: "accountName", + +export const parameters: OperationParameter = { + parameterPath: "parameters", + mapper: BatchAccountCreateParametersMapper +}; + +export const accept: OperationParameter = { + parameterPath: "accept", + mapper: { + defaultValue: "application/json", + isConstant: true, + serializedName: "Accept", + type: { + name: "String" + } + } +}; + +export const $host: OperationURLParameter = { + parameterPath: "$host", mapper: { + serializedName: "$host", + required: true, + type: { + name: "String" + } + }, + skipEncoding: true +}; + +export const resourceGroupName: OperationURLParameter = { + parameterPath: "resourceGroupName", + mapper: { + serializedName: "resourceGroupName", required: true, - serializedName: "accountName", - constraints: { - MaxLength: 24, - MinLength: 3, - Pattern: /^[a-z0-9]+$/ - }, type: { name: "String" } } }; -export const accountName1: msRest.OperationURLParameter = { + +export const accountName: OperationURLParameter = { parameterPath: "accountName", mapper: { - required: true, - serializedName: "accountName", constraints: { + Pattern: new RegExp("^[a-z0-9]+$"), MaxLength: 24, - MinLength: 3, - Pattern: /^[a-zA-Z0-9]+$/ + MinLength: 3 }, + serializedName: "accountName", + required: true, type: { name: "String" } } }; -export const apiVersion: msRest.OperationQueryParameter = { + +export const apiVersion: OperationQueryParameter = { parameterPath: "apiVersion", mapper: { - required: true, + defaultValue: "2021-06-01", + isConstant: true, serializedName: "api-version", type: { name: "String" } } }; -export const applicationName: msRest.OperationURLParameter = { - parameterPath: "applicationName", + +export const subscriptionId: OperationURLParameter = { + parameterPath: "subscriptionId", mapper: { + serializedName: "subscriptionId", required: true, - serializedName: "applicationName", - constraints: { - MaxLength: 64, - MinLength: 1, - Pattern: /^[a-zA-Z0-9_-]+$/ - }, type: { name: "String" } } }; -export const certificateName: msRest.OperationURLParameter = { - parameterPath: "certificateName", + +export const parameters1: OperationParameter = { + parameterPath: "parameters", + mapper: BatchAccountUpdateParametersMapper +}; + +export const accountName1: OperationURLParameter = { + parameterPath: "accountName", mapper: { - required: true, - serializedName: "certificateName", constraints: { - MaxLength: 45, - MinLength: 5, - Pattern: /^[\w]+-[\w]+$/ + Pattern: new RegExp("^[a-zA-Z0-9]+$"), + MaxLength: 24, + MinLength: 3 }, + serializedName: "accountName", + required: true, type: { name: "String" } } }; -export const filter: msRest.OperationQueryParameter = { - parameterPath: [ - "options", - "filter" - ], - mapper: { - serializedName: "$filter", - type: { - name: "String" - } - } + +export const parameters2: OperationParameter = { + parameterPath: "parameters", + mapper: BatchAccountRegenerateKeyParametersMapper }; -export const ifMatch: msRest.OperationParameter = { - parameterPath: [ - "options", - "ifMatch" - ], + +export const nextLink: OperationURLParameter = { + parameterPath: "nextLink", mapper: { - serializedName: "If-Match", + serializedName: "nextLink", + required: true, type: { name: "String" } - } + }, + skipEncoding: true +}; + +export const parameters3: OperationParameter = { + parameterPath: "parameters", + mapper: ActivateApplicationPackageParametersMapper }; -export const ifNoneMatch: msRest.OperationParameter = { - parameterPath: [ - "options", - "ifNoneMatch" - ], + +export const applicationName: OperationURLParameter = { + parameterPath: "applicationName", mapper: { - serializedName: "If-None-Match", + constraints: { + Pattern: new RegExp("^[a-zA-Z0-9_-]+$"), + MaxLength: 64, + MinLength: 1 + }, + serializedName: "applicationName", + required: true, type: { name: "String" } } }; -export const locationName: msRest.OperationURLParameter = { - parameterPath: "locationName", + +export const versionName: OperationURLParameter = { + parameterPath: "versionName", mapper: { + constraints: { + Pattern: new RegExp("^[a-zA-Z0-9_-][a-zA-Z0-9_.-]*$"), + MaxLength: 64, + MinLength: 1 + }, + serializedName: "versionName", required: true, - serializedName: "locationName", type: { name: "String" } } }; -export const maxresults: msRest.OperationQueryParameter = { - parameterPath: [ - "options", - "maxresults" - ], + +export const parameters4: OperationParameter = { + parameterPath: ["options", "parameters"], + mapper: ApplicationPackageMapper +}; + +export const maxresults: OperationQueryParameter = { + parameterPath: ["options", "maxresults"], mapper: { serializedName: "maxresults", type: { @@ -148,104 +204,146 @@ export const maxresults: msRest.OperationQueryParameter = { } } }; -export const nextPageLink: msRest.OperationURLParameter = { - parameterPath: "nextPageLink", + +export const parameters5: OperationParameter = { + parameterPath: ["options", "parameters"], + mapper: ApplicationMapper +}; + +export const parameters6: OperationParameter = { + parameterPath: "parameters", + mapper: ApplicationMapper +}; + +export const locationName: OperationURLParameter = { + parameterPath: "locationName", mapper: { + serializedName: "locationName", required: true, - serializedName: "nextLink", type: { name: "String" } - }, - skipEncoding: true + } }; -export const poolName: msRest.OperationURLParameter = { - parameterPath: "poolName", + +export const filter: OperationQueryParameter = { + parameterPath: ["options", "filter"], mapper: { - required: true, - serializedName: "poolName", - constraints: { - MaxLength: 64, - MinLength: 1, - Pattern: /^[a-zA-Z0-9_-]+$/ - }, + serializedName: "$filter", type: { name: "String" } } }; -export const privateEndpointConnectionName: msRest.OperationURLParameter = { - parameterPath: "privateEndpointConnectionName", + +export const parameters7: OperationParameter = { + parameterPath: "parameters", + mapper: CheckNameAvailabilityParametersMapper +}; + +export const select: OperationQueryParameter = { + parameterPath: ["options", "select"], mapper: { - required: true, - serializedName: "privateEndpointConnectionName", - constraints: { - MaxLength: 101, - MinLength: 1, - Pattern: /^[a-zA-Z0-9_-]+\.?[a-fA-F0-9-]*$/ - }, + serializedName: "$select", type: { name: "String" } } }; -export const privateLinkResourceName: msRest.OperationURLParameter = { - parameterPath: "privateLinkResourceName", + +export const parameters8: OperationParameter = { + parameterPath: "parameters", + mapper: CertificateCreateOrUpdateParametersMapper +}; + +export const certificateName: OperationURLParameter = { + parameterPath: "certificateName", mapper: { - required: true, - serializedName: "privateLinkResourceName", constraints: { - MaxLength: 101, - MinLength: 1, - Pattern: /^[a-zA-Z0-9_-]+\.?[a-fA-F0-9-]*$/ + Pattern: new RegExp("^[\\w]+-[\\w]+$"), + MaxLength: 45, + MinLength: 5 }, + serializedName: "certificateName", + required: true, type: { name: "String" } } }; -export const resourceGroupName: msRest.OperationURLParameter = { - parameterPath: "resourceGroupName", + +export const ifMatch: OperationParameter = { + parameterPath: ["options", "ifMatch"], mapper: { - required: true, - serializedName: "resourceGroupName", + serializedName: "If-Match", type: { name: "String" } } }; -export const select: msRest.OperationQueryParameter = { - parameterPath: [ - "options", - "select" - ], + +export const ifNoneMatch: OperationParameter = { + parameterPath: ["options", "ifNoneMatch"], mapper: { - serializedName: "$select", + serializedName: "If-None-Match", type: { name: "String" } } }; -export const subscriptionId: msRest.OperationURLParameter = { - parameterPath: "subscriptionId", + +export const privateLinkResourceName: OperationURLParameter = { + parameterPath: "privateLinkResourceName", mapper: { + constraints: { + Pattern: new RegExp("^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$"), + MaxLength: 101, + MinLength: 1 + }, + serializedName: "privateLinkResourceName", required: true, - serializedName: "subscriptionId", type: { name: "String" } } }; -export const versionName: msRest.OperationURLParameter = { - parameterPath: "versionName", + +export const privateEndpointConnectionName: OperationURLParameter = { + parameterPath: "privateEndpointConnectionName", mapper: { + constraints: { + Pattern: new RegExp("^[a-zA-Z0-9_-]+\\.?[a-fA-F0-9-]*$"), + MaxLength: 101, + MinLength: 1 + }, + serializedName: "privateEndpointConnectionName", required: true, - serializedName: "versionName", + type: { + name: "String" + } + } +}; + +export const parameters9: OperationParameter = { + parameterPath: "parameters", + mapper: PrivateEndpointConnectionMapper +}; + +export const parameters10: OperationParameter = { + parameterPath: "parameters", + mapper: PoolMapper +}; + +export const poolName: OperationURLParameter = { + parameterPath: "poolName", + mapper: { constraints: { + Pattern: new RegExp("^[a-zA-Z0-9_-]+$"), MaxLength: 64, - MinLength: 1, - Pattern: /^[a-zA-Z0-9_-][a-zA-Z0-9_.-]*$/ + MinLength: 1 }, + serializedName: "poolName", + required: true, type: { name: "String" } diff --git a/sdk/batch/arm-batch/src/models/poolOperationsMappers.ts b/sdk/batch/arm-batch/src/models/poolOperationsMappers.ts deleted file mode 100644 index ea9ca581dd23..000000000000 --- a/sdk/batch/arm-batch/src/models/poolOperationsMappers.ts +++ /dev/null @@ -1,78 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - Application, - ApplicationPackage, - ApplicationPackageReference, - AutoScaleRun, - AutoScaleRunError, - AutoScaleSettings, - AutoStorageBaseProperties, - AutoStorageProperties, - AutoUserSpecification, - AzureBlobFileSystemConfiguration, - AzureFileShareConfiguration, - BaseResource, - BatchAccount, - BatchAccountIdentity, - Certificate, - CertificateCreateOrUpdateParameters, - CertificateReference, - CIFSMountConfiguration, - CloudError, - CloudServiceConfiguration, - ContainerConfiguration, - ContainerRegistry, - DataDisk, - DeleteCertificateError, - DeploymentConfiguration, - DiskEncryptionConfiguration, - EncryptionProperties, - EnvironmentSetting, - FixedScaleSettings, - ImageReference, - InboundNatPool, - KeyVaultProperties, - KeyVaultReference, - LinuxUserConfiguration, - ListPoolsResult, - MetadataItem, - MountConfiguration, - NetworkConfiguration, - NetworkSecurityGroupRule, - NFSMountConfiguration, - Pool, - PoolCreateHeaders, - PoolDeleteHeaders, - PoolDisableAutoScaleHeaders, - PoolEndpointConfiguration, - PoolGetHeaders, - PoolStopResizeHeaders, - PoolUpdateHeaders, - PrivateEndpoint, - PrivateEndpointConnection, - PrivateLinkResource, - PrivateLinkServiceConnectionState, - ProxyResource, - PublicIPAddressConfiguration, - ResizeError, - ResizeOperationStatus, - Resource, - ResourceFile, - ScaleSettings, - StartTask, - TaskContainerSettings, - TaskSchedulingPolicy, - UserAccount, - UserIdentity, - VirtualMachineConfiguration, - VirtualMachineFamilyCoreQuota, - WindowsConfiguration, - WindowsUserConfiguration -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/privateEndpointConnectionOperationsMappers.ts b/sdk/batch/arm-batch/src/models/privateEndpointConnectionOperationsMappers.ts deleted file mode 100644 index a5159c1d441e..000000000000 --- a/sdk/batch/arm-batch/src/models/privateEndpointConnectionOperationsMappers.ts +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - Application, - ApplicationPackage, - ApplicationPackageReference, - AutoScaleRun, - AutoScaleRunError, - AutoScaleSettings, - AutoStorageBaseProperties, - AutoStorageProperties, - AutoUserSpecification, - AzureBlobFileSystemConfiguration, - AzureFileShareConfiguration, - BaseResource, - BatchAccount, - BatchAccountIdentity, - Certificate, - CertificateCreateOrUpdateParameters, - CertificateReference, - CIFSMountConfiguration, - CloudError, - CloudServiceConfiguration, - ContainerConfiguration, - ContainerRegistry, - DataDisk, - DeleteCertificateError, - DeploymentConfiguration, - DiskEncryptionConfiguration, - EncryptionProperties, - EnvironmentSetting, - FixedScaleSettings, - ImageReference, - InboundNatPool, - KeyVaultProperties, - KeyVaultReference, - LinuxUserConfiguration, - ListPrivateEndpointConnectionsResult, - MetadataItem, - MountConfiguration, - NetworkConfiguration, - NetworkSecurityGroupRule, - NFSMountConfiguration, - Pool, - PoolEndpointConfiguration, - PrivateEndpoint, - PrivateEndpointConnection, - PrivateEndpointConnectionUpdateHeaders, - PrivateLinkResource, - PrivateLinkServiceConnectionState, - ProxyResource, - PublicIPAddressConfiguration, - ResizeError, - ResizeOperationStatus, - Resource, - ResourceFile, - ScaleSettings, - StartTask, - TaskContainerSettings, - TaskSchedulingPolicy, - UserAccount, - UserIdentity, - VirtualMachineConfiguration, - VirtualMachineFamilyCoreQuota, - WindowsConfiguration, - WindowsUserConfiguration -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/models/privateLinkResourceOperationsMappers.ts b/sdk/batch/arm-batch/src/models/privateLinkResourceOperationsMappers.ts deleted file mode 100644 index 69b3e26378ec..000000000000 --- a/sdk/batch/arm-batch/src/models/privateLinkResourceOperationsMappers.ts +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for license information. - * - * Code generated by Microsoft (R) AutoRest Code Generator. - * Changes may cause incorrect behavior and will be lost if the code is regenerated. - */ - -export { - Application, - ApplicationPackage, - ApplicationPackageReference, - AutoScaleRun, - AutoScaleRunError, - AutoScaleSettings, - AutoStorageBaseProperties, - AutoStorageProperties, - AutoUserSpecification, - AzureBlobFileSystemConfiguration, - AzureFileShareConfiguration, - BaseResource, - BatchAccount, - BatchAccountIdentity, - Certificate, - CertificateCreateOrUpdateParameters, - CertificateReference, - CIFSMountConfiguration, - CloudError, - CloudServiceConfiguration, - ContainerConfiguration, - ContainerRegistry, - DataDisk, - DeleteCertificateError, - DeploymentConfiguration, - DiskEncryptionConfiguration, - EncryptionProperties, - EnvironmentSetting, - FixedScaleSettings, - ImageReference, - InboundNatPool, - KeyVaultProperties, - KeyVaultReference, - LinuxUserConfiguration, - ListPrivateLinkResourcesResult, - MetadataItem, - MountConfiguration, - NetworkConfiguration, - NetworkSecurityGroupRule, - NFSMountConfiguration, - Pool, - PoolEndpointConfiguration, - PrivateEndpoint, - PrivateEndpointConnection, - PrivateLinkResource, - PrivateLinkServiceConnectionState, - ProxyResource, - PublicIPAddressConfiguration, - ResizeError, - ResizeOperationStatus, - Resource, - ResourceFile, - ScaleSettings, - StartTask, - TaskContainerSettings, - TaskSchedulingPolicy, - UserAccount, - UserIdentity, - VirtualMachineConfiguration, - VirtualMachineFamilyCoreQuota, - WindowsConfiguration, - WindowsUserConfiguration -} from "../models/mappers"; diff --git a/sdk/batch/arm-batch/src/operations/applicationOperations.ts b/sdk/batch/arm-batch/src/operations/applicationOperations.ts index c96802c24e7e..1dfaf3401fff 100644 --- a/sdk/batch/arm-batch/src/operations/applicationOperations.ts +++ b/sdk/batch/arm-batch/src/operations/applicationOperations.ts @@ -1,101 +1,140 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as Models from "../models"; -import * as Mappers from "../models/applicationOperationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { ApplicationOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { + Application, + ApplicationListNextOptionalParams, + ApplicationListOptionalParams, + ApplicationCreateOptionalParams, + ApplicationCreateResponse, + ApplicationDeleteOptionalParams, + ApplicationGetOptionalParams, + ApplicationGetResponse, + ApplicationUpdateOptionalParams, + ApplicationUpdateResponse, + ApplicationListResponse, + ApplicationListNextResponse +} from "../models"; -/** Class representing a ApplicationOperations. */ -export class ApplicationOperations { +/// +/** Class containing ApplicationOperations operations. */ +export class ApplicationOperationsImpl implements ApplicationOperations { private readonly client: BatchManagementClientContext; /** - * Create a ApplicationOperations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class ApplicationOperations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; } /** - * Adds an application to the specified Batch account. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise - */ - create(resourceGroupName: string, accountName: string, applicationName: string, options?: Models.ApplicationCreateOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param callback The callback - */ - create(resourceGroupName: string, accountName: string, applicationName: string, callback: msRest.ServiceCallback): void; - /** + * Lists all of the applications in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - create(resourceGroupName: string, accountName: string, applicationName: string, options: Models.ApplicationCreateOptionalParams, callback: msRest.ServiceCallback): void; - create(resourceGroupName: string, accountName: string, applicationName: string, options?: Models.ApplicationCreateOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { + public list( + resourceGroupName: string, + accountName: string, + options?: ApplicationListOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listPagingAll(resourceGroupName, accountName, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listPagingPage(resourceGroupName, accountName, options); + } + }; + } + + private async *listPagingPage( + resourceGroupName: string, + accountName: string, + options?: ApplicationListOptionalParams + ): AsyncIterableIterator { + let result = await this._list(resourceGroupName, accountName, options); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listNext( resourceGroupName, accountName, - applicationName, + continuationToken, options - }, - createOperationSpec, - callback) as Promise; + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listPagingAll( + resourceGroupName: string, + accountName: string, + options?: ApplicationListOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listPagingPage( + resourceGroupName, + accountName, + options + )) { + yield* page; + } } /** - * Deletes an application. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise - */ - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, options?: msRest.RequestOptionsBase): Promise; - /** + * Adds an application to the specified Batch account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. - * @param callback The callback + * @param options The options parameters. */ - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, callback: msRest.ServiceCallback): void; + create( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationCreateOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, applicationName, options }, + createOperationSpec + ); + } + /** + * Deletes an application. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + delete( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationDeleteOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - applicationName, - options - }, - deleteMethodOperationSpec, - callback); + { resourceGroupName, accountName, applicationName, options }, + deleteOperationSpec + ); } /** @@ -103,35 +142,18 @@ export class ApplicationOperations { * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, applicationName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param callback The callback - */ - get(resourceGroupName: string, accountName: string, applicationName: string, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param options The optional parameters - * @param callback The callback - */ - get(resourceGroupName: string, accountName: string, applicationName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, accountName: string, applicationName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationGetOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - applicationName, - options - }, - getOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, applicationName, options }, + getOperationSpec + ); } /** @@ -140,125 +162,64 @@ export class ApplicationOperations { * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. * @param parameters The parameters for the request. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - update(resourceGroupName: string, accountName: string, applicationName: string, parameters: Models.Application, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param parameters The parameters for the request. - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, applicationName: string, parameters: Models.Application, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param parameters The parameters for the request. - * @param options The optional parameters - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, applicationName: string, parameters: Models.Application, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - update(resourceGroupName: string, accountName: string, applicationName: string, parameters: Models.Application, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + update( + resourceGroupName: string, + accountName: string, + applicationName: string, + parameters: Application, + options?: ApplicationUpdateOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - applicationName, - parameters, - options - }, - updateOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, applicationName, parameters, options }, + updateOperationSpec + ); } /** * Lists all of the applications in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - list(resourceGroupName: string, accountName: string, options?: Models.ApplicationListOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param callback The callback - */ - list(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback - */ - list(resourceGroupName: string, accountName: string, options: Models.ApplicationListOptionalParams, callback: msRest.ServiceCallback): void; - list(resourceGroupName: string, accountName: string, options?: Models.ApplicationListOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _list( + resourceGroupName: string, + accountName: string, + options?: ApplicationListOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - options - }, - listOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, options }, + listOperationSpec + ); } /** - * Lists all of the applications in the specified account. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback - */ - listNext(nextPageLink: string, callback: msRest.ServiceCallback): void; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback + * ListNext + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param nextLink The nextLink from the previous successful call to the List method. + * @param options The options parameters. */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listNext( + resourceGroupName: string, + accountName: string, + nextLink: string, + options?: ApplicationListNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listNextOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, nextLink, options }, + listNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const createOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const createOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", httpMethod: "PUT", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", - urlParameters: [ - Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.applicationName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: [ - "options", - "parameters" - ], - mapper: Mappers.Application - }, responses: { 200: { bodyMapper: Mappers.Application @@ -267,24 +228,23 @@ const createOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const deleteMethodOperationSpec: msRest.OperationSpec = { - httpMethod: "DELETE", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", + requestBody: Parameters.parameters5, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.applicationName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.applicationName ], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", + httpMethod: "DELETE", responses: { 200: {}, 204: {}, @@ -292,24 +252,21 @@ const deleteMethodOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.applicationName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.applicationName ], + headerParameters: [Parameters.accept], + serializer +}; +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.Application @@ -318,31 +275,21 @@ const getOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const updateOperationSpec: msRest.OperationSpec = { - httpMethod: "PATCH", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.applicationName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.applicationName ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.Application, - required: true - } - }, + headerParameters: [Parameters.accept], + serializer +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}", + httpMethod: "PATCH", responses: { 200: { bodyMapper: Mappers.Application @@ -351,24 +298,23 @@ const updateOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const listOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications", + requestBody: Parameters.parameters6, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.maxresults, - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.applicationName ], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const listOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListApplicationsResult @@ -377,19 +323,19 @@ const listOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion, Parameters.maxresults], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1 + ], + headerParameters: [Parameters.accept], serializer }; - -const listNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListApplicationsResult @@ -398,5 +344,14 @@ const listNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion, Parameters.maxresults], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/applicationPackageOperations.ts b/sdk/batch/arm-batch/src/operations/applicationPackageOperations.ts index 6ec032190c81..bea37e610c27 100644 --- a/sdk/batch/arm-batch/src/operations/applicationPackageOperations.ts +++ b/sdk/batch/arm-batch/src/operations/applicationPackageOperations.ts @@ -1,157 +1,202 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as Models from "../models"; -import * as Mappers from "../models/applicationPackageOperationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { ApplicationPackageOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { + ApplicationPackage, + ApplicationPackageListNextOptionalParams, + ApplicationPackageListOptionalParams, + ActivateApplicationPackageParameters, + ApplicationPackageActivateOptionalParams, + ApplicationPackageActivateResponse, + ApplicationPackageCreateOptionalParams, + ApplicationPackageCreateResponse, + ApplicationPackageDeleteOptionalParams, + ApplicationPackageGetOptionalParams, + ApplicationPackageGetResponse, + ApplicationPackageListResponse, + ApplicationPackageListNextResponse +} from "../models"; -/** Class representing a ApplicationPackageOperations. */ -export class ApplicationPackageOperations { +/// +/** Class containing ApplicationPackageOperations operations. */ +export class ApplicationPackageOperationsImpl + implements ApplicationPackageOperations { private readonly client: BatchManagementClientContext; /** - * Create a ApplicationPackageOperations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class ApplicationPackageOperations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; } /** - * Activates the specified application package. This should be done after the `ApplicationPackage` - * was created and uploaded. This needs to be done before an `ApplicationPackage` can be used on - * Pools or Tasks. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param format The format of the application package binary file. - * @param [options] The optional parameters - * @returns Promise - */ - activate(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, format: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param format The format of the application package binary file. - * @param callback The callback - */ - activate(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, format: string, callback: msRest.ServiceCallback): void; - /** + * Lists all of the application packages in the specified application. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param format The format of the application package binary file. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - activate(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, format: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - activate(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, format: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { + public list( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationPackageListOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listPagingAll( + resourceGroupName, + accountName, + applicationName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listPagingPage( + resourceGroupName, + accountName, + applicationName, + options + ); + } + }; + } + + private async *listPagingPage( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationPackageListOptionalParams + ): AsyncIterableIterator { + let result = await this._list( + resourceGroupName, + accountName, + applicationName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listNext( resourceGroupName, accountName, applicationName, - versionName, - format, + continuationToken, options - }, - activateOperationSpec, - callback) as Promise; + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listPagingAll( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationPackageListOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listPagingPage( + resourceGroupName, + accountName, + applicationName, + options + )) { + yield* page; + } } /** - * Creates an application package record. The record contains the SAS where the package should be - * uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using - * `ApplicationPackageActive` before it can be used. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param [options] The optional parameters - * @returns Promise - */ - create(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param callback The callback - */ - create(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, callback: msRest.ServiceCallback): void; - /** + * Activates the specified application package. This should be done after the `ApplicationPackage` was + * created and uploaded. This needs to be done before an `ApplicationPackage` can be used on Pools or + * Tasks. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. * @param versionName The version of the application. - * @param options The optional parameters - * @param callback The callback + * @param parameters The parameters for the request. + * @param options The options parameters. */ - create(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - create(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + activate( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + parameters: ActivateApplicationPackageParameters, + options?: ApplicationPackageActivateOptionalParams + ): Promise { return this.client.sendOperationRequest( { resourceGroupName, accountName, applicationName, versionName, + parameters, options }, - createOperationSpec, - callback) as Promise; + activateOperationSpec + ); } /** - * Deletes an application package record and its associated binary file. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param [options] The optional parameters - * @returns Promise - */ - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: msRest.RequestOptionsBase): Promise; - /** + * Creates an application package record. The record contains a storageUrl where the package should be + * uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using + * `ApplicationPackageActive` before it can be used. If the auto storage account was configured to use + * storage keys, the URL returned will contain a SAS. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. * @param versionName The version of the application. - * @param callback The callback + * @param options The options parameters. */ - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, callback: msRest.ServiceCallback): void; + create( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + options?: ApplicationPackageCreateOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, applicationName, versionName, options }, + createOperationSpec + ); + } + /** + * Deletes an application package record and its associated binary file. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. * @param versionName The version of the application. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - deleteMethod(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + delete( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + options?: ApplicationPackageDeleteOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - applicationName, - versionName, - options - }, - deleteMethodOperationSpec, - callback); + { resourceGroupName, accountName, applicationName, versionName, options }, + deleteOperationSpec + ); } /** @@ -160,38 +205,19 @@ export class ApplicationPackageOperations { * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. * @param versionName The version of the application. - * @param [options] The optional parameters - * @returns Promise - */ - get(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param callback The callback + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param versionName The version of the application. - * @param options The optional parameters - * @param callback The callback - */ - get(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, accountName: string, applicationName: string, versionName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + options?: ApplicationPackageGetOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - applicationName, - versionName, - options - }, - getOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, applicationName, versionName, options }, + getOperationSpec + ); } /** @@ -199,93 +225,48 @@ export class ApplicationPackageOperations { * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param applicationName The name of the application. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise - */ - list(resourceGroupName: string, accountName: string, applicationName: string, options?: Models.ApplicationPackageListOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param callback The callback + * @param options The options parameters. */ - list(resourceGroupName: string, accountName: string, applicationName: string, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param applicationName The name of the application. This must be unique within the account. - * @param options The optional parameters - * @param callback The callback - */ - list(resourceGroupName: string, accountName: string, applicationName: string, options: Models.ApplicationPackageListOptionalParams, callback: msRest.ServiceCallback): void; - list(resourceGroupName: string, accountName: string, applicationName: string, options?: Models.ApplicationPackageListOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _list( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationPackageListOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - applicationName, - options - }, - listOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, applicationName, options }, + listOperationSpec + ); } /** - * Lists all of the application packages in the specified application. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback - */ - listNext(nextPageLink: string, callback: msRest.ServiceCallback): void; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback + * ListNext + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param nextLink The nextLink from the previous successful call to the List method. + * @param options The options parameters. */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listNext( + resourceGroupName: string, + accountName: string, + applicationName: string, + nextLink: string, + options?: ApplicationPackageListNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listNextOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, applicationName, nextLink, options }, + listNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const activateOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const activateOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}/activate", httpMethod: "POST", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}/activate", - urlParameters: [ - Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.applicationName, - Parameters.versionName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: { - format: "format" - }, - mapper: { - ...Mappers.ActivateApplicationPackageParameters, - required: true - } - }, responses: { 200: { bodyMapper: Mappers.ApplicationPackage @@ -294,32 +275,24 @@ const activateOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const createOperationSpec: msRest.OperationSpec = { - httpMethod: "PUT", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}", + requestBody: Parameters.parameters3, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, Parameters.applicationName, - Parameters.versionName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion + Parameters.versionName ], - headerParameters: [ - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: [ - "options", - "parameters" - ], - mapper: Mappers.ApplicationPackage - }, + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const createOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}", + httpMethod: "PUT", responses: { 200: { bodyMapper: Mappers.ApplicationPackage @@ -328,25 +301,24 @@ const createOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const deleteMethodOperationSpec: msRest.OperationSpec = { - httpMethod: "DELETE", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}", + requestBody: Parameters.parameters4, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, Parameters.applicationName, - Parameters.versionName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.versionName ], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}", + httpMethod: "DELETE", responses: { 200: {}, 204: {}, @@ -354,25 +326,22 @@ const deleteMethodOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, Parameters.applicationName, - Parameters.versionName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.versionName ], + headerParameters: [Parameters.accept], + serializer +}; +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions/{versionName}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ApplicationPackage @@ -381,25 +350,22 @@ const getOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const listOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, Parameters.applicationName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.maxresults, - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.versionName ], + headerParameters: [Parameters.accept], + serializer +}; +const listOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/applications/{applicationName}/versions", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListApplicationPackagesResult @@ -408,19 +374,20 @@ const listOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion, Parameters.maxresults], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.applicationName + ], + headerParameters: [Parameters.accept], serializer }; - -const listNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListApplicationPackagesResult @@ -429,5 +396,15 @@ const listNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion, Parameters.maxresults], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.nextLink, + Parameters.applicationName + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/batchAccountOperations.ts b/sdk/batch/arm-batch/src/operations/batchAccountOperations.ts index 318548de4ed5..326b570f8115 100644 --- a/sdk/batch/arm-batch/src/operations/batchAccountOperations.ts +++ b/sdk/batch/arm-batch/src/operations/batchAccountOperations.ts @@ -1,413 +1,650 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as msRestAzure from "@azure/ms-rest-azure-js"; -import * as Models from "../models"; -import * as Mappers from "../models/batchAccountOperationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { BatchAccountOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; +import { LroImpl } from "../lroImpl"; +import { + BatchAccount, + BatchAccountListNextOptionalParams, + BatchAccountListOptionalParams, + BatchAccountListByResourceGroupNextOptionalParams, + BatchAccountListByResourceGroupOptionalParams, + OutboundEnvironmentEndpoint, + BatchAccountListOutboundNetworkDependenciesEndpointsNextOptionalParams, + BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams, + BatchAccountCreateParameters, + BatchAccountCreateOptionalParams, + BatchAccountCreateResponse, + BatchAccountUpdateParameters, + BatchAccountUpdateOptionalParams, + BatchAccountUpdateResponse, + BatchAccountDeleteOptionalParams, + BatchAccountGetOptionalParams, + BatchAccountGetResponse, + BatchAccountListResponse, + BatchAccountListByResourceGroupResponse, + BatchAccountSynchronizeAutoStorageKeysOptionalParams, + BatchAccountRegenerateKeyParameters, + BatchAccountRegenerateKeyOptionalParams, + BatchAccountRegenerateKeyResponse, + BatchAccountGetKeysOptionalParams, + BatchAccountGetKeysResponse, + BatchAccountListOutboundNetworkDependenciesEndpointsResponse, + BatchAccountListNextResponse, + BatchAccountListByResourceGroupNextResponse, + BatchAccountListOutboundNetworkDependenciesEndpointsNextResponse +} from "../models"; -/** Class representing a BatchAccountOperations. */ -export class BatchAccountOperations { +/// +/** Class containing BatchAccountOperations operations. */ +export class BatchAccountOperationsImpl implements BatchAccountOperations { private readonly client: BatchManagementClientContext; /** - * Create a BatchAccountOperations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class BatchAccountOperations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; } /** - * Creates a new Batch account with the specified parameters. Existing accounts cannot be updated - * with this API and should instead be updated with the Update Batch Account API. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName A name for the Batch account which must be unique within the region. Batch - * account names must be between 3 and 24 characters in length and must use only numbers and - * lowercase letters. This name is used as part of the DNS name that is used to access the Batch - * service in the region in which the account is created. For example: - * http://accountname.region.batch.azure.com/. - * @param parameters Additional parameters for account creation. - * @param [options] The optional parameters - * @returns Promise - */ - create(resourceGroupName: string, accountName: string, parameters: Models.BatchAccountCreateParameters, options?: msRest.RequestOptionsBase): Promise { - return this.beginCreate(resourceGroupName,accountName,parameters,options) - .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; + * Gets information about the Batch accounts associated with the subscription. + * @param options The options parameters. + */ + public list( + options?: BatchAccountListOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listPagingAll(options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listPagingPage(options); + } + }; + } + + private async *listPagingPage( + options?: BatchAccountListOptionalParams + ): AsyncIterableIterator { + let result = await this._list(options); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listNext(continuationToken, options); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listPagingAll( + options?: BatchAccountListOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listPagingPage(options)) { + yield* page; + } } /** - * Updates the properties of an existing Batch account. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param parameters Additional parameters for account update. - * @param [options] The optional parameters - * @returns Promise - */ - update(resourceGroupName: string, accountName: string, parameters: Models.BatchAccountUpdateParameters, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param parameters Additional parameters for account update. - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, parameters: Models.BatchAccountUpdateParameters, callback: msRest.ServiceCallback): void; - /** + * Gets information about the Batch accounts associated with the specified resource group. * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param parameters Additional parameters for account update. - * @param options The optional parameters - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, parameters: Models.BatchAccountUpdateParameters, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - update(resourceGroupName: string, accountName: string, parameters: Models.BatchAccountUpdateParameters, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { + * @param options The options parameters. + */ + public listByResourceGroup( + resourceGroupName: string, + options?: BatchAccountListByResourceGroupOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listByResourceGroupPagingAll(resourceGroupName, options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listByResourceGroupPagingPage(resourceGroupName, options); + } + }; + } + + private async *listByResourceGroupPagingPage( + resourceGroupName: string, + options?: BatchAccountListByResourceGroupOptionalParams + ): AsyncIterableIterator { + let result = await this._listByResourceGroup(resourceGroupName, options); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listByResourceGroupNext( resourceGroupName, - accountName, - parameters, + continuationToken, options - }, - updateOperationSpec, - callback) as Promise; + ); + continuationToken = result.nextLink; + yield result.value || []; + } } - /** - * Deletes the specified Batch account. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise - */ - deleteMethod(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase): Promise { - return this.beginDeleteMethod(resourceGroupName,accountName,options) - .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; + private async *listByResourceGroupPagingAll( + resourceGroupName: string, + options?: BatchAccountListByResourceGroupOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listByResourceGroupPagingPage( + resourceGroupName, + options + )) { + yield* page; + } } /** - * Gets information about the specified Batch account. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise - */ - get(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param callback The callback - */ - get(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; - /** + * Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch + * service administration. If you are deploying a Pool inside of a virtual network that you specify, + * you must make sure your network allows outbound access to these endpoints. Failure to allow access + * to these endpoints may cause Batch to mark the affected nodes as unusable. For more information + * about creating a pool inside of a virtual network, see + * https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback - */ - get(resourceGroupName: string, accountName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { + * @param options The options parameters. + */ + public listOutboundNetworkDependenciesEndpoints( + resourceGroupName: string, + accountName: string, + options?: BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listOutboundNetworkDependenciesEndpointsPagingAll( + resourceGroupName, + accountName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listOutboundNetworkDependenciesEndpointsPagingPage( + resourceGroupName, + accountName, + options + ); + } + }; + } + + private async *listOutboundNetworkDependenciesEndpointsPagingPage( + resourceGroupName: string, + accountName: string, + options?: BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams + ): AsyncIterableIterator { + let result = await this._listOutboundNetworkDependenciesEndpoints( + resourceGroupName, + accountName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listOutboundNetworkDependenciesEndpointsNext( resourceGroupName, accountName, + continuationToken, options - }, - getOperationSpec, - callback) as Promise; + ); + continuationToken = result.nextLink; + yield result.value || []; + } } - /** - * Gets information about the Batch accounts associated with the subscription. - * @param [options] The optional parameters - * @returns Promise - */ - list(options?: msRest.RequestOptionsBase): Promise; - /** - * @param callback The callback - */ - list(callback: msRest.ServiceCallback): void; - /** - * @param options The optional parameters - * @param callback The callback - */ - list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { - options - }, - listOperationSpec, - callback) as Promise; + private async *listOutboundNetworkDependenciesEndpointsPagingAll( + resourceGroupName: string, + accountName: string, + options?: BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listOutboundNetworkDependenciesEndpointsPagingPage( + resourceGroupName, + accountName, + options + )) { + yield* page; + } } /** - * Gets information about the Batch accounts associated with the specified resource group. + * Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with + * this API and should instead be updated with the Update Batch Account API. * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param [options] The optional parameters - * @returns Promise - */ - listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise; + * @param accountName A name for the Batch account which must be unique within the region. Batch + * account names must be between 3 and 24 characters in length and must use only numbers and lowercase + * letters. This name is used as part of the DNS name that is used to access the Batch service in the + * region in which the account is created. For example: http://accountname.region.batch.azure.com/. + * @param parameters Additional parameters for account creation. + * @param options The options parameters. + */ + async beginCreate( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountCreateParameters, + options?: BatchAccountCreateOptionalParams + ): Promise< + PollerLike< + PollOperationState, + BatchAccountCreateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ) => { + let currentRawResponse: + | coreClient.FullOperationResponse + | undefined = undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback + } + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON() + } + }; + }; + + const lro = new LroImpl( + sendOperation, + { resourceGroupName, accountName, parameters, options }, + createOperationSpec + ); + return new LroEngine(lro, { + resumeFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + lroResourceLocationConfig: "location" + }); + } + /** + * Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with + * this API and should instead be updated with the Update Batch Account API. * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param callback The callback - */ - listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback): void; + * @param accountName A name for the Batch account which must be unique within the region. Batch + * account names must be between 3 and 24 characters in length and must use only numbers and lowercase + * letters. This name is used as part of the DNS name that is used to access the Batch service in the + * region in which the account is created. For example: http://accountname.region.batch.azure.com/. + * @param parameters Additional parameters for account creation. + * @param options The options parameters. + */ + async beginCreateAndWait( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountCreateParameters, + options?: BatchAccountCreateOptionalParams + ): Promise { + const poller = await this.beginCreate( + resourceGroupName, + accountName, + parameters, + options + ); + return poller.pollUntilDone(); + } + /** + * Updates the properties of an existing Batch account. * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param options The optional parameters - * @param callback The callback - */ - listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + * @param accountName The name of the Batch account. + * @param parameters Additional parameters for account update. + * @param options The options parameters. + */ + update( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountUpdateParameters, + options?: BatchAccountUpdateOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - options - }, - listByResourceGroupOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, parameters, options }, + updateOperationSpec + ); } /** - * Synchronizes access keys for the auto-storage account configured for the specified Batch - * account. + * Deletes the specified Batch account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise - */ - synchronizeAutoStorageKeys(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase): Promise; + * @param options The options parameters. + */ + async beginDelete( + resourceGroupName: string, + accountName: string, + options?: BatchAccountDeleteOptionalParams + ): Promise, void>> { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ) => { + let currentRawResponse: + | coreClient.FullOperationResponse + | undefined = undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback + } + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON() + } + }; + }; + + const lro = new LroImpl( + sendOperation, + { resourceGroupName, accountName, options }, + deleteOperationSpec + ); + return new LroEngine(lro, { + resumeFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + lroResourceLocationConfig: "location" + }); + } + /** + * Deletes the specified Batch account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param callback The callback - */ - synchronizeAutoStorageKeys(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; + * @param options The options parameters. + */ + async beginDeleteAndWait( + resourceGroupName: string, + accountName: string, + options?: BatchAccountDeleteOptionalParams + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + accountName, + options + ); + return poller.pollUntilDone(); + } + /** + * Gets information about the specified Batch account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - synchronizeAutoStorageKeys(resourceGroupName: string, accountName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - synchronizeAutoStorageKeys(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get( + resourceGroupName: string, + accountName: string, + options?: BatchAccountGetOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - options - }, - synchronizeAutoStorageKeysOperationSpec, - callback); + { resourceGroupName, accountName, options }, + getOperationSpec + ); } /** - * Regenerates the specified account key for the Batch account. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param keyName The type of account key to regenerate. Possible values include: 'Primary', - * 'Secondary' - * @param [options] The optional parameters - * @returns Promise - */ - regenerateKey(resourceGroupName: string, accountName: string, keyName: Models.AccountKeyType, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param keyName The type of account key to regenerate. Possible values include: 'Primary', - * 'Secondary' - * @param callback The callback + * Gets information about the Batch accounts associated with the subscription. + * @param options The options parameters. */ - regenerateKey(resourceGroupName: string, accountName: string, keyName: Models.AccountKeyType, callback: msRest.ServiceCallback): void; + private _list( + options?: BatchAccountListOptionalParams + ): Promise { + return this.client.sendOperationRequest({ options }, listOperationSpec); + } + /** + * Gets information about the Batch accounts associated with the specified resource group. * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param keyName The type of account key to regenerate. Possible values include: 'Primary', - * 'Secondary' - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - regenerateKey(resourceGroupName: string, accountName: string, keyName: Models.AccountKeyType, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - regenerateKey(resourceGroupName: string, accountName: string, keyName: Models.AccountKeyType, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listByResourceGroup( + resourceGroupName: string, + options?: BatchAccountListByResourceGroupOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - keyName, - options - }, - regenerateKeyOperationSpec, - callback) as Promise; + { resourceGroupName, options }, + listByResourceGroupOperationSpec + ); } /** - * This operation applies only to Batch accounts created with a poolAllocationMode of - * 'BatchService'. If the Batch account was created with a poolAllocationMode of - * 'UserSubscription', clients cannot use access to keys to authenticate, and must use Azure Active - * Directory instead. In this case, getting the keys will fail. - * @summary Gets the account keys for the specified Batch account. + * Synchronizes access keys for the auto-storage account configured for the specified Batch account, + * only if storage key authentication is being used. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - getKeys(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param callback The callback - */ - getKeys(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; + synchronizeAutoStorageKeys( + resourceGroupName: string, + accountName: string, + options?: BatchAccountSynchronizeAutoStorageKeysOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, options }, + synchronizeAutoStorageKeysOperationSpec + ); + } + /** + * This operation applies only to Batch accounts with allowedAuthenticationModes containing + * 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, + * clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes + * instead. In this case, regenerating the keys will fail. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback - */ - getKeys(resourceGroupName: string, accountName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - getKeys(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + * @param parameters The type of key to regenerate. + * @param options The options parameters. + */ + regenerateKey( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountRegenerateKeyParameters, + options?: BatchAccountRegenerateKeyOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - options - }, - getKeysOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, parameters, options }, + regenerateKeyOperationSpec + ); } /** - * Creates a new Batch account with the specified parameters. Existing accounts cannot be updated - * with this API and should instead be updated with the Update Batch Account API. + * This operation applies only to Batch accounts with allowedAuthenticationModes containing + * 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, + * clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes + * instead. In this case, getting the keys will fail. * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName A name for the Batch account which must be unique within the region. Batch - * account names must be between 3 and 24 characters in length and must use only numbers and - * lowercase letters. This name is used as part of the DNS name that is used to access the Batch - * service in the region in which the account is created. For example: - * http://accountname.region.batch.azure.com/. - * @param parameters Additional parameters for account creation. - * @param [options] The optional parameters - * @returns Promise + * @param accountName The name of the Batch account. + * @param options The options parameters. */ - beginCreate(resourceGroupName: string, accountName: string, parameters: Models.BatchAccountCreateParameters, options?: msRest.RequestOptionsBase): Promise { - return this.client.sendLRORequest( - { - resourceGroupName, - accountName, - parameters, - options - }, - beginCreateOperationSpec, - options); + getKeys( + resourceGroupName: string, + accountName: string, + options?: BatchAccountGetKeysOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, options }, + getKeysOperationSpec + ); } /** - * Deletes the specified Batch account. + * Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch + * service administration. If you are deploying a Pool inside of a virtual network that you specify, + * you must make sure your network allows outbound access to these endpoints. Failure to allow access + * to these endpoints may cause Batch to mark the affected nodes as unusable. For more information + * about creating a pool inside of a virtual network, see + * https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - beginDeleteMethod(resourceGroupName: string, accountName: string, options?: msRest.RequestOptionsBase): Promise { - return this.client.sendLRORequest( - { - resourceGroupName, - accountName, - options - }, - beginDeleteMethodOperationSpec, - options); + private _listOutboundNetworkDependenciesEndpoints( + resourceGroupName: string, + accountName: string, + options?: BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, options }, + listOutboundNetworkDependenciesEndpointsOperationSpec + ); } /** - * Gets information about the Batch accounts associated with the subscription. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback + * ListNext + * @param nextLink The nextLink from the previous successful call to the List method. + * @param options The options parameters. */ - listNext(nextPageLink: string, callback: msRest.ServiceCallback): void; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback - */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listNext( + nextLink: string, + options?: BatchAccountListNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listNextOperationSpec, - callback) as Promise; + { nextLink, options }, + listNextOperationSpec + ); } /** - * Gets information about the Batch accounts associated with the specified resource group. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback - */ - listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback): void; + * ListByResourceGroupNext + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param nextLink The nextLink from the previous successful call to the ListByResourceGroup method. + * @param options The options parameters. + */ + private _listByResourceGroupNext( + resourceGroupName: string, + nextLink: string, + options?: BatchAccountListByResourceGroupNextOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, nextLink, options }, + listByResourceGroupNextOperationSpec + ); + } + /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback - */ - listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + * ListOutboundNetworkDependenciesEndpointsNext + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param nextLink The nextLink from the previous successful call to the + * ListOutboundNetworkDependenciesEndpoints method. + * @param options The options parameters. + */ + private _listOutboundNetworkDependenciesEndpointsNext( + resourceGroupName: string, + accountName: string, + nextLink: string, + options?: BatchAccountListOutboundNetworkDependenciesEndpointsNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listByResourceGroupNextOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, nextLink, options }, + listOutboundNetworkDependenciesEndpointsNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const updateOperationSpec: msRest.OperationSpec = { - httpMethod: "PATCH", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const createOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", + httpMethod: "PUT", + responses: { + 200: { + bodyMapper: Mappers.BatchAccount + }, + 201: { + bodyMapper: Mappers.BatchAccount + }, + 202: { + bodyMapper: Mappers.BatchAccount + }, + 204: { + bodyMapper: Mappers.BatchAccount + }, + default: { + bodyMapper: Mappers.CloudError + } + }, + requestBody: Parameters.parameters, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, + Parameters.accountName, Parameters.subscriptionId ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.BatchAccountUpdateParameters, - required: true - } - }, + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", + httpMethod: "PATCH", responses: { 200: { bodyMapper: Mappers.BatchAccount @@ -416,23 +653,45 @@ const updateOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + requestBody: Parameters.parameters1, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1 + ], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", serializer }; - -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", +const deleteOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", + httpMethod: "DELETE", + responses: { + 200: {}, + 201: {}, + 202: {}, + 204: {}, + default: { + bodyMapper: Mappers.CloudError + } + }, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.subscriptionId, + Parameters.accountName1 ], + headerParameters: [Parameters.accept], + serializer +}; +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.BatchAccount @@ -441,21 +700,20 @@ const getOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1 + ], + headerParameters: [Parameters.accept], serializer }; - -const listOperationSpec: msRest.OperationSpec = { +const listOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Batch/batchAccounts", httpMethod: "GET", - path: "subscriptions/{subscriptionId}/providers/Microsoft.Batch/batchAccounts", - urlParameters: [ - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], responses: { 200: { bodyMapper: Mappers.BatchAccountListResult @@ -464,22 +722,15 @@ const listOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.subscriptionId], + headerParameters: [Parameters.accept], serializer }; - -const listByResourceGroupOperationSpec: msRest.OperationSpec = { +const listByResourceGroupOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts", httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts", - urlParameters: [ - Parameters.resourceGroupName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], responses: { 200: { bodyMapper: Mappers.BatchAccountListResult @@ -488,55 +739,39 @@ const listByResourceGroupOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const synchronizeAutoStorageKeysOperationSpec: msRest.OperationSpec = { - httpMethod: "POST", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/syncAutoStorageKeys", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, Parameters.subscriptionId ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], + headerParameters: [Parameters.accept], + serializer +}; +const synchronizeAutoStorageKeysOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/syncAutoStorageKeys", + httpMethod: "POST", responses: { 204: {}, default: { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const regenerateKeyOperationSpec: msRest.OperationSpec = { - httpMethod: "POST", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/regenerateKeys", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.subscriptionId + Parameters.subscriptionId, + Parameters.accountName1 ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: { - keyName: "keyName" - }, - mapper: { - ...Mappers.BatchAccountRegenerateKeyParameters, - required: true - } - }, + headerParameters: [Parameters.accept], + serializer +}; +const regenerateKeyOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/regenerateKeys", + httpMethod: "POST", responses: { 200: { bodyMapper: Mappers.BatchAccountKeys @@ -545,23 +780,22 @@ const regenerateKeyOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const getKeysOperationSpec: msRest.OperationSpec = { - httpMethod: "POST", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/listKeys", + requestBody: Parameters.parameters2, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.subscriptionId, + Parameters.accountName1 ], + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const getKeysOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/listKeys", + httpMethod: "POST", responses: { 200: { bodyMapper: Mappers.BatchAccountKeys @@ -570,88 +804,61 @@ const getKeysOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const beginCreateOperationSpec: msRest.OperationSpec = { - httpMethod: "PUT", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName0, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion + Parameters.subscriptionId, + Parameters.accountName1 ], - headerParameters: [ - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.BatchAccountCreateParameters, - required: true - } - }, + headerParameters: [Parameters.accept], + serializer +}; +const listOutboundNetworkDependenciesEndpointsOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/outboundNetworkDependenciesEndpoints", + httpMethod: "GET", responses: { 200: { - bodyMapper: Mappers.BatchAccount, - headersMapper: Mappers.BatchAccountCreateHeaders - }, - 202: { - headersMapper: Mappers.BatchAccountCreateHeaders + bodyMapper: Mappers.OutboundEnvironmentEndpointCollection }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.BatchAccountCreateHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const beginDeleteMethodOperationSpec: msRest.OperationSpec = { - httpMethod: "DELETE", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.subscriptionId, + Parameters.accountName1 ], + headerParameters: [Parameters.accept], + serializer +}; +const listNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", responses: { 200: { - headersMapper: Mappers.BatchAccountDeleteHeaders - }, - 202: { - headersMapper: Mappers.BatchAccountDeleteHeaders - }, - 204: { - headersMapper: Mappers.BatchAccountDeleteHeaders + bodyMapper: Mappers.BatchAccountListResult }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.BatchAccountDeleteHeaders + bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; - -const listNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listByResourceGroupNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.BatchAccountListResult @@ -660,26 +867,35 @@ const listNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; - -const listByResourceGroupNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listOutboundNetworkDependenciesEndpointsNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { - bodyMapper: Mappers.BatchAccountListResult + bodyMapper: Mappers.OutboundEnvironmentEndpointCollection }, default: { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/certificateOperations.ts b/sdk/batch/arm-batch/src/operations/certificateOperations.ts index f8517e31854e..d2abde562689 100644 --- a/sdk/batch/arm-batch/src/operations/certificateOperations.ts +++ b/sdk/batch/arm-batch/src/operations/certificateOperations.ts @@ -1,27 +1,45 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as msRestAzure from "@azure/ms-rest-azure-js"; -import * as Models from "../models"; -import * as Mappers from "../models/certificateOperationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { CertificateOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; +import { LroImpl } from "../lroImpl"; +import { + Certificate, + CertificateListByBatchAccountNextOptionalParams, + CertificateListByBatchAccountOptionalParams, + CertificateListByBatchAccountResponse, + CertificateCreateOrUpdateParameters, + CertificateCreateOptionalParams, + CertificateCreateResponse, + CertificateUpdateOptionalParams, + CertificateUpdateResponse, + CertificateDeleteOptionalParams, + CertificateGetOptionalParams, + CertificateGetResponse, + CertificateCancelDeletionOptionalParams, + CertificateCancelDeletionResponse, + CertificateListByBatchAccountNextResponse +} from "../models"; -/** Class representing a CertificateOperations. */ -export class CertificateOperations { +/// +/** Class containing CertificateOperations operations. */ +export class CertificateOperationsImpl implements CertificateOperations { private readonly client: BatchManagementClientContext; /** - * Create a CertificateOperations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class CertificateOperations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; @@ -31,32 +49,88 @@ export class CertificateOperations { * Lists all of the certificates in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.CertificateListByBatchAccountOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param callback The callback - */ - listByBatchAccount(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; + public listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: CertificateListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listByBatchAccountPagingAll( + resourceGroupName, + accountName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + ); + } + }; + } + + private async *listByBatchAccountPagingPage( + resourceGroupName: string, + accountName: string, + options?: CertificateListByBatchAccountOptionalParams + ): AsyncIterableIterator { + let result = await this._listByBatchAccount( + resourceGroupName, + accountName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listByBatchAccountNext( + resourceGroupName, + accountName, + continuationToken, + options + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listByBatchAccountPagingAll( + resourceGroupName: string, + accountName: string, + options?: CertificateListByBatchAccountOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + )) { + yield* page; + } + } + /** + * Lists all of the certificates in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - listByBatchAccount(resourceGroupName: string, accountName: string, options: Models.CertificateListByBatchAccountOptionalParams, callback: msRest.ServiceCallback): void; - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.CertificateListByBatchAccountOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: CertificateListByBatchAccountOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - options - }, - listByBatchAccountOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, options }, + listByBatchAccountOperationSpec + ); } /** @@ -64,15 +138,22 @@ export class CertificateOperations { * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. * @param parameters Additional parameters for certificate creation. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - create(resourceGroupName: string, accountName: string, certificateName: string, parameters: Models.CertificateCreateOrUpdateParameters, options?: Models.CertificateCreateOptionalParams): Promise { - return this.beginCreate(resourceGroupName,accountName,certificateName,parameters,options) - .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; + create( + resourceGroupName: string, + accountName: string, + certificateName: string, + parameters: CertificateCreateOrUpdateParameters, + options?: CertificateCreateOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, certificateName, parameters, options }, + createOperationSpec + ); } /** @@ -80,45 +161,22 @@ export class CertificateOperations { * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. * @param parameters Certificate entity to update. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - update(resourceGroupName: string, accountName: string, certificateName: string, parameters: Models.CertificateCreateOrUpdateParameters, options?: Models.CertificateUpdateOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param parameters Certificate entity to update. - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, certificateName: string, parameters: Models.CertificateCreateOrUpdateParameters, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param parameters Certificate entity to update. - * @param options The optional parameters - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, certificateName: string, parameters: Models.CertificateCreateOrUpdateParameters, options: Models.CertificateUpdateOptionalParams, callback: msRest.ServiceCallback): void; - update(resourceGroupName: string, accountName: string, certificateName: string, parameters: Models.CertificateCreateOrUpdateParameters, options?: Models.CertificateUpdateOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + update( + resourceGroupName: string, + accountName: string, + certificateName: string, + parameters: CertificateCreateOrUpdateParameters, + options?: CertificateUpdateOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - certificateName, - parameters, - options - }, - updateOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, certificateName, parameters, options }, + updateOperationSpec + ); } /** @@ -126,383 +184,323 @@ export class CertificateOperations { * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param [options] The optional parameters - * @returns Promise + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. */ - deleteMethod(resourceGroupName: string, accountName: string, certificateName: string, options?: msRest.RequestOptionsBase): Promise { - return this.beginDeleteMethod(resourceGroupName,accountName,certificateName,options) - .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; + async beginDelete( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateDeleteOptionalParams + ): Promise, void>> { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ) => { + let currentRawResponse: + | coreClient.FullOperationResponse + | undefined = undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback + } + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON() + } + }; + }; + + const lro = new LroImpl( + sendOperation, + { resourceGroupName, accountName, certificateName, options }, + deleteOperationSpec + ); + return new LroEngine(lro, { + resumeFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + lroResourceLocationConfig: "location" + }); } /** - * Gets information about the specified certificate. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param [options] The optional parameters - * @returns Promise - */ - get(resourceGroupName: string, accountName: string, certificateName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param callback The callback - */ - get(resourceGroupName: string, accountName: string, certificateName: string, callback: msRest.ServiceCallback): void; - /** + * Deletes the specified certificate. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param options The optional parameters - * @param callback The callback + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, certificateName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, accountName: string, certificateName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - certificateName, - options - }, - getOperationSpec, - callback) as Promise; + async beginDeleteAndWait( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateDeleteOptionalParams + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + accountName, + certificateName, + options + ); + return poller.pollUntilDone(); } /** - * If you try to delete a certificate that is being used by a pool or compute node, the status of - * the certificate changes to deleteFailed. If you decide that you want to continue using the - * certificate, you can use this operation to set the status of the certificate back to active. If - * you intend to delete the certificate, you do not need to run this operation after the deletion - * failed. You must make sure that the certificate is not being used by any resources, and then you - * can try again to delete the certificate. - * @summary Cancels a failed deletion of a certificate from the specified account. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param [options] The optional parameters - * @returns Promise - */ - cancelDeletion(resourceGroupName: string, accountName: string, certificateName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param callback The callback - */ - cancelDeletion(resourceGroupName: string, accountName: string, certificateName: string, callback: msRest.ServiceCallback): void; - /** + * Gets information about the specified certificate. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param options The optional parameters - * @param callback The callback + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. */ - cancelDeletion(resourceGroupName: string, accountName: string, certificateName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - cancelDeletion(resourceGroupName: string, accountName: string, certificateName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateGetOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - certificateName, - options - }, - cancelDeletionOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, certificateName, options }, + getOperationSpec + ); } /** - * Creates a new certificate inside the specified account. + * If you try to delete a certificate that is being used by a pool or compute node, the status of the + * certificate changes to deleteFailed. If you decide that you want to continue using the certificate, + * you can use this operation to set the status of the certificate back to active. If you intend to + * delete the certificate, you do not need to run this operation after the deletion failed. You must + * make sure that the certificate is not being used by any resources, and then you can try again to + * delete the certificate. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param parameters Additional parameters for certificate creation. - * @param [options] The optional parameters - * @returns Promise + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. */ - beginCreate(resourceGroupName: string, accountName: string, certificateName: string, parameters: Models.CertificateCreateOrUpdateParameters, options?: Models.CertificateBeginCreateOptionalParams): Promise { - return this.client.sendLRORequest( - { - resourceGroupName, - accountName, - certificateName, - parameters, - options - }, - beginCreateOperationSpec, - options); + cancelDeletion( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateCancelDeletionOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, certificateName, options }, + cancelDeletionOperationSpec + ); } /** - * Deletes the specified certificate. + * ListByBatchAccountNext * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param certificateName The identifier for the certificate. This must be made up of algorithm and - * thumbprint separated by a dash, and must match the certificate data in the request. For example - * SHA1-a3d1c5. - * @param [options] The optional parameters - * @returns Promise - */ - beginDeleteMethod(resourceGroupName: string, accountName: string, certificateName: string, options?: msRest.RequestOptionsBase): Promise { - return this.client.sendLRORequest( - { - resourceGroupName, - accountName, - certificateName, - options - }, - beginDeleteMethodOperationSpec, - options); - } - - /** - * Lists all of the certificates in the specified account. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback - */ - listByBatchAccountNext(nextPageLink: string, callback: msRest.ServiceCallback): void; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback + * @param nextLink The nextLink from the previous successful call to the ListByBatchAccount method. + * @param options The options parameters. */ - listByBatchAccountNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listByBatchAccountNext( + resourceGroupName: string, + accountName: string, + nextLink: string, + options?: CertificateListByBatchAccountNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listByBatchAccountNextOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, nextLink, options }, + listByBatchAccountNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const listByBatchAccountOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByBatchAccountOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates", httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates", - urlParameters: [ - Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.subscriptionId - ], + responses: { + 200: { + bodyMapper: Mappers.ListCertificatesResult + }, + default: { + bodyMapper: Mappers.CloudError + } + }, queryParameters: [ + Parameters.apiVersion, Parameters.maxresults, - Parameters.select, Parameters.filter, - Parameters.apiVersion + Parameters.select ], - headerParameters: [ - Parameters.acceptLanguage + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1 ], + headerParameters: [Parameters.accept], + serializer +}; +const createOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + httpMethod: "PUT", responses: { 200: { - bodyMapper: Mappers.ListCertificatesResult + bodyMapper: Mappers.Certificate, + headersMapper: Mappers.CertificateCreateHeaders }, default: { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const updateOperationSpec: msRest.OperationSpec = { - httpMethod: "PATCH", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + requestBody: Parameters.parameters8, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.certificateName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion + Parameters.certificateName ], headerParameters: [ + Parameters.contentType, + Parameters.accept, Parameters.ifMatch, - Parameters.acceptLanguage + Parameters.ifNoneMatch ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.CertificateCreateOrUpdateParameters, - required: true - } - }, + mediaType: "json", + serializer +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + httpMethod: "PATCH", responses: { 200: { bodyMapper: Mappers.Certificate, headersMapper: Mappers.CertificateUpdateHeaders }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.CertificateUpdateHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + requestBody: Parameters.parameters8, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.certificateName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion + Parameters.certificateName ], headerParameters: [ - Parameters.acceptLanguage + Parameters.contentType, + Parameters.accept, + Parameters.ifMatch ], + mediaType: "json", + serializer +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + httpMethod: "DELETE", responses: { - 200: { - bodyMapper: Mappers.Certificate, - headersMapper: Mappers.CertificateGetHeaders - }, + 200: {}, + 201: {}, + 202: {}, + 204: {}, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.CertificateGetHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const cancelDeletionOperationSpec: msRest.OperationSpec = { - httpMethod: "POST", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}/cancelDelete", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.certificateName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.certificateName ], + headerParameters: [Parameters.accept], + serializer +}; +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.Certificate, - headersMapper: Mappers.CertificateCancelDeletionHeaders + headersMapper: Mappers.CertificateGetHeaders }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.CertificateCancelDeletionHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const beginCreateOperationSpec: msRest.OperationSpec = { - httpMethod: "PUT", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.certificateName, - Parameters.subscriptionId + Parameters.certificateName ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.ifMatch, - Parameters.ifNoneMatch, - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.CertificateCreateOrUpdateParameters, - required: true - } - }, + headerParameters: [Parameters.accept], + serializer +}; +const cancelDeletionOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}/cancelDelete", + httpMethod: "POST", responses: { 200: { bodyMapper: Mappers.Certificate, - headersMapper: Mappers.CertificateCreateHeaders + headersMapper: Mappers.CertificateCancelDeletionHeaders }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.CertificateCreateHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const beginDeleteMethodOperationSpec: msRest.OperationSpec = { - httpMethod: "DELETE", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/certificates/{certificateName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.certificateName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.certificateName ], - responses: { - 200: { - headersMapper: Mappers.CertificateDeleteHeaders - }, - 202: { - headersMapper: Mappers.CertificateDeleteHeaders - }, - 204: { - headersMapper: Mappers.CertificateDeleteHeaders - }, - default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.CertificateDeleteHeaders - } - }, + headerParameters: [Parameters.accept], serializer }; - -const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listByBatchAccountNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListCertificatesResult @@ -511,5 +509,19 @@ const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [ + Parameters.apiVersion, + Parameters.maxresults, + Parameters.filter, + Parameters.select + ], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/index.ts b/sdk/batch/arm-batch/src/operations/index.ts index f67d0e2219db..95e600c1bcd8 100644 --- a/sdk/batch/arm-batch/src/operations/index.ts +++ b/sdk/batch/arm-batch/src/operations/index.ts @@ -1,11 +1,9 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ export * from "./batchAccountOperations"; diff --git a/sdk/batch/arm-batch/src/operations/location.ts b/sdk/batch/arm-batch/src/operations/location.ts index 6efd43a3f585..8cc77f2d287b 100644 --- a/sdk/batch/arm-batch/src/operations/location.ts +++ b/sdk/batch/arm-batch/src/operations/location.ts @@ -1,147 +1,413 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as Models from "../models"; -import * as Mappers from "../models/locationMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { Location } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { + SupportedSku, + LocationListSupportedVirtualMachineSkusNextOptionalParams, + LocationListSupportedVirtualMachineSkusOptionalParams, + LocationListSupportedCloudServiceSkusNextOptionalParams, + LocationListSupportedCloudServiceSkusOptionalParams, + LocationGetQuotasOptionalParams, + LocationGetQuotasResponse, + LocationListSupportedVirtualMachineSkusResponse, + LocationListSupportedCloudServiceSkusResponse, + CheckNameAvailabilityParameters, + LocationCheckNameAvailabilityOptionalParams, + LocationCheckNameAvailabilityResponse, + LocationListSupportedVirtualMachineSkusNextResponse, + LocationListSupportedCloudServiceSkusNextResponse +} from "../models"; -/** Class representing a Location. */ -export class Location { +/// +/** Class containing Location operations. */ +export class LocationImpl implements Location { private readonly client: BatchManagementClientContext; /** - * Create a Location. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class Location class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; } + /** + * Gets the list of Batch supported Virtual Machine VM sizes available at the given location. + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param options The options parameters. + */ + public listSupportedVirtualMachineSkus( + locationName: string, + options?: LocationListSupportedVirtualMachineSkusOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listSupportedVirtualMachineSkusPagingAll( + locationName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listSupportedVirtualMachineSkusPagingPage( + locationName, + options + ); + } + }; + } + + private async *listSupportedVirtualMachineSkusPagingPage( + locationName: string, + options?: LocationListSupportedVirtualMachineSkusOptionalParams + ): AsyncIterableIterator { + let result = await this._listSupportedVirtualMachineSkus( + locationName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listSupportedVirtualMachineSkusNext( + locationName, + continuationToken, + options + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listSupportedVirtualMachineSkusPagingAll( + locationName: string, + options?: LocationListSupportedVirtualMachineSkusOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listSupportedVirtualMachineSkusPagingPage( + locationName, + options + )) { + yield* page; + } + } + + /** + * Gets the list of Batch supported Cloud Service VM sizes available at the given location. + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param options The options parameters. + */ + public listSupportedCloudServiceSkus( + locationName: string, + options?: LocationListSupportedCloudServiceSkusOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listSupportedCloudServiceSkusPagingAll( + locationName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listSupportedCloudServiceSkusPagingPage( + locationName, + options + ); + } + }; + } + + private async *listSupportedCloudServiceSkusPagingPage( + locationName: string, + options?: LocationListSupportedCloudServiceSkusOptionalParams + ): AsyncIterableIterator { + let result = await this._listSupportedCloudServiceSkus( + locationName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listSupportedCloudServiceSkusNext( + locationName, + continuationToken, + options + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listSupportedCloudServiceSkusPagingAll( + locationName: string, + options?: LocationListSupportedCloudServiceSkusOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listSupportedCloudServiceSkusPagingPage( + locationName, + options + )) { + yield* page; + } + } + /** * Gets the Batch service quotas for the specified subscription at the given location. * @param locationName The region for which to retrieve Batch service quotas. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - getQuotas(locationName: string, options?: msRest.RequestOptionsBase): Promise; + getQuotas( + locationName: string, + options?: LocationGetQuotasOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { locationName, options }, + getQuotasOperationSpec + ); + } + /** - * @param locationName The region for which to retrieve Batch service quotas. - * @param callback The callback + * Gets the list of Batch supported Virtual Machine VM sizes available at the given location. + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param options The options parameters. */ - getQuotas(locationName: string, callback: msRest.ServiceCallback): void; + private _listSupportedVirtualMachineSkus( + locationName: string, + options?: LocationListSupportedVirtualMachineSkusOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { locationName, options }, + listSupportedVirtualMachineSkusOperationSpec + ); + } + /** - * @param locationName The region for which to retrieve Batch service quotas. - * @param options The optional parameters - * @param callback The callback + * Gets the list of Batch supported Cloud Service VM sizes available at the given location. + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param options The options parameters. */ - getQuotas(locationName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - getQuotas(locationName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listSupportedCloudServiceSkus( + locationName: string, + options?: LocationListSupportedCloudServiceSkusOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - locationName, - options - }, - getQuotasOperationSpec, - callback) as Promise; + { locationName, options }, + listSupportedCloudServiceSkusOperationSpec + ); } /** * Checks whether the Batch account name is available in the specified region. * @param locationName The desired region for the name check. - * @param name The name to check for availability - * @param [options] The optional parameters - * @returns Promise + * @param parameters Properties needed to check the availability of a name. + * @param options The options parameters. */ - checkNameAvailability(locationName: string, name: string, options?: msRest.RequestOptionsBase): Promise; + checkNameAvailability( + locationName: string, + parameters: CheckNameAvailabilityParameters, + options?: LocationCheckNameAvailabilityOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { locationName, parameters, options }, + checkNameAvailabilityOperationSpec + ); + } + /** - * @param locationName The desired region for the name check. - * @param name The name to check for availability - * @param callback The callback + * ListSupportedVirtualMachineSkusNext + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param nextLink The nextLink from the previous successful call to the + * ListSupportedVirtualMachineSkus method. + * @param options The options parameters. */ - checkNameAvailability(locationName: string, name: string, callback: msRest.ServiceCallback): void; + private _listSupportedVirtualMachineSkusNext( + locationName: string, + nextLink: string, + options?: LocationListSupportedVirtualMachineSkusNextOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { locationName, nextLink, options }, + listSupportedVirtualMachineSkusNextOperationSpec + ); + } + /** - * @param locationName The desired region for the name check. - * @param name The name to check for availability - * @param options The optional parameters - * @param callback The callback + * ListSupportedCloudServiceSkusNext + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param nextLink The nextLink from the previous successful call to the ListSupportedCloudServiceSkus + * method. + * @param options The options parameters. */ - checkNameAvailability(locationName: string, name: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - checkNameAvailability(locationName: string, name: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listSupportedCloudServiceSkusNext( + locationName: string, + nextLink: string, + options?: LocationListSupportedCloudServiceSkusNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - locationName, - name, - options - }, - checkNameAvailabilityOperationSpec, - callback) as Promise; + { locationName, nextLink, options }, + listSupportedCloudServiceSkusNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const getQuotasOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const getQuotasOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/quotas", httpMethod: "GET", - path: "subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/quotas", + responses: { + 200: { + bodyMapper: Mappers.BatchLocationQuota + }, + default: { + bodyMapper: Mappers.CloudError + } + }, + queryParameters: [Parameters.apiVersion], urlParameters: [ - Parameters.locationName, - Parameters.subscriptionId + Parameters.$host, + Parameters.subscriptionId, + Parameters.locationName ], + headerParameters: [Parameters.accept], + serializer +}; +const listSupportedVirtualMachineSkusOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/virtualMachineSkus", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.SupportedSkusResult + }, + default: { + bodyMapper: Mappers.CloudError + } + }, queryParameters: [ - Parameters.apiVersion + Parameters.apiVersion, + Parameters.maxresults, + Parameters.filter ], - headerParameters: [ - Parameters.acceptLanguage + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.locationName ], + headerParameters: [Parameters.accept], + serializer +}; +const listSupportedCloudServiceSkusOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/cloudServiceSkus", + httpMethod: "GET", responses: { 200: { - bodyMapper: Mappers.BatchLocationQuota + bodyMapper: Mappers.SupportedSkusResult }, default: { bodyMapper: Mappers.CloudError } }, + queryParameters: [ + Parameters.apiVersion, + Parameters.maxresults, + Parameters.filter + ], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.locationName + ], + headerParameters: [Parameters.accept], serializer }; - -const checkNameAvailabilityOperationSpec: msRest.OperationSpec = { +const checkNameAvailabilityOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/checkNameAvailability", httpMethod: "POST", - path: "subscriptions/{subscriptionId}/providers/Microsoft.Batch/locations/{locationName}/checkNameAvailability", + responses: { + 200: { + bodyMapper: Mappers.CheckNameAvailabilityResult + }, + default: { + bodyMapper: Mappers.CloudError + } + }, + requestBody: Parameters.parameters7, + queryParameters: [Parameters.apiVersion], urlParameters: [ - Parameters.locationName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion + Parameters.$host, + Parameters.subscriptionId, + Parameters.locationName ], - headerParameters: [ - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: { - name: "name" + headerParameters: [Parameters.contentType, Parameters.accept], + mediaType: "json", + serializer +}; +const listSupportedVirtualMachineSkusNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", + responses: { + 200: { + bodyMapper: Mappers.SupportedSkusResult }, - mapper: { - ...Mappers.CheckNameAvailabilityParameters, - required: true + default: { + bodyMapper: Mappers.CloudError } }, + queryParameters: [ + Parameters.apiVersion, + Parameters.maxresults, + Parameters.filter + ], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.nextLink, + Parameters.locationName + ], + headerParameters: [Parameters.accept], + serializer +}; +const listSupportedCloudServiceSkusNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", responses: { 200: { - bodyMapper: Mappers.CheckNameAvailabilityResult + bodyMapper: Mappers.SupportedSkusResult }, default: { bodyMapper: Mappers.CloudError } }, + queryParameters: [ + Parameters.apiVersion, + Parameters.maxresults, + Parameters.filter + ], + urlParameters: [ + Parameters.$host, + Parameters.subscriptionId, + Parameters.nextLink, + Parameters.locationName + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/operations.ts b/sdk/batch/arm-batch/src/operations/operations.ts index b4067f9898f6..5b90aaceb885 100644 --- a/sdk/batch/arm-batch/src/operations/operations.ts +++ b/sdk/batch/arm-batch/src/operations/operations.ts @@ -1,26 +1,33 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as Models from "../models"; -import * as Mappers from "../models/operationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { Operations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { + Operation, + OperationsListNextOptionalParams, + OperationsListOptionalParams, + OperationsListResponse, + OperationsListNextResponse +} from "../models"; -/** Class representing a Operations. */ -export class Operations { +/// +/** Class containing Operations operations. */ +export class OperationsImpl implements Operations { private readonly client: BatchManagementClientContext; /** - * Create a Operations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class Operations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; @@ -28,68 +35,77 @@ export class Operations { /** * Lists available operations for the Microsoft.Batch provider - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - list(options?: msRest.RequestOptionsBase): Promise; - /** - * @param callback The callback - */ - list(callback: msRest.ServiceCallback): void; - /** - * @param options The optional parameters - * @param callback The callback - */ - list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - list(options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { - options + public list( + options?: OperationsListOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listPagingAll(options); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; }, - listOperationSpec, - callback) as Promise; + byPage: () => { + return this.listPagingPage(options); + } + }; + } + + private async *listPagingPage( + options?: OperationsListOptionalParams + ): AsyncIterableIterator { + let result = await this._list(options); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listNext(continuationToken, options); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listPagingAll( + options?: OperationsListOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listPagingPage(options)) { + yield* page; + } } /** * Lists available operations for the Microsoft.Batch provider - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback + * @param options The options parameters. */ - listNext(nextPageLink: string, callback: msRest.ServiceCallback): void; + private _list( + options?: OperationsListOptionalParams + ): Promise { + return this.client.sendOperationRequest({ options }, listOperationSpec); + } + /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback + * ListNext + * @param nextLink The nextLink from the previous successful call to the List method. + * @param options The options parameters. */ - listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listNext( + nextLink: string, + options?: OperationsListNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listNextOperationSpec, - callback) as Promise; + { nextLink, options }, + listNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const listOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listOperationSpec: coreClient.OperationSpec = { + path: "/providers/Microsoft.Batch/operations", httpMethod: "GET", - path: "providers/Microsoft.Batch/operations", - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage - ], responses: { 200: { bodyMapper: Mappers.OperationListResult @@ -98,19 +114,14 @@ const listOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host], + headerParameters: [Parameters.accept], serializer }; - -const listNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.OperationListResult @@ -119,5 +130,8 @@ const listNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [Parameters.$host, Parameters.nextLink], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/poolOperations.ts b/sdk/batch/arm-batch/src/operations/poolOperations.ts index 14511c788af0..d16cd5b9a195 100644 --- a/sdk/batch/arm-batch/src/operations/poolOperations.ts +++ b/sdk/batch/arm-batch/src/operations/poolOperations.ts @@ -1,27 +1,46 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as msRestAzure from "@azure/ms-rest-azure-js"; -import * as Models from "../models"; -import * as Mappers from "../models/poolOperationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { PoolOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; +import { LroImpl } from "../lroImpl"; +import { + Pool, + PoolListByBatchAccountNextOptionalParams, + PoolListByBatchAccountOptionalParams, + PoolListByBatchAccountResponse, + PoolCreateOptionalParams, + PoolCreateResponse, + PoolUpdateOptionalParams, + PoolUpdateResponse, + PoolDeleteOptionalParams, + PoolGetOptionalParams, + PoolGetResponse, + PoolDisableAutoScaleOptionalParams, + PoolDisableAutoScaleResponse, + PoolStopResizeOptionalParams, + PoolStopResizeResponse, + PoolListByBatchAccountNextResponse +} from "../models"; -/** Class representing a PoolOperations. */ -export class PoolOperations { +/// +/** Class containing PoolOperations operations. */ +export class PoolOperationsImpl implements PoolOperations { private readonly client: BatchManagementClientContext; /** - * Create a PoolOperations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class PoolOperations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; @@ -31,32 +50,88 @@ export class PoolOperations { * Lists all of the pools in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.PoolListByBatchAccountOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param callback The callback - */ - listByBatchAccount(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; + public listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PoolListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listByBatchAccountPagingAll( + resourceGroupName, + accountName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + ); + } + }; + } + + private async *listByBatchAccountPagingPage( + resourceGroupName: string, + accountName: string, + options?: PoolListByBatchAccountOptionalParams + ): AsyncIterableIterator { + let result = await this._listByBatchAccount( + resourceGroupName, + accountName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listByBatchAccountNext( + resourceGroupName, + accountName, + continuationToken, + options + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listByBatchAccountPagingAll( + resourceGroupName: string, + accountName: string, + options?: PoolListByBatchAccountOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + )) { + yield* page; + } + } + /** + * Lists all of the pools in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - listByBatchAccount(resourceGroupName: string, accountName: string, options: Models.PoolListByBatchAccountOptionalParams, callback: msRest.ServiceCallback): void; - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.PoolListByBatchAccountOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PoolListByBatchAccountOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - options - }, - listByBatchAccountOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, options }, + listByBatchAccountOperationSpec + ); } /** @@ -65,12 +140,19 @@ export class PoolOperations { * @param accountName The name of the Batch account. * @param poolName The pool name. This must be unique within the account. * @param parameters Additional parameters for pool creation. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - create(resourceGroupName: string, accountName: string, poolName: string, parameters: Models.Pool, options?: Models.PoolCreateOptionalParams): Promise { - return this.beginCreate(resourceGroupName,accountName,poolName,parameters,options) - .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; + create( + resourceGroupName: string, + accountName: string, + poolName: string, + parameters: Pool, + options?: PoolCreateOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, poolName, parameters, options }, + createOperationSpec + ); } /** @@ -79,41 +161,20 @@ export class PoolOperations { * @param accountName The name of the Batch account. * @param poolName The pool name. This must be unique within the account. * @param parameters Pool properties that should be updated. Properties that are supplied will be - * updated, any property not supplied will be unchanged. - * @param [options] The optional parameters - * @returns Promise + * updated, any property not supplied will be unchanged. + * @param options The options parameters. */ - update(resourceGroupName: string, accountName: string, poolName: string, parameters: Models.Pool, options?: Models.PoolUpdateOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param parameters Pool properties that should be updated. Properties that are supplied will be - * updated, any property not supplied will be unchanged. - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, poolName: string, parameters: Models.Pool, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param parameters Pool properties that should be updated. Properties that are supplied will be - * updated, any property not supplied will be unchanged. - * @param options The optional parameters - * @param callback The callback - */ - update(resourceGroupName: string, accountName: string, poolName: string, parameters: Models.Pool, options: Models.PoolUpdateOptionalParams, callback: msRest.ServiceCallback): void; - update(resourceGroupName: string, accountName: string, poolName: string, parameters: Models.Pool, options?: Models.PoolUpdateOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + update( + resourceGroupName: string, + accountName: string, + poolName: string, + parameters: Pool, + options?: PoolUpdateOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - poolName, - parameters, - options - }, - updateOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, poolName, parameters, options }, + updateOperationSpec + ); } /** @@ -121,429 +182,358 @@ export class PoolOperations { * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param poolName The pool name. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - deleteMethod(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase): Promise { - return this.beginDeleteMethod(resourceGroupName,accountName,poolName,options) - .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; + async beginDelete( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolDeleteOptionalParams + ): Promise, void>> { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ) => { + let currentRawResponse: + | coreClient.FullOperationResponse + | undefined = undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback + } + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON() + } + }; + }; + + const lro = new LroImpl( + sendOperation, + { resourceGroupName, accountName, poolName, options }, + deleteOperationSpec + ); + return new LroEngine(lro, { + resumeFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + lroResourceLocationConfig: "location" + }); } /** - * Gets information about the specified pool. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise - */ - get(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param callback The callback - */ - get(resourceGroupName: string, accountName: string, poolName: string, callback: msRest.ServiceCallback): void; - /** + * Deletes the specified pool. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param poolName The pool name. This must be unique within the account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, poolName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - poolName, - options - }, - getOperationSpec, - callback) as Promise; + async beginDeleteAndWait( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolDeleteOptionalParams + ): Promise { + const poller = await this.beginDelete( + resourceGroupName, + accountName, + poolName, + options + ); + return poller.pollUntilDone(); } /** - * Disables automatic scaling for a pool. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise - */ - disableAutoScale(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param callback The callback - */ - disableAutoScale(resourceGroupName: string, accountName: string, poolName: string, callback: msRest.ServiceCallback): void; - /** + * Gets information about the specified pool. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param poolName The pool name. This must be unique within the account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - disableAutoScale(resourceGroupName: string, accountName: string, poolName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - disableAutoScale(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolGetOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - poolName, - options - }, - disableAutoScaleOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, poolName, options }, + getOperationSpec + ); } /** - * This does not restore the pool to its previous state before the resize operation: it only stops - * any further changes being made, and the pool maintains its current state. After stopping, the - * pool stabilizes at the number of nodes it was at when the stop operation was done. During the - * stop operation, the pool allocation state changes first to stopping and then to steady. A resize - * operation need not be an explicit resize pool request; this API can also be used to halt the - * initial sizing of the pool when it is created. - * @summary Stops an ongoing resize operation on the pool. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise - */ - stopResize(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param callback The callback - */ - stopResize(resourceGroupName: string, accountName: string, poolName: string, callback: msRest.ServiceCallback): void; - /** + * Disables automatic scaling for a pool. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param poolName The pool name. This must be unique within the account. - * @param options The optional parameters - * @param callback The callback + * @param options The options parameters. */ - stopResize(resourceGroupName: string, accountName: string, poolName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - stopResize(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + disableAutoScale( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolDisableAutoScaleOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - poolName, - options - }, - stopResizeOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, poolName, options }, + disableAutoScaleOperationSpec + ); } /** - * Creates a new pool inside the specified account. + * This does not restore the pool to its previous state before the resize operation: it only stops any + * further changes being made, and the pool maintains its current state. After stopping, the pool + * stabilizes at the number of nodes it was at when the stop operation was done. During the stop + * operation, the pool allocation state changes first to stopping and then to steady. A resize + * operation need not be an explicit resize pool request; this API can also be used to halt the initial + * sizing of the pool when it is created. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param poolName The pool name. This must be unique within the account. - * @param parameters Additional parameters for pool creation. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - beginCreate(resourceGroupName: string, accountName: string, poolName: string, parameters: Models.Pool, options?: Models.PoolBeginCreateOptionalParams): Promise { - return this.client.sendLRORequest( - { - resourceGroupName, - accountName, - poolName, - parameters, - options - }, - beginCreateOperationSpec, - options); + stopResize( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolStopResizeOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, poolName, options }, + stopResizeOperationSpec + ); } /** - * Deletes the specified pool. + * ListByBatchAccountNext * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param poolName The pool name. This must be unique within the account. - * @param [options] The optional parameters - * @returns Promise - */ - beginDeleteMethod(resourceGroupName: string, accountName: string, poolName: string, options?: msRest.RequestOptionsBase): Promise { - return this.client.sendLRORequest( - { - resourceGroupName, - accountName, - poolName, - options - }, - beginDeleteMethodOperationSpec, - options); - } - - /** - * Lists all of the pools in the specified account. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise + * @param nextLink The nextLink from the previous successful call to the ListByBatchAccount method. + * @param options The options parameters. */ - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback - */ - listByBatchAccountNext(nextPageLink: string, callback: msRest.ServiceCallback): void; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback - */ - listByBatchAccountNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listByBatchAccountNext( + resourceGroupName: string, + accountName: string, + nextLink: string, + options?: PoolListByBatchAccountNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listByBatchAccountNextOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, nextLink, options }, + listByBatchAccountNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const listByBatchAccountOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByBatchAccountOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools", httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools", - urlParameters: [ - Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.subscriptionId - ], + responses: { + 200: { + bodyMapper: Mappers.ListPoolsResult + }, + default: { + bodyMapper: Mappers.CloudError + } + }, queryParameters: [ + Parameters.apiVersion, Parameters.maxresults, - Parameters.select, Parameters.filter, - Parameters.apiVersion + Parameters.select ], - headerParameters: [ - Parameters.acceptLanguage + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1 ], + headerParameters: [Parameters.accept], + serializer +}; +const createOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + httpMethod: "PUT", responses: { 200: { - bodyMapper: Mappers.ListPoolsResult + bodyMapper: Mappers.Pool, + headersMapper: Mappers.PoolCreateHeaders }, default: { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const updateOperationSpec: msRest.OperationSpec = { - httpMethod: "PATCH", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + requestBody: Parameters.parameters10, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.poolName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion + Parameters.poolName ], headerParameters: [ + Parameters.contentType, + Parameters.accept, Parameters.ifMatch, - Parameters.acceptLanguage + Parameters.ifNoneMatch ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.Pool, - required: true - } - }, + mediaType: "json", + serializer +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + httpMethod: "PATCH", responses: { 200: { bodyMapper: Mappers.Pool, headersMapper: Mappers.PoolUpdateHeaders }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.PoolUpdateHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + requestBody: Parameters.parameters10, + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.poolName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion + Parameters.poolName ], headerParameters: [ - Parameters.acceptLanguage + Parameters.contentType, + Parameters.accept, + Parameters.ifMatch ], + mediaType: "json", + serializer +}; +const deleteOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + httpMethod: "DELETE", responses: { - 200: { - bodyMapper: Mappers.Pool, - headersMapper: Mappers.PoolGetHeaders - }, + 200: {}, + 201: {}, + 202: {}, + 204: {}, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.PoolGetHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const disableAutoScaleOperationSpec: msRest.OperationSpec = { - httpMethod: "POST", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}/disableAutoScale", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.poolName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.poolName ], + headerParameters: [Parameters.accept], + serializer +}; +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.Pool, - headersMapper: Mappers.PoolDisableAutoScaleHeaders + headersMapper: Mappers.PoolGetHeaders }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.PoolDisableAutoScaleHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const stopResizeOperationSpec: msRest.OperationSpec = { - httpMethod: "POST", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}/stopResize", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.poolName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.poolName ], + headerParameters: [Parameters.accept], + serializer +}; +const disableAutoScaleOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}/disableAutoScale", + httpMethod: "POST", responses: { 200: { bodyMapper: Mappers.Pool, - headersMapper: Mappers.PoolStopResizeHeaders + headersMapper: Mappers.PoolDisableAutoScaleHeaders }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.PoolStopResizeHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const beginCreateOperationSpec: msRest.OperationSpec = { - httpMethod: "PUT", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.poolName, - Parameters.subscriptionId + Parameters.poolName ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.ifMatch, - Parameters.ifNoneMatch, - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.Pool, - required: true - } - }, + headerParameters: [Parameters.accept], + serializer +}; +const stopResizeOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}/stopResize", + httpMethod: "POST", responses: { 200: { bodyMapper: Mappers.Pool, - headersMapper: Mappers.PoolCreateHeaders + headersMapper: Mappers.PoolStopResizeHeaders }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.PoolCreateHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const beginDeleteMethodOperationSpec: msRest.OperationSpec = { - httpMethod: "DELETE", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/pools/{poolName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, - Parameters.poolName, - Parameters.subscriptionId - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.poolName ], - responses: { - 200: { - headersMapper: Mappers.PoolDeleteHeaders - }, - 202: { - headersMapper: Mappers.PoolDeleteHeaders - }, - 204: { - headersMapper: Mappers.PoolDeleteHeaders - }, - default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.PoolDeleteHeaders - } - }, + headerParameters: [Parameters.accept], serializer }; - -const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listByBatchAccountNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListPoolsResult @@ -552,5 +542,19 @@ const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [ + Parameters.apiVersion, + Parameters.maxresults, + Parameters.filter, + Parameters.select + ], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/privateEndpointConnectionOperations.ts b/sdk/batch/arm-batch/src/operations/privateEndpointConnectionOperations.ts index 3b6040a9c642..e969d6987a5b 100644 --- a/sdk/batch/arm-batch/src/operations/privateEndpointConnectionOperations.ts +++ b/sdk/batch/arm-batch/src/operations/privateEndpointConnectionOperations.ts @@ -1,27 +1,40 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as msRestAzure from "@azure/ms-rest-azure-js"; -import * as Models from "../models"; -import * as Mappers from "../models/privateEndpointConnectionOperationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { PrivateEndpointConnectionOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { PollerLike, PollOperationState, LroEngine } from "@azure/core-lro"; +import { LroImpl } from "../lroImpl"; +import { + PrivateEndpointConnection, + PrivateEndpointConnectionListByBatchAccountNextOptionalParams, + PrivateEndpointConnectionListByBatchAccountOptionalParams, + PrivateEndpointConnectionListByBatchAccountResponse, + PrivateEndpointConnectionGetOptionalParams, + PrivateEndpointConnectionGetResponse, + PrivateEndpointConnectionUpdateOptionalParams, + PrivateEndpointConnectionUpdateResponse, + PrivateEndpointConnectionListByBatchAccountNextResponse +} from "../models"; -/** Class representing a PrivateEndpointConnectionOperations. */ -export class PrivateEndpointConnectionOperations { +/// +/** Class containing PrivateEndpointConnectionOperations operations. */ +export class PrivateEndpointConnectionOperationsImpl + implements PrivateEndpointConnectionOperations { private readonly client: BatchManagementClientContext; /** - * Create a PrivateEndpointConnectionOperations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class PrivateEndpointConnectionOperations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; @@ -31,62 +44,104 @@ export class PrivateEndpointConnectionOperations { * Lists all of the private endpoint connections in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.PrivateEndpointConnectionListByBatchAccountOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param callback The callback - */ - listByBatchAccount(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback - */ - listByBatchAccount(resourceGroupName: string, accountName: string, options: Models.PrivateEndpointConnectionListByBatchAccountOptionalParams, callback: msRest.ServiceCallback): void; - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.PrivateEndpointConnectionListByBatchAccountOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { + public listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PrivateEndpointConnectionListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listByBatchAccountPagingAll( + resourceGroupName, + accountName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + ); + } + }; + } + + private async *listByBatchAccountPagingPage( + resourceGroupName: string, + accountName: string, + options?: PrivateEndpointConnectionListByBatchAccountOptionalParams + ): AsyncIterableIterator { + let result = await this._listByBatchAccount( + resourceGroupName, + accountName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listByBatchAccountNext( resourceGroupName, accountName, + continuationToken, options - }, - listByBatchAccountOperationSpec, - callback) as Promise; + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listByBatchAccountPagingAll( + resourceGroupName: string, + accountName: string, + options?: PrivateEndpointConnectionListByBatchAccountOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + )) { + yield* page; + } } /** - * Gets information about the specified private endpoint connection. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param privateEndpointConnectionName The private endpoint connection name. This must be unique - * within the account. - * @param [options] The optional parameters - * @returns Promise - */ - get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: msRest.RequestOptionsBase): Promise; - /** + * Lists all of the private endpoint connections in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param privateEndpointConnectionName The private endpoint connection name. This must be unique - * within the account. - * @param callback The callback + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, callback: msRest.ServiceCallback): void; + private _listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PrivateEndpointConnectionListByBatchAccountOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, options }, + listByBatchAccountOperationSpec + ); + } + /** + * Gets information about the specified private endpoint connection. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param privateEndpointConnectionName The private endpoint connection name. This must be unique - * within the account. - * @param options The optional parameters - * @param callback The callback + * within the account. + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get( + resourceGroupName: string, + accountName: string, + privateEndpointConnectionName: string, + options?: PrivateEndpointConnectionGetOptionalParams + ): Promise { return this.client.sendOperationRequest( { resourceGroupName, @@ -94,8 +149,8 @@ export class PrivateEndpointConnectionOperations { privateEndpointConnectionName, options }, - getOperationSpec, - callback) as Promise; + getOperationSpec + ); } /** @@ -103,30 +158,64 @@ export class PrivateEndpointConnectionOperations { * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param privateEndpointConnectionName The private endpoint connection name. This must be unique - * within the account. - * @param parameters PrivateEndpointConnection properties that should be updated. Properties that - * are supplied will be updated, any property not supplied will be unchanged. - * @param [options] The optional parameters - * @returns Promise + * within the account. + * @param parameters PrivateEndpointConnection properties that should be updated. Properties that are + * supplied will be updated, any property not supplied will be unchanged. + * @param options The options parameters. */ - update(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, parameters: Models.PrivateEndpointConnection, options?: Models.PrivateEndpointConnectionUpdateOptionalParams): Promise { - return this.beginUpdate(resourceGroupName,accountName,privateEndpointConnectionName,parameters,options) - .then(lroPoller => lroPoller.pollUntilFinished()) as Promise; - } + async beginUpdate( + resourceGroupName: string, + accountName: string, + privateEndpointConnectionName: string, + parameters: PrivateEndpointConnection, + options?: PrivateEndpointConnectionUpdateOptionalParams + ): Promise< + PollerLike< + PollOperationState, + PrivateEndpointConnectionUpdateResponse + > + > { + const directSendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ): Promise => { + return this.client.sendOperationRequest(args, spec); + }; + const sendOperation = async ( + args: coreClient.OperationArguments, + spec: coreClient.OperationSpec + ) => { + let currentRawResponse: + | coreClient.FullOperationResponse + | undefined = undefined; + const providedCallback = args.options?.onResponse; + const callback: coreClient.RawResponseCallback = ( + rawResponse: coreClient.FullOperationResponse, + flatResponse: unknown + ) => { + currentRawResponse = rawResponse; + providedCallback?.(rawResponse, flatResponse); + }; + const updatedArgs = { + ...args, + options: { + ...args.options, + onResponse: callback + } + }; + const flatResponse = await directSendOperation(updatedArgs, spec); + return { + flatResponse, + rawResponse: { + statusCode: currentRawResponse!.status, + body: currentRawResponse!.parsedBody, + headers: currentRawResponse!.headers.toJSON() + } + }; + }; - /** - * Updates the properties of an existing private endpoint connection. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param privateEndpointConnectionName The private endpoint connection name. This must be unique - * within the account. - * @param parameters PrivateEndpointConnection properties that should be updated. Properties that - * are supplied will be updated, any property not supplied will be unchanged. - * @param [options] The optional parameters - * @returns Promise - */ - beginUpdate(resourceGroupName: string, accountName: string, privateEndpointConnectionName: string, parameters: Models.PrivateEndpointConnection, options?: Models.PrivateEndpointConnectionBeginUpdateOptionalParams): Promise { - return this.client.sendLRORequest( + const lro = new LroImpl( + sendOperation, { resourceGroupName, accountName, @@ -134,56 +223,68 @@ export class PrivateEndpointConnectionOperations { parameters, options }, - beginUpdateOperationSpec, - options); + updateOperationSpec + ); + return new LroEngine(lro, { + resumeFrom: options?.resumeFrom, + intervalInMs: options?.updateIntervalInMs, + lroResourceLocationConfig: "azure-async-operation" + }); } /** - * Lists all of the private endpoint connections in the specified account. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback + * Updates the properties of an existing private endpoint connection. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param privateEndpointConnectionName The private endpoint connection name. This must be unique + * within the account. + * @param parameters PrivateEndpointConnection properties that should be updated. Properties that are + * supplied will be updated, any property not supplied will be unchanged. + * @param options The options parameters. */ - listByBatchAccountNext(nextPageLink: string, callback: msRest.ServiceCallback): void; + async beginUpdateAndWait( + resourceGroupName: string, + accountName: string, + privateEndpointConnectionName: string, + parameters: PrivateEndpointConnection, + options?: PrivateEndpointConnectionUpdateOptionalParams + ): Promise { + const poller = await this.beginUpdate( + resourceGroupName, + accountName, + privateEndpointConnectionName, + parameters, + options + ); + return poller.pollUntilDone(); + } + /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback + * ListByBatchAccountNext + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param nextLink The nextLink from the previous successful call to the ListByBatchAccount method. + * @param options The options parameters. */ - listByBatchAccountNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listByBatchAccountNext( + resourceGroupName: string, + accountName: string, + nextLink: string, + options?: PrivateEndpointConnectionListByBatchAccountNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listByBatchAccountNextOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, nextLink, options }, + listByBatchAccountNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const listByBatchAccountOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByBatchAccountOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateEndpointConnections", httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateEndpointConnections", - urlParameters: [ - Parameters.subscriptionId, - Parameters.resourceGroupName, - Parameters.accountName1 - ], - queryParameters: [ - Parameters.apiVersion, - Parameters.maxresults - ], - headerParameters: [ - Parameters.acceptLanguage - ], responses: { 200: { bodyMapper: Mappers.ListPrivateEndpointConnectionsResult @@ -192,24 +293,20 @@ const listByBatchAccountOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}", + queryParameters: [Parameters.apiVersion, Parameters.maxresults], urlParameters: [ - Parameters.subscriptionId, + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.privateEndpointConnectionName - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.subscriptionId, + Parameters.accountName1 ], + headerParameters: [Parameters.accept], + serializer +}; +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.PrivateEndpointConnection @@ -218,61 +315,58 @@ const getOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const beginUpdateOperationSpec: msRest.OperationSpec = { - httpMethod: "PATCH", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}", + queryParameters: [Parameters.apiVersion], urlParameters: [ - Parameters.subscriptionId, + Parameters.$host, Parameters.resourceGroupName, + Parameters.subscriptionId, Parameters.accountName1, Parameters.privateEndpointConnectionName ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.ifMatch, - Parameters.acceptLanguage - ], - requestBody: { - parameterPath: "parameters", - mapper: { - ...Mappers.PrivateEndpointConnection, - required: true - } - }, + headerParameters: [Parameters.accept], + serializer +}; +const updateOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateEndpointConnections/{privateEndpointConnectionName}", + httpMethod: "PATCH", responses: { 200: { - bodyMapper: Mappers.PrivateEndpointConnection, - headersMapper: Mappers.PrivateEndpointConnectionUpdateHeaders + bodyMapper: Mappers.PrivateEndpointConnection + }, + 201: { + bodyMapper: Mappers.PrivateEndpointConnection }, 202: { - headersMapper: Mappers.PrivateEndpointConnectionUpdateHeaders + bodyMapper: Mappers.PrivateEndpointConnection }, 204: { - headersMapper: Mappers.PrivateEndpointConnectionUpdateHeaders + bodyMapper: Mappers.PrivateEndpointConnection }, default: { - bodyMapper: Mappers.CloudError, - headersMapper: Mappers.PrivateEndpointConnectionUpdateHeaders + bodyMapper: Mappers.CloudError } }, - serializer -}; - -const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", - path: "{nextLink}", + requestBody: Parameters.parameters9, + queryParameters: [Parameters.apiVersion], urlParameters: [ - Parameters.nextPageLink + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.privateEndpointConnectionName ], headerParameters: [ - Parameters.acceptLanguage + Parameters.contentType, + Parameters.accept, + Parameters.ifMatch ], + mediaType: "json", + serializer +}; +const listByBatchAccountNextOperationSpec: coreClient.OperationSpec = { + path: "{nextLink}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListPrivateEndpointConnectionsResult @@ -281,5 +375,14 @@ const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion, Parameters.maxresults], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operations/privateLinkResourceOperations.ts b/sdk/batch/arm-batch/src/operations/privateLinkResourceOperations.ts index d27dfdc6ccfc..12e2078b29f9 100644 --- a/sdk/batch/arm-batch/src/operations/privateLinkResourceOperations.ts +++ b/sdk/batch/arm-batch/src/operations/privateLinkResourceOperations.ts @@ -1,26 +1,36 @@ /* - * Copyright (c) Microsoft Corporation. All rights reserved. - * Licensed under the MIT License. See License.txt in the project root for - * license information. + * 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. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. */ -import * as msRest from "@azure/ms-rest-js"; -import * as Models from "../models"; -import * as Mappers from "../models/privateLinkResourceOperationsMappers"; +import { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { PrivateLinkResourceOperations } from "../operationsInterfaces"; +import * as coreClient from "@azure/core-client"; +import * as Mappers from "../models/mappers"; import * as Parameters from "../models/parameters"; import { BatchManagementClientContext } from "../batchManagementClientContext"; +import { + PrivateLinkResource, + PrivateLinkResourceListByBatchAccountNextOptionalParams, + PrivateLinkResourceListByBatchAccountOptionalParams, + PrivateLinkResourceListByBatchAccountResponse, + PrivateLinkResourceGetOptionalParams, + PrivateLinkResourceGetResponse, + PrivateLinkResourceListByBatchAccountNextResponse +} from "../models"; -/** Class representing a PrivateLinkResourceOperations. */ -export class PrivateLinkResourceOperations { +/// +/** Class containing PrivateLinkResourceOperations operations. */ +export class PrivateLinkResourceOperationsImpl + implements PrivateLinkResourceOperations { private readonly client: BatchManagementClientContext; /** - * Create a PrivateLinkResourceOperations. - * @param {BatchManagementClientContext} client Reference to the service client. + * Initialize a new instance of the class PrivateLinkResourceOperations class. + * @param client Reference to the service client */ constructor(client: BatchManagementClientContext) { this.client = client; @@ -30,119 +40,136 @@ export class PrivateLinkResourceOperations { * Lists all of the private link resources in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param [options] The optional parameters - * @returns Promise + * @param options The options parameters. */ - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.PrivateLinkResourceListByBatchAccountOptionalParams): Promise; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param callback The callback - */ - listByBatchAccount(resourceGroupName: string, accountName: string, callback: msRest.ServiceCallback): void; - /** - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param options The optional parameters - * @param callback The callback - */ - listByBatchAccount(resourceGroupName: string, accountName: string, options: Models.PrivateLinkResourceListByBatchAccountOptionalParams, callback: msRest.ServiceCallback): void; - listByBatchAccount(resourceGroupName: string, accountName: string, options?: Models.PrivateLinkResourceListByBatchAccountOptionalParams | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { - return this.client.sendOperationRequest( - { + public listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PrivateLinkResourceListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator { + const iter = this.listByBatchAccountPagingAll( + resourceGroupName, + accountName, + options + ); + return { + next() { + return iter.next(); + }, + [Symbol.asyncIterator]() { + return this; + }, + byPage: () => { + return this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + ); + } + }; + } + + private async *listByBatchAccountPagingPage( + resourceGroupName: string, + accountName: string, + options?: PrivateLinkResourceListByBatchAccountOptionalParams + ): AsyncIterableIterator { + let result = await this._listByBatchAccount( + resourceGroupName, + accountName, + options + ); + yield result.value || []; + let continuationToken = result.nextLink; + while (continuationToken) { + result = await this._listByBatchAccountNext( resourceGroupName, accountName, + continuationToken, options - }, - listByBatchAccountOperationSpec, - callback) as Promise; + ); + continuationToken = result.nextLink; + yield result.value || []; + } + } + + private async *listByBatchAccountPagingAll( + resourceGroupName: string, + accountName: string, + options?: PrivateLinkResourceListByBatchAccountOptionalParams + ): AsyncIterableIterator { + for await (const page of this.listByBatchAccountPagingPage( + resourceGroupName, + accountName, + options + )) { + yield* page; + } } /** - * Gets information about the specified private link resource. - * @param resourceGroupName The name of the resource group that contains the Batch account. - * @param accountName The name of the Batch account. - * @param privateLinkResourceName The private link resource name. This must be unique within the - * account. - * @param [options] The optional parameters - * @returns Promise - */ - get(resourceGroupName: string, accountName: string, privateLinkResourceName: string, options?: msRest.RequestOptionsBase): Promise; - /** + * Lists all of the private link resources in the specified account. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. - * @param privateLinkResourceName The private link resource name. This must be unique within the - * account. - * @param callback The callback + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, privateLinkResourceName: string, callback: msRest.ServiceCallback): void; + private _listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PrivateLinkResourceListByBatchAccountOptionalParams + ): Promise { + return this.client.sendOperationRequest( + { resourceGroupName, accountName, options }, + listByBatchAccountOperationSpec + ); + } + /** + * Gets information about the specified private link resource. * @param resourceGroupName The name of the resource group that contains the Batch account. * @param accountName The name of the Batch account. * @param privateLinkResourceName The private link resource name. This must be unique within the - * account. - * @param options The optional parameters - * @param callback The callback + * account. + * @param options The options parameters. */ - get(resourceGroupName: string, accountName: string, privateLinkResourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - get(resourceGroupName: string, accountName: string, privateLinkResourceName: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + get( + resourceGroupName: string, + accountName: string, + privateLinkResourceName: string, + options?: PrivateLinkResourceGetOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - resourceGroupName, - accountName, - privateLinkResourceName, - options - }, - getOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, privateLinkResourceName, options }, + getOperationSpec + ); } /** - * Lists all of the private link resources in the specified account. - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param [options] The optional parameters - * @returns Promise - */ - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param callback The callback - */ - listByBatchAccountNext(nextPageLink: string, callback: msRest.ServiceCallback): void; - /** - * @param nextPageLink The NextLink from the previous successful call to List operation. - * @param options The optional parameters - * @param callback The callback + * ListByBatchAccountNext + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param nextLink The nextLink from the previous successful call to the ListByBatchAccount method. + * @param options The options parameters. */ - listByBatchAccountNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback): void; - listByBatchAccountNext(nextPageLink: string, options?: msRest.RequestOptionsBase | msRest.ServiceCallback, callback?: msRest.ServiceCallback): Promise { + private _listByBatchAccountNext( + resourceGroupName: string, + accountName: string, + nextLink: string, + options?: PrivateLinkResourceListByBatchAccountNextOptionalParams + ): Promise { return this.client.sendOperationRequest( - { - nextPageLink, - options - }, - listByBatchAccountNextOperationSpec, - callback) as Promise; + { resourceGroupName, accountName, nextLink, options }, + listByBatchAccountNextOperationSpec + ); } } - // Operation Specifications -const serializer = new msRest.Serializer(Mappers); -const listByBatchAccountOperationSpec: msRest.OperationSpec = { +const serializer = coreClient.createSerializer(Mappers, /* isXml */ false); + +const listByBatchAccountOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateLinkResources", httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateLinkResources", - urlParameters: [ - Parameters.subscriptionId, - Parameters.resourceGroupName, - Parameters.accountName1 - ], - queryParameters: [ - Parameters.apiVersion, - Parameters.maxresults - ], - headerParameters: [ - Parameters.acceptLanguage - ], responses: { 200: { bodyMapper: Mappers.ListPrivateLinkResourcesResult @@ -151,24 +178,20 @@ const listByBatchAccountOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, - serializer -}; - -const getOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateLinkResources/{privateLinkResourceName}", + queryParameters: [Parameters.apiVersion, Parameters.maxresults], urlParameters: [ - Parameters.subscriptionId, + Parameters.$host, Parameters.resourceGroupName, - Parameters.accountName1, - Parameters.privateLinkResourceName - ], - queryParameters: [ - Parameters.apiVersion - ], - headerParameters: [ - Parameters.acceptLanguage + Parameters.subscriptionId, + Parameters.accountName1 ], + headerParameters: [Parameters.accept], + serializer +}; +const getOperationSpec: coreClient.OperationSpec = { + path: + "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Batch/batchAccounts/{accountName}/privateLinkResources/{privateLinkResourceName}", + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.PrivateLinkResource @@ -177,19 +200,20 @@ const getOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.privateLinkResourceName + ], + headerParameters: [Parameters.accept], serializer }; - -const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { - httpMethod: "GET", - baseUrl: "https://management.azure.com", +const listByBatchAccountNextOperationSpec: coreClient.OperationSpec = { path: "{nextLink}", - urlParameters: [ - Parameters.nextPageLink - ], - headerParameters: [ - Parameters.acceptLanguage - ], + httpMethod: "GET", responses: { 200: { bodyMapper: Mappers.ListPrivateLinkResourcesResult @@ -198,5 +222,14 @@ const listByBatchAccountNextOperationSpec: msRest.OperationSpec = { bodyMapper: Mappers.CloudError } }, + queryParameters: [Parameters.apiVersion, Parameters.maxresults], + urlParameters: [ + Parameters.$host, + Parameters.resourceGroupName, + Parameters.subscriptionId, + Parameters.accountName1, + Parameters.nextLink + ], + headerParameters: [Parameters.accept], serializer }; diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/applicationOperations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/applicationOperations.ts new file mode 100644 index 000000000000..3f4ee2745ef6 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/applicationOperations.ts @@ -0,0 +1,90 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + Application, + ApplicationListOptionalParams, + ApplicationCreateOptionalParams, + ApplicationCreateResponse, + ApplicationDeleteOptionalParams, + ApplicationGetOptionalParams, + ApplicationGetResponse, + ApplicationUpdateOptionalParams, + ApplicationUpdateResponse +} from "../models"; + +/// +/** Interface representing a ApplicationOperations. */ +export interface ApplicationOperations { + /** + * Lists all of the applications in the specified account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + list( + resourceGroupName: string, + accountName: string, + options?: ApplicationListOptionalParams + ): PagedAsyncIterableIterator; + /** + * Adds an application to the specified Batch account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param options The options parameters. + */ + create( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationCreateOptionalParams + ): Promise; + /** + * Deletes an application. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param options The options parameters. + */ + delete( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationDeleteOptionalParams + ): Promise; + /** + * Gets information about the specified application. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationGetOptionalParams + ): Promise; + /** + * Updates settings for the specified application. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param parameters The parameters for the request. + * @param options The options parameters. + */ + update( + resourceGroupName: string, + accountName: string, + applicationName: string, + parameters: Application, + options?: ApplicationUpdateOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/applicationPackageOperations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/applicationPackageOperations.ts new file mode 100644 index 000000000000..4f2fea8c6fb8 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/applicationPackageOperations.ts @@ -0,0 +1,106 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + ApplicationPackage, + ApplicationPackageListOptionalParams, + ActivateApplicationPackageParameters, + ApplicationPackageActivateOptionalParams, + ApplicationPackageActivateResponse, + ApplicationPackageCreateOptionalParams, + ApplicationPackageCreateResponse, + ApplicationPackageDeleteOptionalParams, + ApplicationPackageGetOptionalParams, + ApplicationPackageGetResponse +} from "../models"; + +/// +/** Interface representing a ApplicationPackageOperations. */ +export interface ApplicationPackageOperations { + /** + * Lists all of the application packages in the specified application. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param options The options parameters. + */ + list( + resourceGroupName: string, + accountName: string, + applicationName: string, + options?: ApplicationPackageListOptionalParams + ): PagedAsyncIterableIterator; + /** + * Activates the specified application package. This should be done after the `ApplicationPackage` was + * created and uploaded. This needs to be done before an `ApplicationPackage` can be used on Pools or + * Tasks. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param versionName The version of the application. + * @param parameters The parameters for the request. + * @param options The options parameters. + */ + activate( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + parameters: ActivateApplicationPackageParameters, + options?: ApplicationPackageActivateOptionalParams + ): Promise; + /** + * Creates an application package record. The record contains a storageUrl where the package should be + * uploaded to. Once it is uploaded the `ApplicationPackage` needs to be activated using + * `ApplicationPackageActive` before it can be used. If the auto storage account was configured to use + * storage keys, the URL returned will contain a SAS. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param versionName The version of the application. + * @param options The options parameters. + */ + create( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + options?: ApplicationPackageCreateOptionalParams + ): Promise; + /** + * Deletes an application package record and its associated binary file. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param versionName The version of the application. + * @param options The options parameters. + */ + delete( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + options?: ApplicationPackageDeleteOptionalParams + ): Promise; + /** + * Gets information about the specified application package. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param applicationName The name of the application. This must be unique within the account. + * @param versionName The version of the application. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + accountName: string, + applicationName: string, + versionName: string, + options?: ApplicationPackageGetOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/batchAccountOperations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/batchAccountOperations.ts new file mode 100644 index 000000000000..a8c6d1f4ad2d --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/batchAccountOperations.ts @@ -0,0 +1,196 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { PollerLike, PollOperationState } from "@azure/core-lro"; +import { + BatchAccount, + BatchAccountListOptionalParams, + BatchAccountListByResourceGroupOptionalParams, + OutboundEnvironmentEndpoint, + BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams, + BatchAccountCreateParameters, + BatchAccountCreateOptionalParams, + BatchAccountCreateResponse, + BatchAccountUpdateParameters, + BatchAccountUpdateOptionalParams, + BatchAccountUpdateResponse, + BatchAccountDeleteOptionalParams, + BatchAccountGetOptionalParams, + BatchAccountGetResponse, + BatchAccountSynchronizeAutoStorageKeysOptionalParams, + BatchAccountRegenerateKeyParameters, + BatchAccountRegenerateKeyOptionalParams, + BatchAccountRegenerateKeyResponse, + BatchAccountGetKeysOptionalParams, + BatchAccountGetKeysResponse +} from "../models"; + +/// +/** Interface representing a BatchAccountOperations. */ +export interface BatchAccountOperations { + /** + * Gets information about the Batch accounts associated with the subscription. + * @param options The options parameters. + */ + list( + options?: BatchAccountListOptionalParams + ): PagedAsyncIterableIterator; + /** + * Gets information about the Batch accounts associated with the specified resource group. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param options The options parameters. + */ + listByResourceGroup( + resourceGroupName: string, + options?: BatchAccountListByResourceGroupOptionalParams + ): PagedAsyncIterableIterator; + /** + * Lists the endpoints that a Batch Compute Node under this Batch Account may call as part of Batch + * service administration. If you are deploying a Pool inside of a virtual network that you specify, + * you must make sure your network allows outbound access to these endpoints. Failure to allow access + * to these endpoints may cause Batch to mark the affected nodes as unusable. For more information + * about creating a pool inside of a virtual network, see + * https://docs.microsoft.com/en-us/azure/batch/batch-virtual-network. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + listOutboundNetworkDependenciesEndpoints( + resourceGroupName: string, + accountName: string, + options?: BatchAccountListOutboundNetworkDependenciesEndpointsOptionalParams + ): PagedAsyncIterableIterator; + /** + * Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with + * this API and should instead be updated with the Update Batch Account API. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName A name for the Batch account which must be unique within the region. Batch + * account names must be between 3 and 24 characters in length and must use only numbers and lowercase + * letters. This name is used as part of the DNS name that is used to access the Batch service in the + * region in which the account is created. For example: http://accountname.region.batch.azure.com/. + * @param parameters Additional parameters for account creation. + * @param options The options parameters. + */ + beginCreate( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountCreateParameters, + options?: BatchAccountCreateOptionalParams + ): Promise< + PollerLike< + PollOperationState, + BatchAccountCreateResponse + > + >; + /** + * Creates a new Batch account with the specified parameters. Existing accounts cannot be updated with + * this API and should instead be updated with the Update Batch Account API. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName A name for the Batch account which must be unique within the region. Batch + * account names must be between 3 and 24 characters in length and must use only numbers and lowercase + * letters. This name is used as part of the DNS name that is used to access the Batch service in the + * region in which the account is created. For example: http://accountname.region.batch.azure.com/. + * @param parameters Additional parameters for account creation. + * @param options The options parameters. + */ + beginCreateAndWait( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountCreateParameters, + options?: BatchAccountCreateOptionalParams + ): Promise; + /** + * Updates the properties of an existing Batch account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param parameters Additional parameters for account update. + * @param options The options parameters. + */ + update( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountUpdateParameters, + options?: BatchAccountUpdateOptionalParams + ): Promise; + /** + * Deletes the specified Batch account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + accountName: string, + options?: BatchAccountDeleteOptionalParams + ): Promise, void>>; + /** + * Deletes the specified Batch account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + accountName: string, + options?: BatchAccountDeleteOptionalParams + ): Promise; + /** + * Gets information about the specified Batch account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + accountName: string, + options?: BatchAccountGetOptionalParams + ): Promise; + /** + * Synchronizes access keys for the auto-storage account configured for the specified Batch account, + * only if storage key authentication is being used. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + synchronizeAutoStorageKeys( + resourceGroupName: string, + accountName: string, + options?: BatchAccountSynchronizeAutoStorageKeysOptionalParams + ): Promise; + /** + * This operation applies only to Batch accounts with allowedAuthenticationModes containing + * 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, + * clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes + * instead. In this case, regenerating the keys will fail. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param parameters The type of key to regenerate. + * @param options The options parameters. + */ + regenerateKey( + resourceGroupName: string, + accountName: string, + parameters: BatchAccountRegenerateKeyParameters, + options?: BatchAccountRegenerateKeyOptionalParams + ): Promise; + /** + * This operation applies only to Batch accounts with allowedAuthenticationModes containing + * 'SharedKey'. If the Batch account doesn't contain 'SharedKey' in its allowedAuthenticationMode, + * clients cannot use shared keys to authenticate, and must use another allowedAuthenticationModes + * instead. In this case, getting the keys will fail. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + getKeys( + resourceGroupName: string, + accountName: string, + options?: BatchAccountGetKeysOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/certificateOperations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/certificateOperations.ts new file mode 100644 index 000000000000..33ab4f829059 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/certificateOperations.ts @@ -0,0 +1,139 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { PollerLike, PollOperationState } from "@azure/core-lro"; +import { + Certificate, + CertificateListByBatchAccountOptionalParams, + CertificateCreateOrUpdateParameters, + CertificateCreateOptionalParams, + CertificateCreateResponse, + CertificateUpdateOptionalParams, + CertificateUpdateResponse, + CertificateDeleteOptionalParams, + CertificateGetOptionalParams, + CertificateGetResponse, + CertificateCancelDeletionOptionalParams, + CertificateCancelDeletionResponse +} from "../models"; + +/// +/** Interface representing a CertificateOperations. */ +export interface CertificateOperations { + /** + * Lists all of the certificates in the specified account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: CertificateListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator; + /** + * Creates a new certificate inside the specified account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param certificateName The identifier for the certificate. This must be made up of algorithm and + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param parameters Additional parameters for certificate creation. + * @param options The options parameters. + */ + create( + resourceGroupName: string, + accountName: string, + certificateName: string, + parameters: CertificateCreateOrUpdateParameters, + options?: CertificateCreateOptionalParams + ): Promise; + /** + * Updates the properties of an existing certificate. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param certificateName The identifier for the certificate. This must be made up of algorithm and + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param parameters Certificate entity to update. + * @param options The options parameters. + */ + update( + resourceGroupName: string, + accountName: string, + certificateName: string, + parameters: CertificateCreateOrUpdateParameters, + options?: CertificateUpdateOptionalParams + ): Promise; + /** + * Deletes the specified certificate. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param certificateName The identifier for the certificate. This must be made up of algorithm and + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateDeleteOptionalParams + ): Promise, void>>; + /** + * Deletes the specified certificate. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param certificateName The identifier for the certificate. This must be made up of algorithm and + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateDeleteOptionalParams + ): Promise; + /** + * Gets information about the specified certificate. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param certificateName The identifier for the certificate. This must be made up of algorithm and + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateGetOptionalParams + ): Promise; + /** + * If you try to delete a certificate that is being used by a pool or compute node, the status of the + * certificate changes to deleteFailed. If you decide that you want to continue using the certificate, + * you can use this operation to set the status of the certificate back to active. If you intend to + * delete the certificate, you do not need to run this operation after the deletion failed. You must + * make sure that the certificate is not being used by any resources, and then you can try again to + * delete the certificate. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param certificateName The identifier for the certificate. This must be made up of algorithm and + * thumbprint separated by a dash, and must match the certificate data in the request. For example + * SHA1-a3d1c5. + * @param options The options parameters. + */ + cancelDeletion( + resourceGroupName: string, + accountName: string, + certificateName: string, + options?: CertificateCancelDeletionOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/index.ts b/sdk/batch/arm-batch/src/operationsInterfaces/index.ts new file mode 100644 index 000000000000..95e600c1bcd8 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/index.ts @@ -0,0 +1,17 @@ +/* + * Copyright (c) Microsoft Corporation. + * Licensed under the MIT License. + * + * Code generated by Microsoft (R) AutoRest Code Generator. + * Changes may cause incorrect behavior and will be lost if the code is regenerated. + */ + +export * from "./batchAccountOperations"; +export * from "./applicationPackageOperations"; +export * from "./applicationOperations"; +export * from "./location"; +export * from "./operations"; +export * from "./certificateOperations"; +export * from "./privateLinkResourceOperations"; +export * from "./privateEndpointConnectionOperations"; +export * from "./poolOperations"; diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/location.ts b/sdk/batch/arm-batch/src/operationsInterfaces/location.ts new file mode 100644 index 000000000000..c7d73327a815 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/location.ts @@ -0,0 +1,62 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + SupportedSku, + LocationListSupportedVirtualMachineSkusOptionalParams, + LocationListSupportedCloudServiceSkusOptionalParams, + LocationGetQuotasOptionalParams, + LocationGetQuotasResponse, + CheckNameAvailabilityParameters, + LocationCheckNameAvailabilityOptionalParams, + LocationCheckNameAvailabilityResponse +} from "../models"; + +/// +/** Interface representing a Location. */ +export interface Location { + /** + * Gets the list of Batch supported Virtual Machine VM sizes available at the given location. + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param options The options parameters. + */ + listSupportedVirtualMachineSkus( + locationName: string, + options?: LocationListSupportedVirtualMachineSkusOptionalParams + ): PagedAsyncIterableIterator; + /** + * Gets the list of Batch supported Cloud Service VM sizes available at the given location. + * @param locationName The region for which to retrieve Batch service supported SKUs. + * @param options The options parameters. + */ + listSupportedCloudServiceSkus( + locationName: string, + options?: LocationListSupportedCloudServiceSkusOptionalParams + ): PagedAsyncIterableIterator; + /** + * Gets the Batch service quotas for the specified subscription at the given location. + * @param locationName The region for which to retrieve Batch service quotas. + * @param options The options parameters. + */ + getQuotas( + locationName: string, + options?: LocationGetQuotasOptionalParams + ): Promise; + /** + * Checks whether the Batch account name is available in the specified region. + * @param locationName The desired region for the name check. + * @param parameters Properties needed to check the availability of a name. + * @param options The options parameters. + */ + checkNameAvailability( + locationName: string, + parameters: CheckNameAvailabilityParameters, + options?: LocationCheckNameAvailabilityOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/operations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/operations.ts new file mode 100644 index 000000000000..f80e7aeb4620 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/operations.ts @@ -0,0 +1,22 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { Operation, OperationsListOptionalParams } from "../models"; + +/// +/** Interface representing a Operations. */ +export interface Operations { + /** + * Lists available operations for the Microsoft.Batch provider + * @param options The options parameters. + */ + list( + options?: OperationsListOptionalParams + ): PagedAsyncIterableIterator; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/poolOperations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/poolOperations.ts new file mode 100644 index 000000000000..ed2bfa759623 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/poolOperations.ts @@ -0,0 +1,142 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { PollerLike, PollOperationState } from "@azure/core-lro"; +import { + Pool, + PoolListByBatchAccountOptionalParams, + PoolCreateOptionalParams, + PoolCreateResponse, + PoolUpdateOptionalParams, + PoolUpdateResponse, + PoolDeleteOptionalParams, + PoolGetOptionalParams, + PoolGetResponse, + PoolDisableAutoScaleOptionalParams, + PoolDisableAutoScaleResponse, + PoolStopResizeOptionalParams, + PoolStopResizeResponse +} from "../models"; + +/// +/** Interface representing a PoolOperations. */ +export interface PoolOperations { + /** + * Lists all of the pools in the specified account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PoolListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator; + /** + * Creates a new pool inside the specified account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param poolName The pool name. This must be unique within the account. + * @param parameters Additional parameters for pool creation. + * @param options The options parameters. + */ + create( + resourceGroupName: string, + accountName: string, + poolName: string, + parameters: Pool, + options?: PoolCreateOptionalParams + ): Promise; + /** + * Updates the properties of an existing pool. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param poolName The pool name. This must be unique within the account. + * @param parameters Pool properties that should be updated. Properties that are supplied will be + * updated, any property not supplied will be unchanged. + * @param options The options parameters. + */ + update( + resourceGroupName: string, + accountName: string, + poolName: string, + parameters: Pool, + options?: PoolUpdateOptionalParams + ): Promise; + /** + * Deletes the specified pool. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param poolName The pool name. This must be unique within the account. + * @param options The options parameters. + */ + beginDelete( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolDeleteOptionalParams + ): Promise, void>>; + /** + * Deletes the specified pool. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param poolName The pool name. This must be unique within the account. + * @param options The options parameters. + */ + beginDeleteAndWait( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolDeleteOptionalParams + ): Promise; + /** + * Gets information about the specified pool. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param poolName The pool name. This must be unique within the account. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolGetOptionalParams + ): Promise; + /** + * Disables automatic scaling for a pool. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param poolName The pool name. This must be unique within the account. + * @param options The options parameters. + */ + disableAutoScale( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolDisableAutoScaleOptionalParams + ): Promise; + /** + * This does not restore the pool to its previous state before the resize operation: it only stops any + * further changes being made, and the pool maintains its current state. After stopping, the pool + * stabilizes at the number of nodes it was at when the stop operation was done. During the stop + * operation, the pool allocation state changes first to stopping and then to steady. A resize + * operation need not be an explicit resize pool request; this API can also be used to halt the initial + * sizing of the pool when it is created. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param poolName The pool name. This must be unique within the account. + * @param options The options parameters. + */ + stopResize( + resourceGroupName: string, + accountName: string, + poolName: string, + options?: PoolStopResizeOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/privateEndpointConnectionOperations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/privateEndpointConnectionOperations.ts new file mode 100644 index 000000000000..0943dceccc88 --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/privateEndpointConnectionOperations.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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { PollerLike, PollOperationState } from "@azure/core-lro"; +import { + PrivateEndpointConnection, + PrivateEndpointConnectionListByBatchAccountOptionalParams, + PrivateEndpointConnectionGetOptionalParams, + PrivateEndpointConnectionGetResponse, + PrivateEndpointConnectionUpdateOptionalParams, + PrivateEndpointConnectionUpdateResponse +} from "../models"; + +/// +/** Interface representing a PrivateEndpointConnectionOperations. */ +export interface PrivateEndpointConnectionOperations { + /** + * Lists all of the private endpoint connections in the specified account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PrivateEndpointConnectionListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator; + /** + * Gets information about the specified private endpoint connection. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param privateEndpointConnectionName The private endpoint connection name. This must be unique + * within the account. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + accountName: string, + privateEndpointConnectionName: string, + options?: PrivateEndpointConnectionGetOptionalParams + ): Promise; + /** + * Updates the properties of an existing private endpoint connection. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param privateEndpointConnectionName The private endpoint connection name. This must be unique + * within the account. + * @param parameters PrivateEndpointConnection properties that should be updated. Properties that are + * supplied will be updated, any property not supplied will be unchanged. + * @param options The options parameters. + */ + beginUpdate( + resourceGroupName: string, + accountName: string, + privateEndpointConnectionName: string, + parameters: PrivateEndpointConnection, + options?: PrivateEndpointConnectionUpdateOptionalParams + ): Promise< + PollerLike< + PollOperationState, + PrivateEndpointConnectionUpdateResponse + > + >; + /** + * Updates the properties of an existing private endpoint connection. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param privateEndpointConnectionName The private endpoint connection name. This must be unique + * within the account. + * @param parameters PrivateEndpointConnection properties that should be updated. Properties that are + * supplied will be updated, any property not supplied will be unchanged. + * @param options The options parameters. + */ + beginUpdateAndWait( + resourceGroupName: string, + accountName: string, + privateEndpointConnectionName: string, + parameters: PrivateEndpointConnection, + options?: PrivateEndpointConnectionUpdateOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/src/operationsInterfaces/privateLinkResourceOperations.ts b/sdk/batch/arm-batch/src/operationsInterfaces/privateLinkResourceOperations.ts new file mode 100644 index 000000000000..2c921d998b7e --- /dev/null +++ b/sdk/batch/arm-batch/src/operationsInterfaces/privateLinkResourceOperations.ts @@ -0,0 +1,45 @@ +/* + * 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 { PagedAsyncIterableIterator } from "@azure/core-paging"; +import { + PrivateLinkResource, + PrivateLinkResourceListByBatchAccountOptionalParams, + PrivateLinkResourceGetOptionalParams, + PrivateLinkResourceGetResponse +} from "../models"; + +/// +/** Interface representing a PrivateLinkResourceOperations. */ +export interface PrivateLinkResourceOperations { + /** + * Lists all of the private link resources in the specified account. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param options The options parameters. + */ + listByBatchAccount( + resourceGroupName: string, + accountName: string, + options?: PrivateLinkResourceListByBatchAccountOptionalParams + ): PagedAsyncIterableIterator; + /** + * Gets information about the specified private link resource. + * @param resourceGroupName The name of the resource group that contains the Batch account. + * @param accountName The name of the Batch account. + * @param privateLinkResourceName The private link resource name. This must be unique within the + * account. + * @param options The options parameters. + */ + get( + resourceGroupName: string, + accountName: string, + privateLinkResourceName: string, + options?: PrivateLinkResourceGetOptionalParams + ): Promise; +} diff --git a/sdk/batch/arm-batch/test/batchManagementClient.spec.ts b/sdk/batch/arm-batch/test/batchManagementClient.spec.ts deleted file mode 100644 index 974f8dd717bd..000000000000 --- a/sdk/batch/arm-batch/test/batchManagementClient.spec.ts +++ /dev/null @@ -1,576 +0,0 @@ -/* eslint-disable @typescript-eslint/no-non-null-assertion */ -import { BatchManagementClient, BatchManagementModels } from "../src/batchManagementClient"; -import { describe, beforeEach } from "mocha"; -import { assert } from "chai"; -import * as dotenv from "dotenv"; -import * as util from "util"; -import * as fs from "fs"; -import { AuthenticationContext } from "adal-node"; -import { TokenCredentials, RestError, ServiceClient, WebResource } from "@azure/ms-rest-js"; -import { CertificateCreateOrUpdateParameters } from "../src/models"; - -dotenv.config(); - -describe("Batch Management Service", () => { - let client: BatchManagementClient; - let subscriptionId: string; - let clientId: string; - let secret: string; - let tenant: string; - let location: string; - let autoStorage: string; - let batchAccount: string; - let groupName: string; - - async function getAppOnlyToken(clientId, secret) { - const authContext = new AuthenticationContext( - "https://login.microsoftonline.com/microsoft.onmicrosoft.com" - ); - return new Promise((resolve, reject) => { - authContext.acquireTokenWithClientCredentials( - "https://management.core.windows.net/", - clientId, - secret, - (err, token) => { - if (err) { - reject(err); - } else { - resolve(token.accessToken); - } - } - ); - }); - } - - beforeEach(async () => { - subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"]!; - location = process.env["AZURE_TEST_LOCATION"]!; - autoStorage = process.env["AZURE_AUTOSTORAGE"]!; - batchAccount = "batchtestnodesdk"; - groupName = util.format("default-azurebatch-%s", location); - clientId = process.env["AZURE_CLIENT_ID"]; - secret = process.env["AZURE_CLIENT_SECRET"]; - tenant = process.env["AZURE_TENANT_ID"]; - - const token = await getAppOnlyToken(clientId, secret); - const tokenCreds = new TokenCredentials(token, "Bearer"); - client = new BatchManagementClient(tokenCreds, subscriptionId); - }); - - describe("operations", () => { - it("should list Batch operations successfully", async () => { - const result = await client.operations.list(); - assert.isNotNull(result); - assert.isAtLeast(result.length, 50); - assert.equal( - result[0].name, - "Microsoft.Batch/batchAccounts/providers/Microsoft.Insights/diagnosticSettings/read" - ); - assert.equal(result[0].origin, "system"); - assert.equal(result[0].display.provider, "Microsoft Batch"); - assert.equal(result[0].display.operation, "Read diagnostic setting"); - }); - - it("should get subscription quota successfully", async () => { - const result = await client.location.getQuotas(location); - assert.exists(result); - assert.equal(result.accountQuota, 1); - }); - - it("should check name available successfully", async () => { - let name = "randombatch8374652387"; - const result = await client.location.checkNameAvailability(location, name); - assert.exists(result); - assert.isTrue(result.nameAvailable); - }); - - it("should create a batch account successfully", async () => { - var resource = util.format( - "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Storage/storageAccounts/%s", - subscriptionId, - groupName, - autoStorage - ); - var params = { location: location, autoStorage: { storageAccountId: resource } }; - const result = await client.batchAccount.create(groupName, batchAccount, params); - assert.exists(result); - assert.equal(result.location, location); - assert.equal(result.poolQuota, 100); - assert.equal(result.dedicatedCoreQuota, 700); - assert.equal(result.lowPriorityCoreQuota, 500); - }); - - it("should add application successfully", async () => { - var params = { allowUpdates: true, displayName: "my_application_name" }; - var options = { parameters: params }; - const result = await client.application.create( - groupName, - batchAccount, - "my_application_id", - options - ); - assert.exists(result); - assert.equal(result.name, "my_application_id"); - }); - - it("should get application successfully", async () => { - const result = await client.application.get(groupName, batchAccount, "my_application_id"); - assert.exists(result); - assert.equal(result.name, "my_application_id"); - assert.equal(result.displayName, "my_application_name"); - }); - - it("should get a list of applications successfully", async () => { - const result = await client.application.list(groupName, batchAccount); - assert.exists(result); - assert.isAtLeast(result.length, 1); - }); - - it("should add application package successfully", async () => { - const result = await client.applicationPackage.create( - groupName, - batchAccount, - "my_application_id", - "v1.0" - ); - assert.exists(result); - assert.equal(result._response.status, 200); - assert.equal(result.name, "v1.0"); - console.log(result); - console.log(__dirname); - fs.writeFileSync(__dirname + "/test_package.zip", "Hey there!"); - var fileContent = fs.createReadStream(__dirname + "/test_package.zip"); - var httpRequest = new WebResource(); - var serviceClient = new ServiceClient(); - httpRequest.method = "PUT"; - httpRequest.headers = {}; - httpRequest.headers["x-ms-blob-type"] = "BlockBlob"; - httpRequest.headers["Content-Length"] = "10"; - httpRequest.url = result.storageUrl; - httpRequest.body = fileContent; - httpRequest.streamedResponse = true; - var upload = serviceClient.sendRequest(httpRequest, function(err, response) { - assert.exists(response); - assert.equal(response.statusCode, 201); - }); - }); - - it("should add second application package successfully", async () => { - const result = await client.applicationPackage.create( - groupName, - batchAccount, - "my_application_id", - "v2.0" - ); - assert.exists(result); - assert.equal(result._response.status, 200); - }); - - it("should list application packages successfully", async () => { - const result = await client.applicationPackage.list( - groupName, - batchAccount, - "my_application_id" - ); - assert.isAtLeast(result.length, 1); - }); - - it("should activate application package successfully", async () => { - const result = await client.applicationPackage.activate( - groupName, - batchAccount, - "my_application_id", - "v1.0", - "zip" - ); - assert.exists(result); - assert.equal(result._response.status, 200); - }); - - it("should fail to activate application package", async () => { - try { - await client.applicationPackage.activate( - groupName, - batchAccount, - "my_application_id", - "v2.0", - "zip" - ); - assert.fail("No error thrown"); - } catch (err) { - if (err instanceof RestError) { - assert.equal(err.response.status, 409); - assert.equal(err.body.code, "ApplicationPackageBlobNotFound"); - } else { - assert.fail(`Caught error but wasn't a RestError: ${err}`); - } - } - }); - - it("should fail to update application", async () => { - var params = { allowUpdates: false, displayName: "my_updated_name", defaultVersion: "v2.0" }; - try { - await client.application.update(groupName, batchAccount, "my_application_id", params); - assert.fail("No error thrown"); - } catch (err) { - if (err instanceof RestError) { - assert.equal(err.response.status, 409); - assert.equal(err.body.code, "RequestedDefaultVersionNotActive"); - } else { - assert.fail(`Caught error but wasn't a RestError: ${err}`); - } - } - }); - - it("should update application successfully", async () => { - var params = { allowUpdates: false, displayName: "my_updated_name", defaultVersion: "v1.0" }; - const result = await client.application.update( - groupName, - batchAccount, - "my_application_id", - params - ); - assert.equal(result._response.status, 200); - }); - - it("should get application package successfully", async () => { - const result = await client.applicationPackage.get( - groupName, - batchAccount, - "my_application_id", - "v1.0" - ); - assert.exists(result); - assert.equal(result._response.status, 200); - }); - - it("should delete application package successfully", async () => { - const result = await client.applicationPackage.deleteMethod( - groupName, - batchAccount, - "my_application_id", - "v1.0" - ); - assert.equal(result._response.status, 200); - }); - - it("should fail to delete application", async () => { - try { - await client.application.deleteMethod(groupName, batchAccount, "my_application_id"); - assert.fail("No error thrown"); - } catch (err) { - if (err instanceof RestError) { - assert.equal(err.response.status, 409); - assert.equal(err.body.code, "ApplicationPackagesNotEmpty"); - } else { - assert.fail(`Caught error but wasn't a RestError: ${err}`); - } - } - }); - - it("should delete second application package successfully", async () => { - const result = await client.applicationPackage.deleteMethod( - groupName, - batchAccount, - "my_application_id", - "v2.0" - ); - assert.equal(result._response.status, 200); - }); - - it("should delete application successfully", async () => { - const result = await client.application.deleteMethod( - groupName, - batchAccount, - "my_application_id" - ); - assert.equal(result._response.status, 200); - }); - - it("should fail to create a batch account due to dupilcate location", async () => { - var params = { location: location }; - try { - await client.batchAccount.create(groupName, "batchtestnodesdk2", params); - assert.fail("No error thrown"); - } catch (err) { - console.log(err); - } - //This fails after the initial create request - so error isn't surfaced. - }); - - it("should fail to create a batch account due to invalid resource group", async () => { - var params = { location: location }; - try { - await client.batchAccount.create("does-not-exist", batchAccount, params); - assert.fail("No error thrown"); - } catch (err) { - if (err instanceof RestError) { - assert.equal(err.response.status, 404); - assert.equal(err.body.code, "ResourceGroupNotFound"); - } else { - assert.fail(`Caught error but wasn't a RestError: ${err}`); - } - } - //This fails on the initial create request - so we can check the error. - }); - - it("should get a specific account info successfully", async () => { - const result = await client.batchAccount.get(groupName, batchAccount); - assert.exists(result); - assert.equal(result.name, batchAccount); - assert.equal(result.location, location); - assert.equal(result._response.status, 200); - }); - - it("should list accounts successfully", async () => { - const result = await client.batchAccount.list(); - assert.exists(result); - assert.isAtLeast(result.length, 1); - var sorted = result.sort(function(a, b) { - if (a.name < b.name) { - return -1; - } - return 1; - }); - assert.equal(sorted[0].name, batchAccount); - assert.equal(sorted[0].location, location); - }); - - it("should list accounts by resource group successfully", async () => { - const result = await client.batchAccount.listByResourceGroup(groupName); - assert.exists(result); - assert.isAtLeast(result.length, 1); - assert.equal(result[0].name, batchAccount); - assert.equal(result[0].location, location); - }); - - it("should get account keys successfully", async () => { - const result = await client.batchAccount.getKeys(groupName, batchAccount); - assert.exists(result); - assert.exists(result.accountName); - assert.exists(result.primary); - assert.exists(result.secondary); - }); - - it("should regenerate keys successfully", async () => { - const result = await client.batchAccount.regenerateKey(groupName, batchAccount, "Primary"); - assert.exists(result); - assert.exists(result.primary); - assert.exists(result.secondary); - }); - - it("should sync auto storage keys successfully", async () => { - const result = await client.batchAccount.synchronizeAutoStorageKeys(groupName, batchAccount); - assert.equal(result._response.status, 204); - }); - - it("should update account successfully", async () => { - var tags = { tags: { Name: "tagName", Value: "tagValue" } }; - const result = await client.batchAccount.update(groupName, batchAccount, tags); - assert.exists(result); - assert.equal(result.tags.Name, "tagName"); - assert.equal(result.tags.Value, "tagValue"); - }); - - it("should add certificate successfully", async () => { - var certificate = "SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; - var parameters: CertificateCreateOrUpdateParameters = { - thumbprint: "cff2ab63c8c955aaf71989efa641b906558d9fb7", - thumbprintAlgorithm: "sha1", - data: - "MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=", - format: "Pfx", - password: "nodesdk" - }; - const result = await client.certificate.create( - groupName, - batchAccount, - certificate, - parameters - ); - assert.exists(result); - assert.equal(result.name, "sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7"); - }); - - it("should list certificates successfully", async () => { - const result = await client.certificate.listByBatchAccount(groupName, batchAccount); - assert.exists(result); - assert.equal(result.length, 1); - }); - - it("should get certificate successfully", async () => { - var certificate = "SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; - const result = await client.certificate.get(groupName, batchAccount, certificate); - assert.exists(result); - assert.equal(result.name, "sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7"); - assert.equal(result.thumbprintAlgorithm, "sha1"); - assert.equal(result.thumbprint, "cff2ab63c8c955aaf71989efa641b906558d9fb7"); - }); - - it("should update certificate successfully", async () => { - var certificate = "SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; - var parameters: CertificateCreateOrUpdateParameters = { - password: "nodesdk", - data: - "MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=" - }; - const result = await client.certificate.update( - groupName, - batchAccount, - certificate, - parameters - ); - assert.exists(result); - assert.equal(result.name, "sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7"); - }); - - it("shoud delete certificate successfully", async () => { - var certificate = "SHA1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; - const result = await client.certificate.deleteMethod(groupName, batchAccount, certificate); - }); - - it("should create a paas pool successfully", async () => { - var paas_pool = "test_paas_pool"; - var parameters = { - displayName: "test_pool", - vmSize: "small", - deploymentConfiguration: { - cloudServiceConfiguration: { - osFamily: "5" - } - }, - startTask: { - commandLine: 'cmd.exe /c "echo hello world"', - resourceFiles: [{ httpUrl: "https://blobsource.com", filePath: "filename.txt" }], - environmentSettings: [{ name: "ENV_VAR", value: "foo" }], - userIdentity: { - autoUser: { - elevationLevel: "admin" - } - } - }, - userAccounts: [{ name: "UserName", password: "p@55wOrd" }], - scaleSettings: { - fixedScale: { - targetDedicatedNodes: 0, - targetLowPriorityNodes: 0 - } - } - }; - const result = await client.pool.create(groupName, batchAccount, paas_pool, parameters); - assert.exists(result); - assert.equal(result.name, paas_pool); - }); - - it("should create a iaas pool successfully", async () => { - var iaas_pool = "test_iaas_pool"; - var parameters = { - displayName: "test_pool", - vmSize: "Standard_A1", - deploymentConfiguration: { - virtualMachineConfiguration: { - imageReference: { - publisher: "MicrosoftWindowsServer", - offer: "WindowsServer", - sku: "2016-Datacenter-smalldisk" - }, - nodeAgentSkuId: "batch.node.windows amd64", - windowsConfiguration: { enableAutomaticUpdates: true } - } - }, - scaleSettings: { - fixedScale: { - targetDedicatedNodes: 0, - targetLowPriorityNodes: 0 - } - } - }; - const result = await client.pool.create(groupName, batchAccount, iaas_pool, parameters); - assert.exists(result); - assert.equal(result.name, iaas_pool); - }); - - it("should list pools successfully", async () => { - const result = await client.pool.listByBatchAccount(groupName, batchAccount); - assert.exists(result); - assert.equal(result.length, 2); - }); - - it("should update pool successfully", async () => { - var iaas_pool = "test_iaas_pool"; - var parameters = { - autoScale: { - formula: "$TargetDedicatedNodes=1" - } - }; - const result = await client.pool.update(groupName, batchAccount, iaas_pool, parameters); - assert.exists(result); - assert.equal(result.name, iaas_pool); - }); - - it("should get pool successfully", async () => { - var iaas_pool = "test_iaas_pool"; - const result = await client.pool.get(groupName, batchAccount, iaas_pool); - assert.exists(result); - assert.equal(result.name, iaas_pool); - assert.equal(result.vmSize, "STANDARD_A1"); - }); - - it("should delete pool successfully", async () => { - var iaas_pool = "test_iaas_pool"; - await client.pool.deleteMethod(groupName, batchAccount, iaas_pool); - var paas_pool = "test_paas_pool"; - await client.pool.deleteMethod(groupName, batchAccount, paas_pool); - }); - - it("should delete a batch account successfully", async () => { - const result = await client.batchAccount.deleteMethod(groupName, batchAccount); - }); - - it("should fail to create a BYOS account with bad KeyVault properties", async () => { - var byosAccountName = "batchtestnodesdkbyos"; - var allocationMode = "UserSubscription"; - - // Omit keyVaultReference - var params = { - location: location, - poolAllocationMode: allocationMode - }; - - try { - await client.batchAccount.create(groupName, byosAccountName, params); - assert.fail("No error thrown"); - } catch (err) { - if (err instanceof RestError) { - assert.equal(err.response.status, 400); - assert.equal(err.body.code, "InvalidRequestBody"); - } else { - assert.fail(`Caught error but wasn't a RestError: ${err}`); - } - } - - // Use malformed key vault parameter values - var params1 = { - location: location, - poolAllocationMode: allocationMode, - keyVaultReference: { - id: "abc", - url: "def" - } - }; - - try { - await client.batchAccount.create(groupName, byosAccountName, params1); - assert.fail("No error thrown"); - } catch (err) { - console.log(err); - if (err instanceof RestError) { - assert.equal(err.response.status, 400); - assert.equal(err.body.code, "LinkedInvalidPropertyId"); - } else { - assert.fail(`Caught error but wasn't a RestError: ${err}`); - } - } - }); - }); -}); diff --git a/sdk/batch/arm-batch/test/sample.env b/sdk/batch/arm-batch/test/sample.env deleted file mode 100644 index d5472d5d1ed2..000000000000 --- a/sdk/batch/arm-batch/test/sample.env +++ /dev/null @@ -1,15 +0,0 @@ -# First create a Service Principal for the subscription you wish to test against. -# Follow the instructions here on creating a Service Principal using the Azure CLI: -# https://github.com/Azure/azure-sdk-for-node/blob/master/Documentation/Authentication.md -AZURE_SUBSCRIPTION_ID= -AZURE_CLIENT_ID= -AZURE_CLIENT_SECRET= -AZURE_TENANT_ID= -# The tests are configured by default to run with in japaneast, using a resource group of -# 'default-azurebatch-japaneast'. To change this location set: -AZURE_TEST_LOCATION="japaneast" -# The tests require a storage account to be configured. Using the CLI: -# >> az storage account create -n -l -g --sku Standard_LRS -# The tests have been configured against nodesdkteststorage. If you have set up -# a different name, then set this var: -AZURE_AUTOSTORAGE="nodesdkteststorage" \ No newline at end of file diff --git a/sdk/batch/arm-batch/test/sampleTest.ts b/sdk/batch/arm-batch/test/sampleTest.ts new file mode 100644 index 000000000000..429eb13c0443 --- /dev/null +++ b/sdk/batch/arm-batch/test/sampleTest.ts @@ -0,0 +1,331 @@ +/* + * 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, + delay, + isPlaybackMode +} from "@azure-tools/test-recorder"; +import * as assert from "assert"; +import { ClientSecretCredential } from "@azure/identity"; +import { BatchManagementClient } from "../src/batchManagementClient"; +import { StorageManagementClient,StorageAccountCreateParameters } from "@azure/arm-storage"; + +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: [] +}; + +export const testPollingOptions = { + updateIntervalInMs: isPlaybackMode() ? 0 : undefined, +}; + +describe("Batch test", () => { + let recorder: Recorder; + let subscriptionId: string; + let client: BatchManagementClient; + let storage_client: StorageManagementClient; + let location: string; + let resourceGroup: string; + let accountName: string; + let applicationName: string; + let storageaccountName: string; + let certificateName: string; + let poolName: 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 BatchManagementClient(credential, subscriptionId); + storage_client = new StorageManagementClient(credential, subscriptionId); + location = "eastus"; + resourceGroup = "myjstest"; + accountName = "myaccountxxx"; + applicationName = "myapplicationxxx"; + storageaccountName = "mystorageaccountxxx"; + certificateName = "sha1-cff2ab63c8c955aaf71989efa641b906558d9fb7"; + poolName = "mypoolxxx"; + }); + + afterEach(async function() { + await recorder.stop(); + }); + + async function storageAccounts_beginCreateAndWait() { + const parameter: StorageAccountCreateParameters = { + sku: { + name: "Standard_GRS", + }, + kind: "StorageV2", + location: "westeurope", + encryption: { + services: { + file: { + keyType: "Account", + enabled: true + }, + blob: { + keyType: "Account", + enabled: true + }, + }, + keySource: "Microsoft.Storage", + }, + tags: { + key1: "value1", + key2: "value2", + } + } + const res = await storage_client.storageAccounts.beginCreateAndWait(resourceGroup,storageaccountName,parameter,testPollingOptions); + }; + + it("batchAccountOperations create test", async function() { + // await storageAccounts_beginCreateAndWait(); + const res = await client.batchAccountOperations.beginCreateAndWait(resourceGroup,accountName,{ + location: location, + autoStorage: { + storageAccountId: "/subscriptions/"+subscriptionId+"/resourceGroups/"+resourceGroup+"/providers/Microsoft.Storage/storageAccounts/"+storageaccountName + } + },testPollingOptions); + assert.equal(res.name,accountName); + }); + + it("batchAccountOperations get test", async function() { + const res = await client.batchAccountOperations.get(resourceGroup,accountName); + assert.equal(res.name,accountName); + }); + + it("batchAccountOperations getkeys test", async function() { + const res = await client.batchAccountOperations.getKeys(resourceGroup,accountName); + assert.equal(res.accountName,accountName); + }); + + it("batchAccountOperations regenerateKey test", async function() { + const res = await client.batchAccountOperations.regenerateKey(resourceGroup,accountName,{keyName: "Primary"}); + assert.equal(res.accountName,accountName); + }); + + it("batchAccountOperations list test", async function() { + const resArray = new Array(); + for await (let item of client.batchAccountOperations.list()){ + resArray.push(item); + } + assert.equal(resArray.length,1); + }); + + it("batchAccountOperations update test", async function() { + const res = await client.batchAccountOperations.update(resourceGroup,accountName,{tags: {key1: "value1"}}); + assert.equal(res.type,"Microsoft.Batch/batchAccounts"); + }); + + it("applicationOperations create test", async function() { + const res = await client.applicationOperations.create(resourceGroup,accountName,applicationName,{parameters: {allowUpdates: false}}); + assert.equal(res.name,applicationName); + }); + + it("applicationOperations get test", async function() { + const res = await client.applicationOperations.get(resourceGroup,accountName,applicationName); + assert.equal(res.name,applicationName); + }); + + it("applicationOperations list test", async function() { + const resArray = new Array(); + for await (let item of client.applicationOperations.list(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,1); + }); + + it("certificateOperations create test", async function() { + const res = await client.certificateOperations.create(resourceGroup,accountName,certificateName,{ + thumbprint:'cff2ab63c8c955aaf71989efa641b906558d9fb7', + thumbprintAlgorithm:'sha1', + data:'MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=', + format: "Pfx", + password: "nodesdk" + }); + assert.equal(res.name,certificateName); + }); + + it("certificateOperations get test", async function() { + const res = await client.certificateOperations.get(resourceGroup,accountName,certificateName); + assert.equal(res.name,certificateName); + }); + + it("certificateOperations list test", async function() { + const resArray = new Array(); + for await (let item of client.certificateOperations.listByBatchAccount(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,1); + }); + + it("certificateOperations update test", async function() { + const res = await client.certificateOperations.update(resourceGroup,accountName,certificateName,{ + data:'MIIGMQIBAzCCBe0GCSqGSIb3DQEHAaCCBd4EggXaMIIF1jCCA8AGCSqGSIb3DQEHAaCCA7EEggOtMIIDqTCCA6UGCyqGSIb3DQEMCgECoIICtjCCArIwHAYKKoZIhvcNAQwBAzAOBAhyd3xCtln3iQICB9AEggKQhe5P10V9iV1BsDlwWT561Yu2hVq3JT8ae/ebx1ZR/gMApVereDKkS9Zg4vFyssusHebbK5pDpU8vfAqle0TM4m7wGsRj453ZorSPUfMpHvQnAOn+2pEpWdMThU7xvZ6DVpwhDOQk9166z+KnKdHGuJKh4haMT7Rw/6xZ1rsBt2423cwTrQVMQyACrEkianpuujubKltN99qRoFAxhQcnYE2KlYKw7lRcExq6mDSYAyk5xJZ1ZFdLj6MAryZroQit/0g5eyhoNEKwWbi8px5j71pRTf7yjN+deMGQKwbGl+3OgaL1UZ5fCjypbVL60kpIBxLZwIJ7p3jJ+q9pbq9zSdzshPYor5lxyUfXqaso/0/91ayNoBzg4hQGh618PhFI6RMGjwkzhB9xk74iweJ9HQyIHf8yx2RCSI22JuCMitPMWSGvOszhbNx3AEDLuiiAOHg391mprEtKZguOIr9LrJwem/YmcHbwyz5YAbZmiseKPkllfC7dafFfCFEkj6R2oegIsZo0pEKYisAXBqT0g+6/jGwuhlZcBo0f7UIZm88iA3MrJCjlXEgV5OcQdoWj+hq0lKEdnhtCKr03AIfukN6+4vjjarZeW1bs0swq0l3XFf5RHa11otshMS4mpewshB9iO9MuKWpRxuxeng4PlKZ/zuBqmPeUrjJ9454oK35Pq+dghfemt7AUpBH/KycDNIZgfdEWUZrRKBGnc519C+RTqxyt5hWL18nJk4LvSd3QKlJ1iyJxClhhb/NWEzPqNdyA5cxen+2T9bd/EqJ2KzRv5/BPVwTQkHH9W/TZElFyvFfOFIW2+03RKbVGw72Mr/0xKZ+awAnEfoU+SL/2Gj2m6PHkqFX2sOCi/tN9EA4xgdswEwYJKoZIhvcNAQkVMQYEBAEAAAAwXQYJKwYBBAGCNxEBMVAeTgBNAGkAYwByAG8AcwBvAGYAdAAgAFMAdAByAG8AbgBnACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjBlBgkqhkiG9w0BCRQxWB5WAFAAdgBrAFQAbQBwADoANABjAGUANgAwADQAZABhAC0AMAA2ADgAMQAtADQANAAxADUALQBhADIAYwBhAC0ANQA3ADcAMwAwADgAZQA2AGQAOQBhAGMwggIOBgkqhkiG9w0BBwGgggH/BIIB+zCCAfcwggHzBgsqhkiG9w0BDAoBA6CCAcswggHHBgoqhkiG9w0BCRYBoIIBtwSCAbMwggGvMIIBXaADAgECAhAdka3aTQsIsUphgIXGUmeRMAkGBSsOAwIdBQAwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3kwHhcNMTYwMTAxMDcwMDAwWhcNMTgwMTAxMDcwMDAwWjASMRAwDgYDVQQDEwdub2Rlc2RrMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC5fhcxbJHxxBEIDzVOMc56s04U6k4GPY7yMR1m+rBGVRiAyV4RjY6U936dqXHCVD36ps2Q0Z+OeEgyCInkIyVeB1EwXcToOcyeS2YcUb0vRWZDouC3tuFdHwiK1Ed5iW/LksmXDotyV7kpqzaPhOFiMtBuMEwNJcPge9k17hRgRQIDAQABo0swSTBHBgNVHQEEQDA+gBAS5AktBh0dTwCNYSHcFmRjoRgwFjEUMBIGA1UEAxMLUm9vdCBBZ2VuY3mCEAY3bACqAGSKEc+41KpcNfQwCQYFKw4DAh0FAANBAHl2M97QbpzdnwO5HoRBsiEExOcLTNg+GKCr7HUsbzfvrUivw+JLL7qjHAIc5phnK+F5bQ8HKe0L9YXBSKl+fvwxFTATBgkqhkiG9w0BCRUxBgQEAQAAADA7MB8wBwYFKw4DAhoEFGVtyGMqiBd32fGpzlGZQoRM6UQwBBTI0YHFFqTS4Go8CoLgswn29EiuUQICB9A=', + password: "nodesdk" + + }); + assert.equal(res.type,"Microsoft.Batch/batchAccounts/certificates"); + }); + + it("certificateOperations cancelDeletion test", async function() { + const res = await client.certificateOperations.cancelDeletion(resourceGroup,accountName,certificateName); + assert.equal(res.name,certificateName); + }); + + it("location checkNameAvailability test", async function() { + const res = await client.location.checkNameAvailability(location,{name: accountName,type: "Microsoft.Batch/batchAccounts"}); + assert.equal(res.reason,"AlreadyExists") + }); + + it("location getQuotas test", async function() { + const res = await client.location.getQuotas(location); + assert.equal(res.accountQuota,3) + }); + + it("location listSupportedCloudServiceSkus test", async function() { + const resArray = new Array(); + for await (let item of client.location.listSupportedCloudServiceSkus(location)){ + resArray.push(item); + } + assert.notEqual(resArray.length,0); + }); + + it("location listSupportedVirtualMachineSkus test", async function() { + const resArray = new Array(); + for await (let item of client.location.listSupportedVirtualMachineSkus(location)){ + resArray.push(item); + } + assert.notEqual(resArray.length,0); + }); + + it("poolOperations create test", async function() { + const res = await client.poolOperations.create(resourceGroup,accountName,poolName,{ + vmSize: "STANDARD_D4", + deploymentConfiguration: { + cloudServiceConfiguration: { + osFamily: "5" + } + }, + scaleSettings: { + fixedScale: { + targetDedicatedNodes: 3 + } + } + }) + assert.equal(res.name,poolName); + }); + + it("poolOperations get test", async function() { + const res = await client.poolOperations.get(resourceGroup,accountName,poolName); + console.log(res); + }); + + it("poolOperations listByBatchAccount test", async function() { + const resArray = new Array(); + for await (let item of client.poolOperations.listByBatchAccount(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,1); + }); + + it("poolOperations update test", async function() { + const res = await client.poolOperations.update(resourceGroup,accountName,poolName,{ + scaleSettings: { + autoScale: { + formula: "$TargetDedicatedNodes=34" + } + } + }); + assert.equal(res.type,"Microsoft.Batch/batchAccounts/pools"); + }); + + it("poolOperations disableAutoScale test", async function() { + const res = await client.poolOperations.disableAutoScale(resourceGroup,accountName,poolName); + assert.equal(res.name,poolName); + }); + + it("poolOperations stopResize test", async function() { + const res = await client.poolOperations.stopResize(resourceGroup,accountName,poolName); + assert.equal(res.name,poolName); + }); + + it("privateEndpointConnectionOperations listByBatchAccount test", async function() { + const resArray = new Array(); + for await (let item of client.privateEndpointConnectionOperations.listByBatchAccount(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,0); + }); + + it("privateLinkResourceOperations listByBatchAccount test", async function() { + const resArray = new Array(); + for await (let item of client.privateLinkResourceOperations.listByBatchAccount(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,0); + }); + + it("poolOperations delete test", async function() { + const res = await client.poolOperations.beginDeleteAndWait(resourceGroup,accountName,poolName,testPollingOptions); + const resArray = new Array(); + for await (let item of client.poolOperations.listByBatchAccount(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,0); + }); + + it("certificateOperations delete test", async function() { + const res = await client.certificateOperations.beginDeleteAndWait(resourceGroup,accountName,certificateName,testPollingOptions); + const resArray = new Array(); + for await (let item of client.certificateOperations.listByBatchAccount(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,0); + }); + + it("applicationOperations delete test", async function() { + const res = await client.applicationOperations.delete(resourceGroup,accountName,applicationName); + const resArray = new Array(); + for await (let item of client.applicationOperations.list(resourceGroup,accountName)){ + resArray.push(item); + } + assert.equal(resArray.length,0); + }); + + it("batchAccountOperations delete test", async function() { + const res = await client.batchAccountOperations.beginDeleteAndWait(resourceGroup,accountName,testPollingOptions); + const resArray = new Array(); + for await (let item of client.batchAccountOperations.list()){ + resArray.push(item); + } + assert.equal(resArray.length,0); + }); +}); diff --git a/sdk/batch/arm-batch/tsconfig.json b/sdk/batch/arm-batch/tsconfig.json index 422b584abd5e..6e3251194117 100644 --- a/sdk/batch/arm-batch/tsconfig.json +++ b/sdk/batch/arm-batch/tsconfig.json @@ -3,7 +3,7 @@ "module": "es6", "moduleResolution": "node", "strict": true, - "target": "es5", + "target": "es6", "sourceMap": true, "declarationMap": true, "esModuleInterop": true, @@ -11,9 +11,9 @@ "forceConsistentCasingInFileNames": true, "lib": ["es6", "dom"], "declaration": true, - "outDir": "./esm", + "outDir": "./dist-esm", "importHelpers": true }, - "include": ["./src/**/*.ts"], + "include": ["./src/**/*.ts", "./test/**/*.ts"], "exclude": ["node_modules"] } diff --git a/sdk/batch/ci.yml b/sdk/batch/ci.yml new file mode 100644 index 000000000000..214d79a9e27f --- /dev/null +++ b/sdk/batch/ci.yml @@ -0,0 +1,29 @@ +# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file. +trigger: + branches: + include: + - main + - release/* + - hotfix/* + paths: + include: + - sdk/batch/ + +pr: + branches: + include: + - main + - release/* + - hotfix/* + paths: + include: + - sdk/batch/ + +extends: + template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml + parameters: + ServiceDirectory: batch + Artifacts: + - name: azure-arm-batch + safeName: azurearmbatch + \ No newline at end of file